Ok, I'm trying to convert a 1080p mkv to 720p. I've already demuxed the video from .mkv into a m2ts video file with tsmuxer.
I then created an avisynth script file to load into MeGUI that allows me to add borders and resize to 1280x720 (original file was 1920x816 and i have to add borders in order to make my final output file blu-ray compliant).
Here's my script, it has worked for resizing other 1080p's I have:
DirectShowSource("C:\input.m2ts",fps=25,audio=fals e)
#deinterlace
Lanczos4Resize(1280,544).addborders(0,88,0,88)
Keep in mind that I'm changing the frame rate after I have the 720p encoded (from 25fps to 23.976 to be blu-ray compliant).
Now, when I load this script, MeGUI just hangs and doesn't do anything. I've tried the using m2ts, and even loading the original mkv file, but neither file works. I even tried making a raw .264 file, which also does not work. Is my source file screwed or am I missing something here?
+ Reply to Thread
Results 1 to 7 of 7
-
-
Will media player play/open your m2ts file via .avs script?
" Who needs Google, my wife knows everything" -
"The eyes are the first thing that you have to destroy ... because they have seen too many bad things" - Lucio Fulci
EXPLORE THE FILMS OF LUCIO FULCI - THE MAESTRO OF GORE
-
Before you declare your source officially screwed, there's a few things you can try at least.
Try muxing your video stream into an MP4 container using MP4Box. I have never had a problem with MeGUI accepting MP4. If your audio is AC3 you can always remux it in the end (or re-encode if necessary separately).
How are you changing your framerate? Maybe that's what's annoying MeGUI. To change the framerate easily in your script, and even without throwing the audio out of sync, you can try:
ChangeFPS(23.976)
Another thing you can try is go to:
Options->Settings->Program Paths and check that everything is linked accordingly. Sometimes a small change you may have made throws it off and it hangs. Happened to me.
Or maybe you're having a decoder issue with ffdshow, Haali, CoreAVC, or whatever you're using. This may need a change of settings or a re-install.
PS: When you do get it working, I hope you're using the blu-ray profiles in MeGUI otherwise there's a chance your streams will not work in BD players even with the correct rez and fps. Just making sure.I hate VHS. I always did. -
Originally Posted by tsantsa
Try by changing your .m2ts extension to .mpg see if that works.....
I had an .m2ts file in an.avs script that MPC wouldn't play,changed extension and it worked ..you never know try it....
I've also created a VOB with MKV2VOB and used that as my DirectShowSource and it worked..I know it's an extra step but whatever works right?" Who needs Google, my wife knows everything"
Similar Threads
-
Megui - Undersized XVID file
By skaleton in forum Video ConversionReplies: 8Last Post: 21st Aug 2010, 12:09 -
Ripbot 1.14.6 is generating errors when loading a m2ts file
By playitagain_sam in forum Blu-ray RippingReplies: 0Last Post: 29th Dec 2009, 09:59 -
MeGUI: Problem calculating AVI file size
By fakecake in forum Newbie / General discussionsReplies: 9Last Post: 1st Feb 2009, 08:11 -
Major problem loading audio from AVI file into Auto Gordian Knot v 2.45
By robo5050 in forum Newbie / General discussionsReplies: 1Last Post: 7th Nov 2008, 06:12 -
how to determine file size in megui
By scorpio1959 in forum Blu-ray RippingReplies: 2Last Post: 30th May 2008, 08:39