Re: Problem with VOBU in files ripped by dvd::rip
Jörn Reder <[email protected]>
| Newsgroups | gmane.comp.video.dvdrip.user |
|---|---|
| Message-ID | <[email protected]> |
Marcin Zaj?czkowski wrote: > I can transcode it to be in a "proper" format (and then it works fine), > but I don't want to lose quality (source and destination formats are VOB > and should be compatible). > Could it be a problem with dvd::rip that ripped files have problem with > VOBU and aren't directly usable by dvdauthor? You can try to demux and mux the VOB files to get a proper MPEG2 program stream which is compatible with dvdauthor. Something like this: % cat *.vob | tcextract -a 1 -x ac3 -t vob > audio.ac3 % cat *.vob | tcextract -x mpeg2 -t vob > video.m2v % mplex -f 8 -o av.mpg video.m2v audio.ac3 You can use FIFO's instead of the video.m2v and audio.ac3 files and start the processes in parallel for better performance. I attached a small (quick and dirty) shell script for this purpose. It grabs all *.vob files in the current working directory and remuxes them into a single .mpg file. Pass filename, audio track number and codec as command line options: % cd /path/to/vob/files % remux-vob /tmp/test.mpg 0 ac3 Hope this helps, Regards, Jörn -- LINUX - Linux Is Not gnU linuX
remux-vob
(application/octet-stream, 729 B) - not displayed
signature.asc
(application/pgp-signature, 189 B)
-----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQBGWLnA2hNi0Chc9HMRA09RAKCRoyCdeoZxK2C+vqPGcMnWz9C/3ACeOGFj iaMNeP1x9QyRldvb2wvZXfc= =iuxV -----END PGP SIGNATURE-----