Anyway the ffmpeg command line to do the conversion is this:
- Code: Select all
"C:\Program Files (x86)\PS3 Media Server\win32\ffmpeg.exe" -copyts -i "video.wtv" -vcodec copy -acodec copy -f vob - > d:\temp\test.mpg 2> err.txt
For DVRMS, you guys are doing this.
- Code: Select all
C:\Program Files (x86)\PS3 Media Server\win32\dvrms\ffmpeg_MPGMUX.exe -i video -title dummy -f vob -copyts -vcodec copy -acodec copy -threads 2 -g 1 -qscale 1 -qmin 2 pipe:
Questions:
- Why are you using a special version of ffmpeg for this? I think the normal version of ffmpeg supports dvrms.
- Does "pipe:" do the same thing as "-" or is there a difference?
So, a couple of things that seem odd to me:
- I'm not sure "title" does anything for vob because PES doesn't support metadata.
- qscale, qmin don't make sense on a passthrough, or do they?
- I'm not sure threads make sense on a passthrough.
Anyway, I'll play with converting it over to use the standard version of ffmpeg. Just want to know if there are any gotchas. Thanks!
