![]() |
|
|
|||
|
ProjectX, mplex and svdauthor
I have been sporadically trying to master the conversion of an .m2t file
created by Kaffeine into a form that can be burned by k3b to DVD that in turn can be played on a regular DVD player. However I am not sure the stages that I have executed so far have been handled correctly. My test file is a recording of The Bourne Supremacy, a 2.1GB .m2t file. ProjectX generate: The Bourne Supremacy[1[.mp 57.1 MB The Bourne Supremacy[1[.$mpL$ 2.0 MB The Bourne Supremacy[1].$mpR$ 0 MB The Bourne Supremacy_log.txt 15.4 KB The Bourne Supremacy.m2v 1.8 GB The Bourne Supremacy,mp2 171.2 MB The Bourne Supremacy.$ts$1.pts 225.8 KB The Bourne Supremacy.$ts$3.pts 541.6 KB The Bourne Supremacy.$ts$4 2.9 KB The Bourne Supremacy.$ts$4,pts 0 MB To run the mplex command line, I put the title name in quotes. i.e. #mplex -f8 -o "The Bourne Supremacy.vob" ...... The resultant vob file was only 11.MB in size. Does that sound right? Whether that is right or wrong, I cannot seem to format a dvdauthor command line that does not give an error message, let alone, output files. Any pointers will be mos welcome. |
|
|||
|
Re: ProjectX, mplex and svdauthor
on Thursday 03 July 2008 08:49
in the Usenet newsgroup alt.os.linux.mandriva Alan Secker wrote: > I have been sporadically trying to master the conversion of an .m2t file > created by Kaffeine into a form that can be burned by k3b to DVD that in > turn can be played on a regular DVD player. I've got part of the solution. .m2t files are a "broadcast" format. They are expected to have noise, corruptions and missed frames, but they do have extra information to re-sync things after a problem is detected. .mpeg files are expected to be mathematically correct even if some frames are severely degraded, or even completely black. Kaffeine has an option to default to either format. If you have already got .m2t files that you want to clean manually mencoder can do the job. If you can't be bothered typing all of the options create a shell script. This is what I use; %cat clean #! /bin/bash # to clean errorss... if [ 1 -ne $# ] then echo $0 takes exactly one parameter exit 1 fi if [ "$(file "$1")" != "$1: MPEG transport stream data" ] then echo $0 expects an MPEG transport stream data echo \(.mt2\) file as input exit 1 fi echo cleaning $1 basename $1 .m2t mencoder -forceidx -lavdopts er=4 -vc ffmpeg12 -of mpeg -oac copy -ovc copy "$(basename "$1")" -o "$(basename "$1" .m2t).mpeg" Next you need something to edit out the ads, change the resolution, etc. I'm not so sure about all of that. > However I am not sure the > stages that I have executed so far have been handled correctly. My test > file is a recording of The Bourne Supremacy, a 2.1GB .m2t file. [snip] Depending on where you live you might or might not have problems with copyright there. > The resultant vob file was only 11.MB in size. Does that sound right? [snip] 11 MB for a movie? Not even close. -- sig goes here... Peter D. |
|
|||
|
Re: ProjectX, mplex and svdauthor
Peter D. wrote:
// Thanks Peter. I tried your script as below but that generaed the error message: [root@localhost Videos]# cleanm2t The_Bourne_Supremacy.m2t cleaning The_Bourne_Supremacy.m2t The_Bourne_Supremacy MEncoder 1.0-1.rc2.10plf2008.1-4.2.2 (C) 2000-2007 MPlayer Team CPU: AMD Athlon(tm) 64 Processor 3700+ (Family: 15, Model: 39, Stepping: 1) CPUflags: Type: 15 MMX: 1 MMX2: 1 3DNow: 1 3DNow2: 1 SSE: 1 SSE2: 1 Compiled with runtime CPU detection. Error parsing option on the command line: -ovc Regards Alan |
|
|||
|
Re: ProjectX, mplex and svdauthor
on Sunday 06 July 2008 22:19
in the Usenet newsgroup alt.os.linux.mandriva Alan Secker wrote: > Peter D. wrote: > > // > > Thanks Peter. I tried your script as below but that generaed the > error message: > > [root@localhost Videos]# cleanm2t The_Bourne_Supremacy.m2t > cleaning The_Bourne_Supremacy.m2t > The_Bourne_Supremacy > MEncoder 1.0-1.rc2.10plf2008.1-4.2.2 (C) 2000-2007 MPlayer Team > CPU: AMD Athlon(tm) 64 Processor 3700+ (Family: 15, Model: 39, Stepping: > 1) CPUflags: Type: 15 MMX: 1 MMX2: 1 3DNow: 1 3DNow2: 1 SSE: 1 SSE2: 1 > Compiled with runtime CPU detection. > Error parsing option on the command line: -ovc There is not supposed to be a newline after the "-ovc". Check that "copy" etc. is on the same line as "-ovc". If that does not work try all of this (as one line); mencoder -forceidx -lavdopts er=4 -vc ffmpeg12 -of mpeg -oac copy -ovc copy The_Bourne_Supremacy.m2t -o The_Bourne_Supremacy.mpeg" -- sig goes here... Peter D. |
|
|||
|
Re: ProjectX, mplex and svdauthor
Peter D. wrote:
> on Sunday 06 July 2008 22:19 > in the Usenet newsgroup alt.os.linux.mandriva > Alan Secker wrote: > >> Peter D. wrote: >> >> // >> >> Thanks Peter. I tried your script as below but that generaed the >> error message: >> >> [root@localhost Videos]# cleanm2t The_Bourne_Supremacy.m2t >> cleaning The_Bourne_Supremacy.m2t >> The_Bourne_Supremacy >> MEncoder 1.0-1.rc2.10plf2008.1-4.2.2 (C) 2000-2007 MPlayer Team >> CPU: AMD Athlon(tm) 64 Processor 3700+ (Family: 15, Model: 39, Stepping: >> 1) CPUflags: Type: 15 MMX: 1 MMX2: 1 3DNow: 1 3DNow2: 1 SSE: 1 SSE2: 1 >> Compiled with runtime CPU detection. >> Error parsing option on the command line: -ovc > > There is not supposed to be a newline after the "-ovc". > Check that "copy" etc. is on the same line as "-ovc". > > If that does not work try all of this (as one line); > mencoder -forceidx -lavdopts er=4 -vc ffmpeg12 -of mpeg -oac copy > -ovc copy The_Bourne_Supremacy.m2t -o The_Bourne_Supremacy.mpeg" > > Thanks Peter. It certainly generates an mpeg file but I am just as far away as ever. I can now generate .mpeg files and .vob files but I cannot seem to get from eithe of those to something the k3b will burn. I've fiddled with qdvdauthor but cannot get it to do what I want. The real problem is that I don't know what I am doing. It's a black art to me. Regards, Alan |
|
|||
|
Re: ProjectX, mplex and svdauthor
on Tuesday 08 July 2008 07:27
in the Usenet newsgroup alt.os.linux.mandriva Alan Secker wrote: [snip] > Thanks Peter. It certainly generates an mpeg file but I am just as far > away as ever. No, you are one small step towards your target. Unfortunately I'm not an expert. I'm not certain about what comes next, so when you work it out post a HOWTO here. I think that the next step is to edit out the ads. > I can now generate .mpeg files and .vob files but I cannot > seem to get from eithe of those to something the k3b will burn. I've > fiddled with qdvdauthor but cannot get it to do what I want. The real > problem is that I don't know what I am doing. It's a black art to me. > > Regards, Alan -- sig goes here... Peter D. |
![]() |
|
| Thread Tools | Search this Thread |
| Display Modes | |
|
|