


Why would you do that? You'd better use x264 with ogg vorbis in a matroska container.Sachankara wrote:For the purists: Use Ogg Theora with Ogg Vorbis in a Ogg container. Thoggen can encode to those two formats.

Because Ogg Theora is a patent free* format, unlike MPEG-4. Also, Ogg containers are simply more elegantly designed than Matroska.yngwin wrote:Why would you do that? You'd better use x264 with ogg vorbis in a matroska container.Sachankara wrote:For the purists: Use Ogg Theora with Ogg Vorbis in a Ogg container. Thoggen can encode to those two formats.
I suggest you try acidrip, which is a very nice frontend to mencoder. It also lets you know when your output file will be of a good quality.nihues wrote:Btw, I find better encode with avidemux because it show the xvid options on a gui (almos same as windows gui) and u can crop&resize more easily, i'm trying to do the same with mencoder but is a little hard and time consuming
Hi, just tryed, but it's not very good too, it's the same as a comand line, u need to know exacly the parameters to pass to the comand line, with avidemux it's a graphical front end, so u don't need to know the comand line parameters. And other thing... It only encode from dvd? can't find a way to encode from a file... many of my encodes are from tv tuner not from dvdppurka wrote:I suggest you try acidrip, which is a very nice frontend to mencoder. It also lets you know when your output file will be of a good quality.nihues wrote:Btw, I find better encode with avidemux because it show the xvid options on a gui (almos same as windows gui) and u can crop&resize more easily, i'm trying to do the same with mencoder but is a little hard and time consuming
Yes, that is true you need to know a little bit about encoding. In fact, there are some default parameters in mencoder documents for very high quality output, moderately high quality output and low quality output. You can simply dump those settings in the field present in acidrip. The html file you need to look into (if you have mplayer docs installed) isnihues wrote:Hi, just tryed, but it's not very good too, it's the same as a comand line, u need to know exacly the parameters to pass to the comand line, with avidemux it's a graphical front end, so u don't need to know the comand line parameters. And other thing... It only encode from dvd? can't find a way to encode from a file... many of my encodes are from tv tuner not from dvd
but thx for the tip


Code: Select all
mplayer dvd:// -dumpstream -dumpfile video.vobCode: Select all
mplayer video.vob -vf cropdetectCode: Select all
mplayer video.vob -vf rectangle=YOUR_CROP_VALUECode: Select all
mencoder -really-quiet -vf YOUR_CROP_VALUE -oac pcm -ovc x264 -x264encopts threads=2:subq=7:frameref=15:me=umh:bframes=2:b_pyramid:weight_b:bitrate=1500:pass=1:turbo=1:threads=2:\
partitions=all:8x8dct:direct_pred=auto -of avi -ofps 24000/1001 video.vob -o /dev/null
mencoder -really-quiet -vf YOUR_CROP_VALUE -oac pcm -ovc x264 -x264encopts threads=2:subq=7:frameref=15:me=umh:bframes=2:b_pyramid:weight_b:bitrate=1500:pass=2:threads=2:\
partitions=all:8x8dct:direct_pred=auto -of avi -ofps 24000/1001 video.vob -o "video.h264"Code: Select all
mplayer -really-quiet video.h264 -ao pcm:waveheader:file=audio.wav -vc dummy -vo null
normalize audio.wav
oggenc --quiet -q 6 audio.wav -o audio.ogg
mkvmerge -q --default-language en -o video.mkv -A video.h264 -D audio.oggCode: Select all
mencoder dvd:// -o video.raw -really-quiet -oac pcm -aid 128 -ovc raw -of avi -vf pp=fd
Thats not working correctly for me. I do it and when it gets done, the movie in the vob file is shorter than the original that was on the disc. Like 20min or so, it varies as I've tried different DVDs.First, dump the video from the dvd into a .vob:Code: Select all
Code: mplayer dvd:// -dumpstream -dumpfile video.vob

For ripping to fail consistently in such an odd way across multiple software implies, to me, that you're running out of disk space. What does df show?Voorhees51 wrote:Thats not working correctly for me. I do it and when it gets done, the movie in the vob file is shorter than the original that was on the disc. Like 20min or so, it varies as I've tried different DVDs.First, dump the video from the dvd into a .vob:Code: Select all
Code: mplayer dvd:// -dumpstream -dumpfile video.vob
vobcopy and dvdbackup do the same thing. the movie in the vob file are shorter than the original off of the disc.
I've tried k3b to rip the video, but it doesn't have x264 as an option for encoding to, and it's not as customizable as far as file size and rates and such.
Any ideas of what to do??

Code: Select all
mplayer dvd:// -dumpstream -dumpfile out.vob
Sorry that it took so long. The scripts are here.Voorhees51 wrote:Do you have a good script for this that you could post?~L~ wrote:I suggest you try mplayer --> make a script --> dump all the dvds to a directory and go do something else.
Yes. I don't like clicking around with a mouse.