Virtual Dub Mod.

This forum is for questions and discussion of all the aspects of handling and cleaning up your footage with Avisynth.
Locked
User avatar
iGREASE
Joined: Fri Jul 11, 2008 4:04 am
Location: Vegas.
Org Profile

Virtual Dub Mod.

Post by iGREASE » Sun Oct 26, 2008 5:26 pm

Hi again. x.x
So I'm basically still trying to get this stuff to import correctly into V Dub.


Here are some pics of my scripts.
Image
Image


And when I finally extracted it with MKVExtract GUI with just the Video (No Audio or Subs).


It came out like this:
[Exiled-Destiny]_Le_Portrait_De_Petite_Cossette_Ep01v2_(1CEFB681) - Copy_Track1.h264


So after that I changed it to .mp4 and tried to open it up in Virtual Dub and got:
Image


So after that I then attempted to do the same thing with the scripts and got this:
Image

Is there anything I am missing or what?
I have been trying to get this crap straight for about a month.
Oh and before you say, "Lol, go buy the DvD" I don't have any money atm.

User avatar
Zarxrax
Joined: Sun Apr 01, 2001 6:37 pm
Contact:
Org Profile

Post by Zarxrax » Sun Oct 26, 2008 8:19 pm

The problem looks like you are trying to open an avs file through the avs script... instead of trying to open the actual video file.

User avatar
iGREASE
Joined: Fri Jul 11, 2008 4:04 am
Location: Vegas.
Org Profile

Post by iGREASE » Sun Oct 26, 2008 9:23 pm

Oh, I didn't notice that but still...

I opened the ".mp4" the same way and it crashed V Dub.

User avatar
Kariudo
Twilight prince
Joined: Fri Jul 15, 2005 11:08 pm
Status: 1924 bots banned and counting!
Location: Los taquitos unidos
Contact:
Org Profile

Post by Kariudo » Sun Oct 26, 2008 9:54 pm

why are you using avisource to open a .mp4?
looks like you have ffmpegsource(), try that instead
Image
Image

User avatar
iGREASE
Joined: Fri Jul 11, 2008 4:04 am
Location: Vegas.
Org Profile

Post by iGREASE » Sun Oct 26, 2008 10:35 pm

When I do.

Code: Select all

FFMpegSource("C:\Anime Test\[Exiled-Destiny]_Le_Portrait_De_Petite_Cossette_Ep01v2_(1CEFB681) - Copy_Track1")
It still closes V Dub

User avatar
Shui
Shuitcake
Joined: Sun Jul 02, 2006 6:27 am
Org Profile

Post by Shui » Mon Oct 27, 2008 1:27 am

Don't forget to type the whole Name of the file :

Code: Select all

FFMpegSource("C:\Anime Test\[Exiled-Destiny]_Le_Portrait_De_Petite_Cossette_Ep01v2_(1CEFB681) - Copy_Track1.mp4")
I had problems with some Hybrid sources aswell... try it with a different file to check if the problem is in the Source or in Vdub.

User avatar
Scintilla
(for EXTREME)
Joined: Mon Mar 31, 2003 8:47 pm
Status: Quo
Location: New Jersey
Contact:
Org Profile

Post by Scintilla » Mon Oct 27, 2008 5:42 am

Just checking, you don't have WarpSharp.dll in your AVISynth plugins directory, do you? If you do, you'll have to move it.
ImageImage
:pizza: :pizza: Image :pizza: :pizza:

User avatar
iGREASE
Joined: Fri Jul 11, 2008 4:04 am
Location: Vegas.
Org Profile

Post by iGREASE » Mon Oct 27, 2008 4:03 pm

Scintilla wrote:Just checking, you don't have WarpSharp.dll in your AVISynth plugins directory, do you? If you do, you'll have to move it.
Ok, I moved it to my Anime Test folder and it still didn't work.
Shui wrote:Don't forget to type the whole Name of the file :

Code: Select all

FFMpegSource("C:\Anime Test\[Exiled-Destiny]_Le_Portrait_De_Petite_Cossette_Ep01v2_(1CEFB681) - Copy_Track1.mp4")
I had problems with some Hybrid sources aswell... try it with a different file to check if the problem is in the Source or in Vdub.
I have tried it with different names as well.
Still hasn't worked.

User avatar
Qyot27
Surreptitious fluffy bunny
Joined: Fri Aug 30, 2002 12:08 pm
Status: Creepin' between the bullfrogs
Location: St. Pete, FL
Contact:
Org Profile

Post by Qyot27 » Tue Oct 28, 2008 10:11 am

Quick Tip #1:
Don't use VirtualDub to check whether the script even works - because if VDub fails, it doesn't necessarily mean the script doesn't work. Test the script in mplayer2.exe or Media Player Classic. If it works there, then the problems with VDub can be assessed.

Quick Tip #2:
It could be, and I'm just suggesting this off the top of my head as I don't use Vista, that maybe it's finally time to stop using VirtualDubMod 1.5.10.1 and use either 1.5.10.2 or 1.5.10.3 (which was released a couple weeks ago) instead. Or, the newest version of VirtualDub proper instead of Mod.


To look at those pictures, however, let's sort this out:
  • AVISource does what it says - open AVI files. If it isn't an AVI, chances are it won't open with AVISource.
  • FFmpegSource can be put in AviSynth's plugins folder - at which point the LoadPlugin line isn't needed.
  • Renaming .h264 to .mp4 will not work the same way as attempting to open the original, real .mp4 file directly. There is zero reason to extract the .h264 stream from the container anyway (unless of course you're dealing with HD sources from Blu-ray or HD-DVD, in which case you'd need to be using DGAVCDecode, and from what I know that opens MPEG-2 TS streams so there's still no reason to extract the video stream). The only foreseeable reason to extract the .h264 stream is if someone issued out the big no-no and used H264 in AVI including B-frames and whatnot - then I can see doing it.
  • AviSynth supports relative pathnames - as long as the file needing to be opened is in the same directory with the script. This is not only easier to work with, but it also cuts down on the issue of a problem with or misspelling in the file path.
  • To open a file with any of AviSynth's source filters, the entire filename needs to be entered, exactly as it is. Make sure that Windows is set to display the file extensions, and either do the right click, Rename, and when the name is highlighted, right click, Copy jig and then Paste said filename into your script, or use a shell extension like Ninotech Path Copy to just copy the filename from the initial right click menu.

User avatar
iGREASE
Joined: Fri Jul 11, 2008 4:04 am
Location: Vegas.
Org Profile

Post by iGREASE » Tue Oct 28, 2008 9:31 pm

I figured out what I had to do.

I just needed to use ALLToAVI and it worked perfectly.

Thanks for the help though guys!

Locked

Return to “AviSynth Help”