How to convert MP4's with the new AMVapp 3.0 beta
-
- Joined: Tue Dec 25, 2007 8:26 am
- Status: better than you
- Contact:
Re: How to convert MP4's with the new AMVapp 3.0 beta
Can you post your FULL avisynth script already? You're complaining about FFMS2 not working yet your screenshot clearly says DirectShitSource().
- Daniel_BMS
- Joined: Fri Nov 26, 2004 1:10 am
Re: How to convert MP4's with the new AMVapp 3.0 beta
Code: Select all
audiodub(ffvideosource("G:\ddrsbm_mybaby.mp4"),directshowsource("G:\ddrsbm_mybaby.mp4"))
- Qyot27
- Surreptitious fluffy bunny
- Joined: Fri Aug 30, 2002 12:08 pm
- Status: Creepin' between the bullfrogs
- Location: St. Pete, FL
- Contact:
Re: How to convert MP4's with the new AMVapp 3.0 beta
It's not working because DirectShowSource is still in there. As the name implies, DSS uses DirectShow to decode the files. If you don't have Haali's Media Splitter and a usable H.264 decoder (such as ffdshow, CoreAVC, or DivX 7) installed, you're SOL for using DirectShowSource, and it will error out every single time. That has nothing to do with FFMS2 working, though.
My profile on MyAnimeList | Quasistatic Regret: yeah, yeah, I finally got a blog
-
- Joined: Tue Dec 25, 2007 8:26 am
- Status: better than you
- Contact:
Re: How to convert MP4's with the new AMVapp 3.0 beta
We've been continually telling him to use FFMS2 though. Also, ffdshow isn't a decoder, libavcodec is what does it for ffdshow by default.
- Qyot27
- Surreptitious fluffy bunny
- Joined: Fri Aug 30, 2002 12:08 pm
- Status: Creepin' between the bullfrogs
- Location: St. Pete, FL
- Contact:
Re: How to convert MP4's with the new AMVapp 3.0 beta
I know libavcodec is the decoder (and true of ffdshow, FFmpegSource, VLC, and mplayer, and practically anything else that gets built against ffmpeg), but they're going to recognize 'ffdshow', whether they know that's incorrect or not.
My point was that the reason the script isn't working is because he isn't removing the DSS invocation, so even if FFMS2 is working fine, DSS is fucking it up. One wrong move in the script and the entire thing burns, but he's blaming it on the wrong part. The only two solutions are either A) take out the non-working bit, or B) make it stop throwing errors by installing the correct splitting and decoding filters.
My point was that the reason the script isn't working is because he isn't removing the DSS invocation, so even if FFMS2 is working fine, DSS is fucking it up. One wrong move in the script and the entire thing burns, but he's blaming it on the wrong part. The only two solutions are either A) take out the non-working bit, or B) make it stop throwing errors by installing the correct splitting and decoding filters.
My profile on MyAnimeList | Quasistatic Regret: yeah, yeah, I finally got a blog
- Daniel_BMS
- Joined: Fri Nov 26, 2004 1:10 am
Re: How to convert MP4's with the new AMVapp 3.0 beta
OK then how should my script look then? I made a few guesses, but all I got was an access violation error message.
- mirkosp
- The Absolute Mudman
- Joined: Mon Apr 24, 2006 6:24 am
- Status: (」・ワ・)」(⊃・ワ・)⊃
- Location: Gallarate (VA), Italy
- Contact:
Re: How to convert MP4's with the new AMVapp 3.0 beta
Code: Select all
audiodub(ffvideosource("G:\ddrsbm_mybaby.mp4"),ffaudiosource("G:\ddrsbm_mybaby.mp4"))
Code: Select all
ffvideosource("G:\ddrsbm_mybaby.mp4")
-
- Joined: Tue Dec 25, 2007 8:26 am
- Status: better than you
- Contact:
Re: How to convert MP4's with the new AMVapp 3.0 beta
Audio in avisynth gives you cancer and sometimes aids.
- Daniel_BMS
- Joined: Fri Nov 26, 2004 1:10 am
Re: How to convert MP4's with the new AMVapp 3.0 beta
Finally got a chance to try it. ffvideosource with ffaudiosource didn't work, but just ffvideosource works OK. Looks like I will stick with DVD Copy 6 for now. Thanks mirkosp though. I have saved the code for future reference.