Quantcast Bug Reporting on Hcmatic - Page 3 - digitalFAQ.com Forums [Archives]
  #41  
03-07-2007, 07:45 AM
rainer rainer is offline
Free Member
 
Join Date: Dec 2005
Posts: 45
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by incredible
I just want to see if that version solves the avisynth "invoke environment" problem.
No. Same error appears and it also messes up the aspect ratio (or don't know if that new version requires some extra parameters in the script to make it right).


Dialhot:

Not really a bug but a little improvement to HCmatic. When sample .avs is created, there should be one extra line break added before "multi = ((Framecount....."-line. One of my scripts ended like this:

Code:
function fmin( int f1, int f2) {
  return ( f1<f2 ) ? f1 : f2
}
 
#
####
and sample script like this:

Code:
function fmin( int f1, int f2) {
  return ( f1<f2 ) ? f1 : f2
}
 
#
####multi = ((Framecount / Framerate) < 3600) ? 2 : 1
length= 18*multi
minute= Int(Framecount/(Framerate*60))
each= Int(Framecount/minute)
each= ((Framecount - each*minute) >= length) ? each : each -1
SelectRangeEvery(each,length)
and naturally that won't work because avisynth won't read lines starting with a #

took a while for me to find out where the problem was
Reply With Quote
Someday, 12:01 PM
admin's Avatar
Site Staff / Ad Manager
 
Join Date: Dec 2002
Posts: 42
Thanks: ∞
Thanked 42 Times in 42 Posts
  #42  
03-07-2007, 08:22 AM
Dialhot Dialhot is offline
Free Member
 
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by rainer
took a while for me to find out where the problem was
I see
I think that you found by yourself that simply adding a line break at the end of your own script can be used as workarround .
Reply With Quote
  #43  
03-13-2007, 09:25 AM
rainer rainer is offline
Free Member
 
Join Date: Dec 2005
Posts: 45
Thanks: 0
Thanked 0 Times in 0 Posts
Is it possible to add a Q-value field in which you could manually enter exact value where to start predicting?
Reply With Quote
  #44  
03-13-2007, 09:37 AM
Dialhot Dialhot is offline
Free Member
 
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
This won't be difficult to implement.

Meanwhile, let me tell you that the first Q tested is the middle between MinQ and MaxQ. And if you need a MaxQ smaller than 6, you can just close HCMatic, edit the Hcmatic.conf file, then reopen HCMatic. MaxQ will have the value you set into the conf .

I saw also a bug : MinQ and MaxQ are never tested, and this is not normal. I will fix that too.
Reply With Quote
  #45  
03-28-2007, 04:37 PM
Dialhot Dialhot is offline
Free Member
 
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
Download link temporary removed

I just discovered that audio size is completly wrong and thus video size, and of course bitrate to reach

I'll try to fix that ASAP.
Reply With Quote
  #46  
03-31-2007, 08:02 AM
rds_correia rds_correia is offline
Free Member
 
Join Date: Apr 2003
Location: Chinese Democracy starts now!
Posts: 2,563
Thanks: 1
Thanked 0 Times in 0 Posts
Now that I was going to give HCMatic a run for its money??
Great to know that you found the "sucker".
Hope you fix it in time for my next project that I was going to work on this WE .
Cheers Phil

PS: I still just don't know how you've managed to get the audio wrong since it's the easiest part...
Care to share with us what went wrong?
__________________
Rui
Reply With Quote
  #47  
03-31-2007, 08:47 AM
Dialhot Dialhot is offline
Free Member
 
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by rds_correia
PS: I still just don't know how you've managed to get the audio wrong since it's the easiest part...
Care to share with us what went wrong?
I took the code from Calcumatic and... the error is there .

I don't know wy but in calcumatic 1.1.14, thre one I had all is okay, but in 1.1.16, the version corresponding to the sources from Karl, there is a strange conversion between Kbits and KBytes :

8 Kbits = 1/1.024 KBytes insteed of 8 Kbits = 1 KBytes.

I dont know what decided Karl to introduce this 1.024 there.
Reply With Quote
  #48  
03-31-2007, 10:06 AM
Dialhot Dialhot is offline
Free Member
 
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
Nevertheless, I don't understand anymore

I encode a stream that is 31min01s long = 1861 seconds. I encode at 128 Kbit/s

For me 128 Kb = 16 KB ( = 128/8 )
So the total encode should be 16*1861 = 29776 KB.

That is what I found too with Calcumatic 1.1.14 and HCMatic 1.3 (not delivered yet). But, I did the encode, and it is 29093 KB long. This is what Calcumatic 1.1.16 finds too (and what I put in HCMatic 1.2).

29093 is more or less 29776 / 1.024.

That means that my 1024 Kbit/s ADSL bandwith that I always considered as 128 KB/s is really 125 KB/s ?

Edit: confirmed with a 10hours long project. The formula with the 1.024 is the correct one. So HCMatic 1.2 was correct.
Reply With Quote
  #49  
04-03-2007, 11:26 AM
rainer rainer is offline
Free Member
 
Join Date: Dec 2005
Posts: 45
Thanks: 0
Thanked 0 Times in 0 Posts
HCmatic is sometimes trying to be a little too accurate.

Reply With Quote
  #50  
04-03-2007, 03:39 PM
Dialhot Dialhot is offline
Free Member
 
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
Lol. Before to test a value, noone can tell that the result will be exactly the same than a value already tested .
Actually HCMatic 1.0 would have tested 3.64 too but I optimized that in 1.2 .
Reply With Quote
  #51  
04-04-2007, 04:59 PM
rds_correia rds_correia is offline
Free Member
 
Join Date: Apr 2003
Location: Chinese Democracy starts now!
Posts: 2,563
Thanks: 1
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by Dialhot
Nevertheless, I don't understand anymore

I encode a stream that is 31min01s long = 1861 seconds. I encode at 128 Kbit/s

For me 128 Kb = 16 KB ( = 128/8 )
So the total encode should be 16*1861 = 29776 KB.

That is what I found too with Calcumatic 1.1.14 and HCMatic 1.3 (not delivered yet). But, I did the encode, and it is 29093 KB long. This is what Calcumatic 1.1.16 finds too (and what I put in HCMatic 1.2).

29093 is more or less 29776 / 1.024.

That means that my 1024 Kbit/s ADSL bandwith that I always considered as 128 KB/s is really 125 KB/s ?

Edit: confirmed with a 10hours long project. The formula with the 1.024 is the correct one. So HCMatic 1.2 was correct.
Actually Karl's 1.024 theory is right.
We all discussed this in depth back in the days when CQM and CalcuM where being developed.
Yes HCMatic 1.2 is correct and yes, your 1Mb internet connection is thr same as 128KB connection.
Don't ask me why but it is .
Cheers
__________________
Rui
Reply With Quote
  #52  
05-04-2007, 02:04 PM
digitall.doc digitall.doc is offline
Free Member
 
Join Date: Jul 2003
Location: Valencia (España)
Posts: 741
Thanks: 0
Thanked 0 Times in 0 Posts
Great Phil!.

Thanx for this nice tool. I.m sorry I didn't have time earlier to test your predictor. I was still making use of the old-fine-working way with Andrej's ping-pong.

I was going to "ask" for the exact prediction tool, but already saw that was in your never todo list Just kidding!.

As there's no (at least, I didn't see any) "wish list", I'll post here a couple of suggestions ()
1. My first encodes are a bit above destination size. I miss some way to tweak your tool to, for instance, ask for better accuracy. Some way I thought of:
- we could adjust sample size (1%, 2%, 5%...)
- when prediction is close to goal (i.e.<0.02), it could then use a bigger sample size. That is: uses a 1% sample, and when prediction is close to goal, changes to 5% sample (this is what I used to do with ping-pong) for better accuracy.

2. It could be added some blanks else, in order to put more than 8 .avs files in a KDVD.

I would like to be more helpful than just making suggestions. I guess it's not nice to develop a tool and read posts stating "I would like it also did...". This is not my intention.

Congratulations.
Reply With Quote
  #53  
05-05-2007, 03:50 AM
Dialhot Dialhot is offline
Free Member
 
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by digitall.doc
1. My first encodes are a bit above destination size.
Actually, a lot of mine are too. This is mainly due to end credits that use a lot of bitrate, and unfortunaely are not enought represented in the sample during the prediction. The best solution would be to cut them off the movie to encode (what I do ).

Quote:
- we could adjust sample size (1%, 2%, 5%...)
I already thought about that. Did not do yet because I find the prediction time quite long and did not wanted to increase it more.

Quote:
- when prediction is close to goal (i.e.<0.02), it could then use a bigger sample size. That is: uses a 1% sample, and when prediction is close to goal, changes to 5% sample (this is what I used to do with ping-pong) for better accuracy.
Not really usable in my method. I must be sure that the next Q found is in the range [minQ, maxQ], with minQ and maxQ the smaller and biggest values found in previous steps. If I change the sample, I take the risk the obtained Q to be out of that range, and the prediction will end there.
But I will give a try to see.

Quote:
2. It could be added some blanks else, in order to put more than 8 .avs files in a KDVD.
This is not possible because of Purebasic. There is no dynamic structure so I had to use a static array, that I dimensionned to 8.

Quote:
I would like to be more helpful than just making suggestions. I guess it's not nice to develop a tool and read posts stating "I would like it also did...". This is not my intention.
No problem. Actually, in the end, I will always developp things that I need too
Reply With Quote
  #54  
05-26-2007, 06:26 AM
rainer rainer is offline
Free Member
 
Join Date: Dec 2005
Posts: 45
Thanks: 0
Thanked 0 Times in 0 Posts
How about "Stop prediction and use current Q" button?
Reply With Quote
  #55  
05-26-2007, 10:32 AM
Dialhot Dialhot is offline
Free Member
 
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by rainer
How about "Stop prediction and use current Q" button?
Didn't planed about that, but it should be possible to introduce it. Probably next release so.
Reply With Quote
  #56  
09-04-2007, 07:35 AM
DKruskie DKruskie is offline
Free Member
 
Join Date: May 2003
Location: Michigan
Posts: 147
Thanks: 0
Thanked 0 Times in 0 Posts
Any update to this? been quite awhile since 1.3
Reply With Quote
  #57  
09-04-2007, 09:18 AM
Dialhot Dialhot is offline
Free Member
 
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
Good remark . I'm using a "1.4" since a while but your message make me thinks tha I never released it . Now I have to remember what are the diff with 1.3

Let me a couple of days.
Reply With Quote
  #58  
09-07-2007, 11:19 PM
DKruskie DKruskie is offline
Free Member
 
Join Date: May 2003
Location: Michigan
Posts: 147
Thanks: 0
Thanked 0 Times in 0 Posts
no problem, cant wait to test it out

Thanks Phil testing it out right now
Reply With Quote
  #59  
11-09-2007, 02:45 PM
gamma gamma is offline
Free Member
 
Join Date: Nov 2003
Location: Rotterdam (The Netherlands)
Posts: 237
Thanks: 0
Thanked 0 Times in 0 Posts
hi phil,

a minor issue, when in a script you're using assumefps, the new running time of the movie isn't correctly displayed, and thus messes up the bitrates.
Reply With Quote
  #60  
11-09-2007, 03:42 PM
Dialhot Dialhot is offline
Free Member
 
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by gamma
a minor issue, when in a script you're using assumefps, the new running time of the movie isn't correctly displayed, and thus messes up the bitrates.
If that is true, unfortunately there is nothing I can do : I'm using a purebasic internal call that returns the frame number and the time length. I guess one of the two are incorrect, because of the assume fps. But I will check.

Can you give me the fps of the source and the assumed fps ? Did you correctly set the fps value in HCMatic ?
Reply With Quote
Reply




Similar Threads
Thread Thread Starter Forum Replies Last Post
HCMatic: What is it showing me? blackhawk Avisynth Scripting 1 01-31-2007 04:09 AM
HCMatic how to... ? Dialhot Avisynth Scripting 12 01-28-2007 11:05 AM
HCMatic: Shutdown after encode rainer Avisynth Scripting 4 01-18-2007 02:42 AM
running HCMatic on Linux danpos Avisynth Scripting 2 01-17-2007 01:52 PM
Moviestacker 2.00 reporting movie length incorrectly? VORTECH Video Encoding and Conversion 9 04-08-2004 08:01 AM

Thread Tools



 
All times are GMT -5. The time now is 09:12 AM  —  vBulletin © Jelsoft Enterprises Ltd