View Full Version : RipBot264 v1.18.3 - Simple and easy to use GUI -> IPOD . PSP . CONSOLES . BLURAY
Atak_Snajpera
19th December 2007, 15:25
download dump.ax file (use google) to c:\windows\system32
Register it
regsvr32 c:\windows\system32\dump.ax
use
h264tsto "D:\DVD\Elephants_Dream_HD.avi" -demux -audioonly
survivant001
19th December 2007, 15:37
download dump.ax file (use google) to c:\windows\system32
Register it
regsvr32 c:\windows\system32\dump.ax
use
h264tsto "D:\DVD\Elephants_Dream_HD.avi" -demux -audioonly
that will just extract the audio right ? what is the difference between that and mkvextract ?
and I found that I can't use dump.ax on XP 64 bit :(
after you get the .ac3. you reencore it how ? (to get 23.976 fps )
Atak_Snajpera
19th December 2007, 15:56
My method is simpler because it's done in one step.
and I found that I can use dump.ax on XP 64 bit
http://ms-os.com/showthread.php?t=2234
after you get the .ac3. you reencore it how ? (to get 23.976 fps )
I add two lines to audio script:
AssumeSampleRate(47952)
SSRC(48000)
first value is calculated in this way:
New_FPS / Original_FPS * Original_Audio_Sample_Rate
Second line is necessary to restore original frequency
survivant001
19th December 2007, 16:07
http://ms-os.com/showthread.php?t=2234
I saw this post.. didn't help .. I still can do it with mkvextract..
so what is your audio.avs script if you are in my case.. no dump.ax
what do you use to import the audio .ac3 in the audio.avs ?
Atak_Snajpera
19th December 2007, 16:10
did you check this?
c:\windows\sysWOW64\regsvr32 c:\windows\system32\dump.ax
survivant001
19th December 2007, 17:52
yep I try that too. LoadLibrary(....) failed.
Atak_Snajpera
19th December 2007, 18:55
Try above method but place dump.ax on c:\ and make sure you are using administrator's account.
survivant001
19th December 2007, 23:01
Try above method but place dump.ax on c:\ and make sure you are using administrator's account.
register successfuly in c:\
thanks
Atak_Snajpera
19th December 2007, 23:47
Excellent! But For safety I recommend to copy dump.ax to windows directory and repeat procedure.
survivant001
20th December 2007, 01:17
@Atak_Snajpera
thansk for your help.
I found this script to convert movie using x264 and compatible with Encore CS3. (you need the build x264_669i_pulldown) I don't know if there is a more recent build than that.
@REM >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
@REM >> first pass
@REM >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
x264.exe --keyint 14 --min-keyint 1 --vbv-maxrate 28000 --vbv-init 1.0 --vbv-bufsize 14745 --mvrange 511 --level 4.1 --nal-hrd --bframe 2 --bime --weightb --ref 1 --mixed-refs --direct auto --deblock -1:-1 --bitrate 7000 --pass 1 --stats "x264_stat.log" --qcomp 0.75 --ipratio 1.10 --pbratio 1.10 --partitions "all" --8x8dct --me "hex" --subme 5 --aud --sar 1:1 --deadzone-intra 6 --deadzone-inter 6 --progress -o movie.264 movie.avs
@REM >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
@REM >> second pass
@REM >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
x264.exe --keyint 14 --min-keyint 1 --vbv-maxrate 28000 --vbv-init 1.0 --vbv-bufsize 14745 --mvrange 511 --level 4.1 --nal-hrd --bframe 2 --b-rdo --bime --weightb --ref 3 --mixed-refs --direct auto --deblock -1:-1 --bitrate 7000 --pass 3 --stats "x264_stat.log" --qcomp 0.75 --ipratio 1.10 --pbratio 1.10 --partitions "all" --8x8dct --me "hex" --subme 6 --no-fast-pskip --no-dct-decimate --trellis 1 --aud --sar 1:1 --deadzone-intra 6 --deadzone-inter 6 --progress -o movie.264 movie.avs
That is for the video. Oh ya, in the movie.avs I was using that
DirectShowSource("D:\DVD\Elephants_Dream_HD.avi",fps=23.9999808000154,audio=false)
ConvertFPS(23.976)
I used that for .avi and .mkv..
for the audio I was using foobar + besweet + belight. I found this script too from avi2ac3
"C:\Program Files (x86)\avi to ac3\wavi.exe" "D:\DVD\test\Elephants_Dream_HD.avi_avitoac3.avs" "D:\DVD\test\Elephants_Dream_HD.avioriginal.wav"
"C:\Program Files (x86)\avi to ac3\ssrc.exe" --rate 48000 --normalize --twopass --dither 0 "D:\DVD\test\Elephants_Dream_HD.avioriginal.wav" "D:\DVD\test\Elephants_Dream_HD.avi48k.wav"
"C:\Program Files (x86)\avi to ac3\aften.exe" "D:\DVD\test\Elephants_Dream_HD.avi48k.wav" -acmod 7 -readtoeof 1 -b 448 "D:\DVD\test\avitoac3_test.ac3"
in audio.avs I was using this line
DirectShowSource("D:\DVD\Elephants_Dream_HD.avi",fps=23.9999808000154,audio=true)
I try the avs script too. : TimeStretch(tempo = (1/(100*24/23.976))).ssrc(48000)
with all theses tests (and the one I forgot) I was able to get a movie in Encore cs3 24fps -> 23.fps.
It play perfeclty on the PS3.. sync and support fastforward :)
so now it will be a test mkv 30fps -> m2ts 23.976 fps. (hope the sound will be sync)
any suggestion was is the best way to do it (video + sound) in command line ?
Atak_Snajpera
20th December 2007, 01:42
Ok. Finally I understand what you do :) AVI , MKV ... -> M2TS playable in PS3. My question is why do you use Encore instead of TSRemux???
survivant001
20th December 2007, 03:06
The reason is simple :) Encore will generate a valid Bluray structure, so if I had a bluray burner, I could simply burn it, and it will play everywhere. I use tsremux too. I'll explain.
I use Encore to generate a bluray strucutre. After that I take the movies 0000.mt2s .. and copy it in a blank structure generated by tsemux. Like that I obtain a valid AVCHD, that is reconize by the player of the PS3 (without the XBM).
Most of the movies that I have are in HD, but in the profile 5.1, and hinfo264 is a hack.. not always work.. in my case most of the time.. so I have to reencore the movie anyway.
I use avsp to choose which filter I choose apply in the movie.avs to get the best picture quality. And if I have to reencore it.. why not reencoding it in a format that I'll be sure that I will works anywhere.
and using Encore, I'm able to ff and rw in the movie. I had a solution to get 5.1 + h264 into a vob.. but the ff and rw doesn't always work.
It look like a bug problem for nothing, but when I'll get a script runnable by command line.. it will be so stupid to convert movies.. just run the batch file.. Open Encore and reload the movie.264 + audio.ac3.. press GENERATE.. and that's it.. I only keep the 0000.m2ts..
survivant001
20th December 2007, 03:19
I'm trying to convert a new movie. 29.97 fps -> 23.976.
I choose the input movie, choose .mkv output, choose ac3 5.1, and choose 23.976.
when I open the audio.avs, it look fine
DirectShowSource("D:\DVD\mkv\the.victorias.secret.fashion.show.2007.720p.hdtv.x264-ctu.mkv",video=false)
AssumeSampleRate(38400)
SSRC(48000)
DelayAudio(0)
Normalize(1)
but in the job1.avs, there isn't convertFPS(23.976)
#MT
#Source
video=DirectShowSource("D:\DVD\mkv\the.victorias.secret.fashion.show.2007.720p.hdtv.x264-ctu.mkv",fps=29.97,framecount=76369,audio=false)
video=ConvertToYV12(video)
#Deinterlace
#Decimate
....
there is normal ?
another bug (I think) in the job1_EncodeAudio.cmd the audio file name is : audio.aac ( I think the name is just harcoded, but it should be ac3)
"D:\DVD\tools\RipBot264v1.7.1\tools\bepipe\bepipe.exe" --script "import(^C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\RipBot264temp\job1\job1_audio.avs^)" | "D:\DVD\tools\RipBot264v1.7.1\Tools\aften\aften.exe" -b 448 - "C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\RipBot264temp\audio.aac"
MKVCrazy
20th December 2007, 04:09
Atak,
Will it be possible to add the priority feature thing that megui has? (Low, Medium, High, etc)
Cuz Im running a Core2Duo (64bits) 2.18Ghz and it takes the whole CPU speed and I can't do anything else smoothly :\
Im on Vista btw but I kinda like it though LOL.
Just a wish ;) Cuz megui doesn't lag my PC when I set it to Low.
MKVCrazy.
Atak_Snajpera
20th December 2007, 12:05
but in the job1.avs, there isn't convertFPS(23.976)
That value is added in muxer not in the script because FPS in GUI controls speed of the movie.
This method is better if you do conversion from 24 -> 23.976 or 30 -> 29.97 and so on. Numbers of frames will be always the same. Conversion from 29.97 to 23.976 is always a bad idea. My method will give you smooth playback and perfect sync but people in movie will talk to slow (to big difference in speed). Your method (ConvertFPS) will remove unnecessary frames but playback won't be smooth. ConvertFPS should be only used if source was 47.952.
Since when AVCHD is restricted to 23.976 ? Camcorders recording in AVCHD (Canon HG10) use 29.976i/23.976p or 25i/25p
Regarding to "audio.aac"
Mkvmerge does not care about extension but unfortunately MP4Box does. That's why aac was chosen. However I will change that in next version.
@MKVCrazy
The whole situation is quite funny. People are complaining in Xvid forum about lack of full multi-threading but here you are complaining about using to much power of your multi core systems :)
v.1.8.0 will always use low priority instead of normal.
survivant001
20th December 2007, 14:50
This method is better if you do conversion from 24 -> 23.976 or 30 -> 29.97 and so on. Numbers of frames will be always the same. Conversion from 29.97 to 23.976 is always a bad idea. My method will give you smooth playback and perfect sync but people in movie will talk to slow (to big difference in speed). Your method (ConvertFPS) will remove unnecessary frames but playback won't be smooth. ConvertFPS should be only used if source was 47.952.
OK, I think I'll stick with the current fps and check if my ps3 like that.
Since when AVCHD is restricted to 23.976 ? Camcorders recording in AVCHD (Canon HG10) use 29.976i/23.976p or 25i/25p
I didn't talk about the restriction.. is just what I known about the ps3 ands avchd and I only talk about NTSC, and I know, it's 23p ou 30i.. I prefer "p" so that's why I only had the choice of 23.976p.
PSPNut
21st December 2007, 16:23
Will it be possible to add the priority feature thing that megui has? (Low, Medium, High, etc)
You can quite easily to it right now with the start command in Windows. For example, to set the priority of RipBot to low, instead of starting it with:
C:\Program Files\Ripbot>RipBot264.exe
use the following:
C:\Program Files\Ripbot>start /low RipBot264.exe
To find out what other priorities are possible, do:
c:\>start/?
Have fun. Personally, I will not recommend Low as this priority in start is equivalent to idle, i.e. RipBot has the same priority as the "idle" thread, meaning that at most your CPU will be 50% utilized (this is on Windows XP, may be different on Vista). I find that a good balance of foreground and background performance to be belownormal.
survivant001
22nd December 2007, 15:30
@Atak_Snajpera I finally try a new clip. 29.997 fps -> 23.376
I obtain a movie 2 sec longer than the audio, and Encore CS3 it unable to authorise it :(
I think, I'll try mkv2vob.. see if I can get 29.997 fps playable with 5.1 sound
survivant001
22nd December 2007, 17:38
Here the graph for my mkv.
mkv -> Matroska splitter -> audio -> AC3Filter, video -> MainConcept AVC.
can I change the fps into a .grp ?
Atak_Snajpera
22nd December 2007, 18:32
@Atak_Snajpera I finally try a new clip. 29.997 fps -> 23.376
I obtain a movie 2 sec longer than the audio, and Encore CS3 it unable to authorise it
What did you do exactly ??? Did you select Copy stream?
survivant001
22nd December 2007, 21:55
I encore the video using x264 with AssumeFPS
and encode the audio using ripbot.
I use my command line for the video, because the build that I have is Encore complaint. (669i pulldown)
weaver4
27th December 2007, 15:32
I was doing some testing on tools for encoding to my Ipod and I found that RipBot files were much larger than some of the other tools. Here are the parameters that I used for testing.
Video: X264, Q24, 320x240
Audio: AAC 128kbp CBR
Now I did three videos and here are the sizes:
Video 1:
-> RipBox264: 768M
-> AutoMKV: 508M
-> XviD4PSP: 466M
Video 2:
-> RipBot264: 391M
-> XviD4PSP: 238M
Video 3:
-> RipBot264 404M
-> XviD4PSP 245M
Video on all three look good. One thing I did notice is that the videos made by the other tools were really 320x136 (16:9) and yours was 320x240 with large black bands on the top and bottom. The picture size itself was the same.
Why are the filesizes so much larger with your tool? As you probably know filesizes are very important on the Ipod Flash players.
Thanks
survivant001
28th December 2007, 00:43
I have a problem with ripbot264 v1.7.1 when encoding 1 anime
I have problem with Bleach 154. I have no problem with the 152,153.. they all play perfectly on the ps3.. but the 154 : Corrupted data or invalid data..
I'm using all the same settings as the previous encoding. 4.1 PS3, CQ 20, AAC 128, mp4
Atak_Snajpera
28th December 2007, 02:19
What is your source? (VOB , Avi ..)
Does it play on PC?
Close RipBot and try again
survivant001
28th December 2007, 02:31
been able to encode 152,153 but not 151,154
it's .avi
I closed ribot each time. yes it play perfectly on the pc.
i'll send you the source link by PM.
I'm using WMP11 for the streaming.
here the graph (is the same for all the eps encoded.mp4) (.xml)
<GRAPH version="1.0">
<FILTER ID="Default_DirectSound_Device" clsid="{79376820-07D0-11CF-A24D-0020AFD79767}">
<PARAM name="data" value="30003000300030003000300030003000300030003000200000000000000000000000000000000000"/>
</FILTER>
<FILTER ID="Video_Renderer" clsid="{B87BEB7B-8D29-423F-AE4D-6582C10175AC}">
<PARAM name="data" value="3000300030003000300030003000300030003000300020008801000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"/>
</FILTER>
<FILTER ID="ffdshow_Audio_Decoder" clsid="{0F40E1E5-4F79-4988-B1A9-CC98794E6B55}">
</FILTER>
<FILTER ID="CoreAVC_Video_Decoder" clsid="{09571A4B-F1FE-4C60-9760-DE6D310C7C31}">
</FILTER>
<FILTER ID="MainConcept_MP4_Demultiplexer" clsid="{9880DD26-C0AE-40D2-A1A1-8A22718297C4}">
<PARAM name="data" value="93A20343D4A30740BD8CDD0E090E971B03000000030000001A2555366BA81040A3E8DE3C87C4FC4A0300010000000100000089BF66CF2310144689783AC0E6379671030000000000010000005B56507BD509D948BE744457EC4CEEF103000000000001000000"/>
</FILTER>
<FILTER ID="MP4_Source_0" clsid="{E436EBB5-524F-11CE-9F53-0020AF0BA770}">
<PARAM name="src" value="D:\DVD\Bleach_153_ripbot.mp4"/>
</FILTER>
<connect direct="yes" src="MP4_Source_0" srcpin="Output" dest="MainConcept_MP4_Demultiplexer" destpin="Input"/>
<connect direct="yes" src="MainConcept_MP4_Demultiplexer" srcpin="Video Output 0" dest="CoreAVC_Video_Decoder" destpin="In"/>
<connect direct="yes" src="MainConcept_MP4_Demultiplexer" srcpin="Audio Output 0" dest="ffdshow_Audio_Decoder" destpin="In"/>
<connect direct="yes" src="ffdshow_Audio_Decoder" srcpin="Out" dest="Default_DirectSound_Device" destpin="Audio Input pin (rendered)"/>
<connect direct="yes" src="CoreAVC_Video_Decoder" srcpin="Out" dest="Video_Renderer" destpin="VMR Input0"/>
</GRAPH>
here the graph for the .avi
<GRAPH version="1.0">
<FILTER ID="Default_DirectSound_Device" clsid="{79376820-07D0-11CF-A24D-0020AFD79767}">
<PARAM name="data" value="30003000300030003000300030003000300030003000200000000000000000000000000000000000"/>
</FILTER>
<FILTER ID="Video_Renderer" clsid="{B87BEB7B-8D29-423F-AE4D-6582C10175AC}">
<PARAM name="data" value="3000300030003000300030003000300030003000300020008801000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"/>
</FILTER>
<FILTER ID="ffdshow_Audio_Decoder" clsid="{0F40E1E5-4F79-4988-B1A9-CC98794E6B55}">
</FILTER>
<FILTER ID="ffdshow_Video_Decoder" clsid="{04FE9017-F873-410E-871E-AB91661A4EF7}">
</FILTER>
<FILTER ID="Avi_Splitter" clsid="{9736D831-9D6C-4E72-B6E7-560EF9181001}">
</FILTER>
<FILTER ID="AVI_Source_0" clsid="{E436EBB5-524F-11CE-9F53-0020AF0BA770}">
<PARAM name="src" value="D:\DVD\anime\Bleach_153.avi"/>
</FILTER>
<connect direct="yes" src="AVI_Source_0" srcpin="Output" dest="Avi_Splitter" destpin="Input"/>
<connect direct="yes" src="Avi_Splitter" srcpin="Video 0" dest="ffdshow_Video_Decoder" destpin="In"/>
<connect direct="yes" src="Avi_Splitter" srcpin="final 1" dest="ffdshow_Audio_Decoder" destpin="In"/>
<connect direct="yes" src="ffdshow_Audio_Decoder" srcpin="Out" dest="Default_DirectSound_Device" destpin="Audio Input pin (rendered)"/>
<connect direct="yes" src="ffdshow_Video_Decoder" srcpin="Out" dest="Video_Renderer" destpin="VMR Input0"/>
</GRAPH>
Atak_Snajpera
29th December 2007, 00:51
154 episode is working fine on my friend's PS3 v2.10. I used exactly the same settings.
survivant001
29th December 2007, 00:59
you use tversity or wmp11 ?
I stopped using tversity because it start to stutlering ? (like freeze few ms each 5 sec... )
Oups.. I forgot.. I could use a usb key..
the mp4 works with the usb key.
I just reinstall tvservity.. and the same problem.. freeze each few sec.. lot of people have the same problem on the tversity forum.. but the bug is not reconized :(
thanks for your time.
don't know why wmp11 have problem with some mp4 and not the others..
Atak_Snajpera
29th December 2007, 01:13
Que? No I put it on DVD/Memory Stick.
survivant001
29th December 2007, 01:45
Yep, it works on USB key.. but not in streaming.. I need to find why.
by the way, it is possible to add the command line functionnality ? or add a watch folder in the program. It will be easier to convert my weekly anime in one batch. (always using the same settings anyway)
I'll try the latest version of tversity (11.3c) and check if the streaming problem is still there :(
weaver4
29th December 2007, 15:24
I was doing some testing on tools for encoding to my Ipod and I found that RipBot files were much larger than some of the other tools. Here are the parameters that I used for testing.
Video: X264, Q24, 320x240
Audio: AAC 128kbp CBR
Now I did three videos and here are the sizes:
Video 1:
-> RipBox264: 768M
-> AutoMKV: 508M
-> XviD4PSP: 466M
Video 2:
-> RipBot264: 391M
-> XviD4PSP: 238M
Video 3:
-> RipBot264 404M
-> XviD4PSP 245M
Video on all three look good. One thing I did notice is that the videos made by the other tools were really 320x136 (16:9) and yours was 320x240 with large black bands on the top and bottom. The picture size itself was the same.
Why are the filesizes so much larger with your tool? As you probably know filesizes are very important on the Ipod Flash players.
Thanks
Any comment on my size issue? I did some encodes with crf=26 using StaxRip and these also came out smaller, almost as small as the XviD4PSP files.
buzzqw
29th December 2007, 17:07
size can tell nothing..
post the aviaptic analysis (with drf) of all files
it's the only way to be sure of what settings are used
BHH
Atak_Snajpera
29th December 2007, 21:53
All profiles use AQ ( 0.5 and 5) AQ raises bitrate in dark and blue areas to prevent blocking therefore size is bigger in CQ mode.
weaver4
30th December 2007, 18:51
All profiles use AQ ( 0.5 and 5) AQ raises bitrate in dark and blue areas to prevent blocking therefore size is bigger in CQ mode.
Is that a good trade-off when you are trying to get movies onto a 4 or 8 gig flash? 30% larger files seem a little much.
deets
30th December 2007, 19:09
Is that a good trade-off when you are trying to get movies onto a 4 or 8 gig flash? 30% larger files seem a little much.
you can turn it off if you wish, click the ... button next to the profile selection and then untick it.
or if file size is such an issue, lock the size to a set number
weaver4
30th December 2007, 19:39
OK here is the avinaptic results. Now it is really confusing the ripbot file is 35% larger but there is very little differance between the DFR for them both.
One thing I did notice is that RipBot has 258K frames and StaxRip has 207K. Does RipBot not do IVTC to get the framerate back to it's original 24fps?
Here is the output for the RipBot264 file.
[ About file ]
Name: t.zrbq24.mp4
Date: 20/12/2007 19:30:18
Size: 768,735,663 bytes (733.123 MB)
[ Generic info ]
Play duration: 02:23:27 (8607.081666 s)
Container type: Apple QuickTime movie (fast start)
Creation time: 20/12/2007 00:28:17 UTC
Modification time: 20/12/2007 00:28:17 UTC
Number of streams: 2
Type of stream nr. 1: video (avc1) {GPAC ISO Video Handler}
Type of stream nr. 2: audio (AAC Low complexity) {GPAC ISO Audio Handler}
Audio streams: 1
[ Relevant data ]
Resolution: 320 x 240
Width: multiple of 32
Height: multiple of 16
Average DRF: 26.409555
Standard deviation: 2.811214
Std. dev. weighted mean: 2.798355
[ Video track ]
Codec: avc1
Resolution: 320 x 240
Frame aspect ratio: 4:3 = 1.333333
Pixel aspect ratio: 1:1 = 1
Display aspect ratio: 4:3 = 1.333333
Framerate: 29.970029 fps
Number of frames: 257953
Bitrate: 583.421737 kbps
[ Audio track ]
Codec: AAC Low complexity
Bitrate: 128.447000 kbps
Channels: 2
Sample rate: 48000 Hz
[ About H.264 encoding ]
User data: x264
User data: core 57 svn-699C
User data: H.264/MPEG-4 AVC codec
User data: Copyleft 2005
User data: http://www.videolan.org/x264.html
User data: cabac=0
User data: ref=1
User data: deblock=1:0:0
User data: analyse=0x1:0x110
User data: me=umh
User data: fpel_cmp=sad
User data: subme=6
User data: me-prepass=0
User data: brdo=0
User data: mixed_ref=0
User data: me_range=16
User data: chroma_me=1
User data: trellis=0
User data: 8x8dct=0
User data: cqm=0
User data: deadzone=21,11
User data: chroma_qp_offset=0
User data: threads=3
User data: nr=0
User data: decimate=1
User data: mbaff=0
User data: bframes=0
User data: keyint=250
User data: keyint_min=25
User data: scenecut=40(pre)
User data: rc=crf
User data: crf=24.0
User data: rceq='blurCplx^(1-qComp)'
User data: qcomp=0.60
User data: qpmin=10
User data: qpmax=51
User data: qpstep=4
User data: ip_ratio=1.40
User data: aq=1:0.5:5.0
SPS id: 0
Profile: Baseline@L1.3
Num ref frames: 1
PPS id: 0
Entropy coding type: CAVLC
Weighted prediction: No
Number of frames: 257953
Drop/delay frames: 0
Corrupted frames: 0
P-slices: 255342 ( 98.988 %) #########################
B-slices: 0 ( 0.000 %)
I-slices: 2611 ( 1.012 %)
SP-slices: 0 ( 0.000 %)
SI-slices: 0 ( 0.000 %)
[ DRF analysis ]
Average DRF: 26.409555
Standard deviation: 2.811214
Max DRF: 34
DRF<10: 0 ( 0.000 %)
DRF=10: 974 ( 0.378 %)
DRF=11: 461 ( 0.179 %)
DRF=12: 393 ( 0.152 %)
DRF=13: 217 ( 0.084 %)
DRF=14: 223 ( 0.086 %)
DRF=15: 123 ( 0.048 %)
DRF=16: 134 ( 0.052 %)
DRF=17: 193 ( 0.075 %)
DRF=18: 283 ( 0.110 %)
DRF=19: 541 ( 0.210 %)
DRF=20: 1375 ( 0.533 %)
DRF=21: 3427 ( 1.329 %)
DRF=22: 7420 ( 2.876 %) #
DRF=23: 13568 ( 5.260 %) #
DRF=24: 22296 ( 8.643 %) ##
DRF=25: 31794 ( 12.326 %) ###
DRF=26: 41656 ( 16.149 %) ####
DRF=27: 40005 ( 15.509 %) ####
DRF=28: 36249 ( 14.053 %) ####
DRF=29: 28717 ( 11.133 %) ###
DRF=30: 18244 ( 7.073 %) ##
DRF=31: 7929 ( 3.074 %) #
DRF=32: 1613 ( 0.625 %)
DRF=33: 117 ( 0.045 %)
DRF=34: 1 ( 0.000 %)
DRF>34: 0 ( 0.000 %)
P-slices average DRF: 26.436528
P-slices std. deviation: 2.801528
P-slices max DRF: 34
I-slices average DRF: 23.771734
I-slices std. deviation: 2.488114
I-slices max DRF: 31
This report was created by AVInaptic (16-09-2007) on 30 dic 2007, h 13:18:24
And here is the staxrip info.
[ About file ]
Name: t.zsxqu24.mp4
Date: 30/12/2007 02:34:06
Size: 511,431,543 bytes (487.739 MB)
[ Generic info ]
Play duration: 02:23:27 (8607.103333 s)
Container type: MP4/MOV
Major brand: ISO Base Media version 1
Compatible brands: JVT AVC
Creation time: 29/12/2007 07:32:46 UTC
Modification time: 29/12/2007 07:32:46 UTC
Number of streams: 2
Type of stream nr. 1: video (avc1) {Video}
Type of stream nr. 2: audio (AAC Low complexity) {English}
Audio streams: 1
[ Relevant data ]
Resolution: 320 x 128
Width: multiple of 32
Height: multiple of 32
Average DRF: 27.387421
Standard deviation: 2.328916
Std. dev. weighted mean: 2.311547
[ Video track ]
Codec: avc1
Resolution: 320 x 128
Frame aspect ratio: 5:2 = 2.5
Pixel aspect ratio: 1:1 = 1
Display aspect ratio: 5:2 = 2.5
Framerate: 23.976023 fps
Number of frames: 206362
Bitrate: 292.767155 kbps
[ Audio track ]
Codec: AAC Low complexity
Bitrate: 179.969452 kbps
Channels: 2
Sample rate: 48000 Hz
[ About H.264 encoding ]
User data: x264
User data: core 54 svn-654
User data: H.264/MPEG-4 AVC codec
User data: Copyleft 2005
User data: http://www.videolan.org/x264.html
User data: cabac=0
User data: ref=1
User data: deblock=1:0:0
User data: analyse=0x1:0x110
User data: me=umh
User data: subme=6
User data: brdo=0
User data: mixed_ref=0
User data: me_range=16
User data: chroma_me=1
User data: trellis=0
User data: 8x8dct=0
User data: cqm=0
User data: deadzone=21,11
User data: chroma_qp_offset=0
User data: threads=3
User data: nr=0
User data: decimate=1
User data: mbaff=0
User data: bframes=0
User data: keyint=250
User data: keyint_min=25
User data: scenecut=40(pre)
User data: rc=crf
User data: crf=24.0
User data: rceq='blurCplx^(1-qComp)'
User data: qcomp=0.60
User data: qpmin=22
User data: qpmax=51
User data: qpstep=4
User data: ip_ratio=1.40
SPS id: 0
Profile: Baseline@L1.3
Num ref frames: 1
PPS id: 0
Entropy coding type: CAVLC
Weighted prediction: No
Number of frames: 206362
Drop/delay frames: 0
Corrupted frames: 0
P-slices: 203616 ( 98.669 %) #########################
B-slices: 0 ( 0.000 %)
I-slices: 2746 ( 1.331 %)
SP-slices: 0 ( 0.000 %)
SI-slices: 0 ( 0.000 %)
[ DRF analysis ]
Average DRF: 27.387421
Standard deviation: 2.328916
Max DRF: 35
DRF<22: 0 ( 0.000 %)
DRF=22: 6447 ( 3.124 %) #
DRF=23: 5045 ( 2.445 %) #
DRF=24: 11057 ( 5.358 %) #
DRF=25: 19219 ( 9.313 %) ##
DRF=26: 28982 ( 14.044 %) ####
DRF=27: 34832 ( 16.879 %) ####
DRF=28: 34237 ( 16.591 %) ####
DRF=29: 27903 ( 13.521 %) ###
DRF=30: 20155 ( 9.767 %) ##
DRF=31: 11536 ( 5.590 %) #
DRF=32: 5540 ( 2.685 %) #
DRF=33: 1262 ( 0.612 %)
DRF=34: 145 ( 0.070 %)
DRF=35: 2 ( 0.001 %)
DRF>35: 0 ( 0.000 %)
P-slices average DRF: 27.420124
P-slices std. deviation: 2.315728
P-slices max DRF: 35
I-slices average DRF: 24.962490
I-slices std. deviation: 2.001559
I-slices max DRF: 32
This report was created by AVInaptic (16-09-2007) on 30 dic 2007, h 13:16:34
Atak_Snajpera
30th December 2007, 22:36
Is that a good trade-off when you are trying to get movies onto a 4 or 8 gig flash? 30% larger files seem a little much.
Why don't you use lower CRF value?
Does RipBot not do IVTC to get the framerate back to it's original 24fps?
Amigo! There is special option called decimate (Properties->advanced). Use it to remove repeated frames.
Alfeuss
31st December 2007, 00:05
Don't forget if you don't want the black borders select the resize you want than select custom. This will remove the video padding from the end result.
weaver4
31st December 2007, 02:15
I tried TDecimate and now the file is only 24% larger.
DarkNite
31st December 2007, 05:08
320x128 vs. 320x240 is the larger difference here. That's almost doubling your vertical resolution just for padding. More pixels encoded means more bits used, even if it's only a black border. That's just the way it works.
Atak_Snajpera
31st December 2007, 07:54
Black borders are very easy to compress. If you don't believe me try to zip/rar bmp file with solid color.
survivant001
1st January 2008, 14:46
@Atak_Snajpera
this is a bug in 1.7.1 I think
I open a mkv.
I choose profile 4.1, no audio, mkv as ouput, CQ 20. DONE .. START.
1 sec later it's DONE.. and ripbot didn't nothing.
Even id I choose AUDIO.
Atak_Snajpera
1st January 2008, 17:48
Try with 1.7.0
survivant001
1st January 2008, 19:55
same thing. I had time to see : 1 pass, muxing, all jobs finish.. in 2 sec.
here what I found
C:\Documents and Settings\Administrator\Local Settings\Temp\RipBot264temp\job1>"
D:\DVD-tools\tools\ripbot264\tools\x264\x264.exe" "C:\DOCUME~1\ADMINI~1\LOCALS~1
\Temp\RipBot264temp\job1\job1.avs" --crf 20 --level 4.1 --sar 1:1 --filter 0,0
--aq-strength 0.5 --aq-sensitivity 5 --ref 3 --mixed-refs --bframes 3 --b-
pyramid --b-rdo --bime --weightb --direct auto --subme 6 --trellis 1 --analy
se p8x8,b8x8,i4x4,i8x8 --8x8dct --me umh --threads auto --thread-input --progre
ss --no-psnr --no-ssim --output "C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\RipBot264tem
p\video.264"
avis [error]: unsupported input format (DIB )
x264 [error]: could not open input file 'C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\RipB
ot264temp\job1\job1.avs'
C:\Documents and Settings\Administrator\Local Settings\Temp\RipBot264temp\job1>
job1.avs
video=DirectShowSource("movie.mkv",fps=23.976,framecount=109920,audio=false)
video=ConvertToYV12(video)
HERE a working movie.avs (from AutoMKV)
#test2
movie = directshowsource("movie.mkv",fps=23.976044,convertfps=true,audio=false)
movie = isRGB(movie) ? ConvertToYV12(movie,interlaced=true) : movie
movie = isYUY2(movie) ? ConvertToYV12(movie,interlaced=true) : movie
function getOrder(clip c) {
order = GetParity(c) ? 1 : 0
Return order }
#filter1start
#test3
#resizestart
#test4
last = movie
#filter2start
#test5
return last
--PlayStation3--
2nd January 2008, 01:05
What does CQ stand for? Constant Quality? Is that like 1-pass?
Also, is .avi supported? I have a 720p .avi movie which I tried to convert to play on my 360/PS3, but it didn't work. The 360 didn't play it at all, and the PS3(v2.10) listed the video and audio codec but didn't play it; stuck on a black screen. On the PC it had video, but no audio.
Could I first convert to .mkv, and then to .mp4, would that make it work on the 360/PS3?
This is what VLC gives me about the .avi file:
http://i1.tinypic.com/6ok8evq.png
Thanks.
Atak_Snajpera
2nd January 2008, 11:00
What does CQ stand for? Constant Quality? Is that like 1-pass?
Yes. Exactly.
I know what happened. DTS audio was detected as 5 channels instead of 6. It happens sometimes when AC3/DTS is in avi container. Your problem should be solved if you demux audio using VirtualDubMod and then import to ripbot. Another way is to install AC3Filter.
DJ_Price
2nd January 2008, 16:47
I really like RipBot264, but I have one problem with it. When I set an encode with the mkv extension, nothing is ouputted. I thought it was a bug with the whole program & tried an encode with mp4 extension & my file was ouputted. Anyone have any idea's of what the problem could be with mkv?
--PlayStation3--
2nd January 2008, 17:27
I really like RipBot264, but I have one problem with it. When I set an encode with the mkv extension, nothing is ouputted. I thought it was a bug with the whole program & tried an encode with mp4 extension & my file was ouputted. Anyone have any idea's of what the problem could be with mkv?
If you mean that it doesn't ouput a file while converting, that's because it doesn't, it only creates the file at the end. At least that's how it is on my computer.
DJ_Price
2nd January 2008, 18:03
I mean at the end of the ecoding using the mkv extension there is no file at all, but if I select the mp4 extension there is a file at the end. Just don't know why mkv doesn't work.
--PlayStation3--
2nd January 2008, 18:07
I mean at the end of the ecoding using the mkv extension there is no file at all, but if I select the mp4 extension there is a file at the end. Just don't know why mkv doesn't work.
Oh, that's wierd. I've converted multiple .mkv files already and they all had an output file. Did you check the default save location; C:/?
--PlayStation3--
2nd January 2008, 18:09
Yes. Exactly.
I know what happened. DTS audio was detected as 5 channels instead of 6. It happens sometimes when AC3/DTS is in avi container. Your problem should be solved if you demux audio using VirtualDubMod and then import to ripbot. Another way is to install AC3Filter.
I think I have AC3Filter installed, is there some kind of setting I need to change.
vBulletin® v3.8.11, Copyright ©2000-2026, vBulletin Solutions Inc.