VOB audio problems (sometimes)
Forum rules
Please make sure you follow the Problem Reporting Guidelines before posting if you want a reply
Please make sure you follow the Problem Reporting Guidelines before posting if you want a reply
Re: VOB audio problems (sometimes)
Try removing
The problem is you can't "remove" any of the default settings, so you have to turn off "Use application defaults" and then copy the rest into "Custom parameters":
Is the "n" in "ncontainer" supposed to be there? It seems strange. Furthermore, I found this in the MEncoder documentation:
It would be nice if you tested if it works with only one of the added lines. Another thing is that I'm guessing that this setting is creating problems for PAL playback?
Code: Select all
container == iso :: -nosync
Code: Select all
(container == avi || container == matroska) && vcodec == mpeg4 && acodec == mp3 :: -mc 0.1
container == flv :: -mc 0.1
container == mov :: -mc 0.1
container == rm :: -mc 0.1
container == mp4 && vcodec == h264 :: -mc 0.1
container == vob :: -ofps 23.976 -noass
ncontainer == iso :: -ofps 23.976 -noass
Code: Select all
-ofps 23.976 is incorrect. -ofps 24000/1001 should be used instead.
Re: VOB audio problems (sometimes)
I will give it a try and report back here
Thanks again
Thanks again
Re: VOB audio problems (sometimes)
You're right, with this setting PAL gives problems...
These settings; PAL vob; audio good and in sync
These settings; NTSC vob; audio good and in sync
I can live with that, I just have to alter the settings for the right movie.
Thanks a lot for your help!
These settings; PAL vob; audio good and in sync
Code: Select all
container == iso :: -nosync
(container == avi || container == matroska) && vcodec == mpeg4 && acodec == mp3 :: -mc 0.1
container == flv :: -mc 0.1
container == mov :: -mc 0.1
container == rm :: -mc 0.1
container == mp4 && vcodec == h264 :: -mc 0.1
container == vob :: -ofps 24000/1001 -noass
container == iso :: -ofps 24000/1001 -noass
Code: Select all
(container == avi || container == matroska) && vcodec == mpeg4 && acodec == mp3 :: -mc 0.1
container == flv :: -mc 0.1
container == mov :: -mc 0.1
container == rm :: -mc 0.1
container == mp4 && vcodec == h264 :: -mc 0.1
container == vob :: -ofps 24000/1001 -noass
container == iso :: -ofps 24000/1001 -noass
Thanks a lot for your help!
Re: VOB audio problems (sometimes)
That's strange, 24001/1001 is wrong for PAL. Are you sure those are needed for PAL?
Re: VOB audio problems (sometimes)
i'm not sure, but i've tested it with 1 PAL VOB, and it was working...