WMV to Avi convert. quick pls
-
- Joined: Fri Dec 12, 2003 9:33 am
- Location: The Netherlands
- Contact:
WMV to Avi convert. quick pls
Excuse me everyone,
I have a urgent question to ask you people. I am searching for a good converting program that is 100% reliable, does only converts 50% of the video and leaves no logo or testscript behind.
I want, no NEED to convert a WMV file to AVI so I can use it in VirtualDub. Furthermore I do not like to get results that take my whole diskspace in.
The wmvfile is just a 15.000kb file and does not need to get a huge 10GB.
I hope you people can help me out quickly, because I am in a rush actually.
I have a urgent question to ask you people. I am searching for a good converting program that is 100% reliable, does only converts 50% of the video and leaves no logo or testscript behind.
I want, no NEED to convert a WMV file to AVI so I can use it in VirtualDub. Furthermore I do not like to get results that take my whole diskspace in.
The wmvfile is just a 15.000kb file and does not need to get a huge 10GB.
I hope you people can help me out quickly, because I am in a rush actually.
- CrackTheSky
- has trust issues
- Joined: Sun Aug 27, 2006 11:01 pm
- Status: Maybe editing?
- Location: Chicago
Write an AviSynth script like this:
That should open it in VirtualDubMod and you can convert it in there.[/code]
Code: Select all
DirectShowSource("whatever.wmv")
-
- Joined: Fri Dec 12, 2003 9:33 am
- Location: The Netherlands
- Contact:
Just that?CrackTheSky wrote:Write an AviSynth script like this:
That should open it in VirtualDubMod and you can convert it in there.[/code]Code: Select all
DirectShowSource("whatever.wmv")
And then upload into filters?
-
- Joined: Fri Dec 12, 2003 9:33 am
- Location: The Netherlands
- Contact:
Where's my head, ofcourse it cannot go into filters. Sorry for that XDReen@ wrote:Just that?CrackTheSky wrote:Write an AviSynth script like this:
That should open it in VirtualDubMod and you can convert it in there.[/code]Code: Select all
DirectShowSource("whatever.wmv")
And then upload into filters?
How do I get AVS files into VirtualDub?
-
- Joined: Fri Dec 12, 2003 9:33 am
- Location: The Netherlands
- Contact:
- Kariudo
- Twilight prince
- Joined: Fri Jul 15, 2005 11:08 pm
- Status: 1924 bots banned and counting!
- Location: Los taquitos unidos
- Contact:
-
- Joined: Fri Dec 12, 2003 9:33 am
- Location: The Netherlands
- Contact:
I kind of get this error when loading the file, then Vdub creates an defealt.avs.
Did I do something wrong? I used this code for the file (just this one)
Code: Select all
DirectShowSource("dichterbij_150[2].wmv")
-
- Joined: Fri Dec 12, 2003 9:33 am
- Location: The Netherlands
- Contact:
-
- Joined: Fri Dec 12, 2003 9:33 am
- Location: The Netherlands
- Contact:
- Kariudo
- Twilight prince
- Joined: Fri Jul 15, 2005 11:08 pm
- Status: 1924 bots banned and counting!
- Location: Los taquitos unidos
- Contact:
you need to include the full path of the video that you're trying import.
there are 2 parts to the file path (both are circled in red)
so let's say that I want to use clip26.avi
I'd do this
you'll notice that the first part is in the explorer bar at the top, and the rest of the file path is: \filename.something
the audio skew is because someone forced variable bitrate audio into the avi stream (the avi container is oly supposed ot have cbr audio instead of vbr)
you could demux, and re-encode your audio as cbr using besweet and then re-mux...but I wouldn't do that unless you need that audio and need it to be synced
there are 2 parts to the file path (both are circled in red)
so let's say that I want to use clip26.avi
I'd do this
Code: Select all
directshowsource("C:\Documents and Settings\Use\My Documents\My Videos\clip26.avi")
the audio skew is because someone forced variable bitrate audio into the avi stream (the avi container is oly supposed ot have cbr audio instead of vbr)
you could demux, and re-encode your audio as cbr using besweet and then re-mux...but I wouldn't do that unless you need that audio and need it to be synced