VOB audio problems (sometimes)

For help and support with Universal Media Server
Forum rules
Please make sure you follow the Problem Reporting Guidelines before posting if you want a reply
Nadahar
Posts: 1990
Joined: Tue Jun 09, 2015 5:57 pm

Re: VOB audio problems (sometimes)

Post by Nadahar »

Try removing

Code: Select all

container == iso :: -nosync
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":

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
Is the "n" in "ncontainer" supposed to be there? It seems strange. Furthermore, I found this in the MEncoder documentation:

Code: Select all

-ofps 23.976 is incorrect. -ofps 24000/1001 should be used instead. 
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?
depaus
Posts: 9
Joined: Thu Jan 14, 2016 9:21 am

Re: VOB audio problems (sometimes)

Post by depaus »

I will give it a try and report back here

Thanks again
depaus
Posts: 9
Joined: Thu Jan 14, 2016 9:21 am

Re: VOB audio problems (sometimes)

Post by depaus »

You're right, with this setting PAL gives problems...

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
These settings; NTSC vob; audio good and in sync

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
I can live with that, I just have to alter the settings for the right movie.
Thanks a lot for your help!
Nadahar
Posts: 1990
Joined: Tue Jun 09, 2015 5:57 pm

Re: VOB audio problems (sometimes)

Post by Nadahar »

That's strange, 24001/1001 is wrong for PAL. Are you sure those are needed for PAL?
depaus
Posts: 9
Joined: Thu Jan 14, 2016 9:21 am

Re: VOB audio problems (sometimes)

Post by depaus »

i'm not sure, but i've tested it with 1 PAL VOB, and it was working...
Post Reply