Log in

View Full Version : evodemux problem


crimsonronin
13th May 2008, 11:42
So this has happened 2 out of 3 hd dvds I have tried to backup.

When I tried to demux Batman Begins and Under Siege HD DVDs using evodemux the resulting mpv was the correct length but when viewed in VirtualDub using an avs script it was the first half of the movie then the first half of the movie again up until the total length of the movie. (essentially just doubled the first half of the movie back to back).

I have been able to back up Next (the movie) with no dramas of this kind.

I have tried to rebuild the evo's into one with only the video stream selected and i have also tried to demux the evo's separately with no luck.

i'm using evo demux 0.628 and AnyDVD 6.2.0.2 to copy to the HD.

My avisynth script is:
DirectShowSource("F:\HD\under siege\under_siege.mpv",fps=23.976,audio=false,framecount=147519)
ConvertToYV12 ()


What am I doing wrong?

n0mag!c
13th May 2008, 13:00
Try to use any container (mkv, evo, (m2)ts) but not raw video stream. It surely helps you.

crimsonronin
13th May 2008, 13:13
yeah i've even tried encoding the raw video stream to x264 using the mkv container and muxing the audio encoded in ac3 but with the same result.

the audio length is fine and i can hear the end of the movie but the video is still wrong at the end.

the raw video stream should show the entire movie using that avs script. it worked for "Next" but not the other movies.

Next had a raw H.264 stream
Batman and Under Siege had VC-1 streams.

could this be the problem. I'm just not sure what im missing here.

n0mag!c
13th May 2008, 13:58
the raw video stream should show the entire movie using that avs script.
I guess it should not.
"Try to use any container (mkv, evo, (m2)ts) but not raw video stream."
i.e. use this script:
DirectShowSource("F:\HD\under siege\under_siege.EVO",fps=23.976,audio=false,framecount=147519)
If this is not working too, try to connect direct show filters manually, using GraphEdt:
http://exar.ch/suprip/hddvd-guide/video2.png
and use this script:
DirectShowSource("F:\HD\under siege\under_siege.GRF",fps=23.976,audio=false,framecount=147519)
origin (http://forum.doom9.org/showthread.php?p=1035422#post1035422)

crimsonronin
13th May 2008, 14:09
thanks i'll give this a whirl now.

n0mag!c
13th May 2008, 14:33
Next had a raw H.264 stream. Batman and Under Siege had VC-1 streams.
Yes, it's VC-1 video specific. Other video streams works as raw when calling "directshowsource" from AviSynth script.

crimsonronin
13th May 2008, 14:44
awesome thanks n0mag!c

works fine now.

imanub! :D