Conversion: pieces of WMV to anything else

If you have questions about compression/encoding/converting look here.
Locked
LeperDoctor
Joined: Sun Oct 30, 2005 5:55 pm
Org Profile

Conversion: pieces of WMV to anything else

Post by LeperDoctor » Sat Jun 16, 2007 4:22 pm

I made a movie in WMM, so the completed AMV is a .wmv file. In four pieces, because it was too big to save in one piece. <.<

Anyways, I was wondering if someone could suggest a program, or as few programs as possible, that would allow me to attach the four pieces back together again so that I can eventually post the AMV.

LeperDoctor
Joined: Sun Oct 30, 2005 5:55 pm
Org Profile

Post by LeperDoctor » Sat Jun 16, 2007 4:23 pm

I forgot to mention, I wanted to convert the .wmv file into something more generic so people wouldn't have trouble seeing it. Sorry for the double post.

User avatar
Tab.
Joined: Tue May 13, 2003 10:36 pm
Status: SLP
Location: gayville
Org Profile

Post by Tab. » Sat Jun 16, 2007 7:03 pm

Use AVISynth like so (make a text file with .avs extension):

Code: Select all

clip1 = DirectShowSource("your_first_clip.wmv", your_framerate)
clip2 = DirectShowSource("your_second_clip.wmv", your_framerate)
clip3 = DirectShowSource("your_third_clip.wmv", your_framerate)
clip4 = DirectShowSource("your_fourth_clip.wmv", your_framerate)
return clip1 + clip2 + clip3 + clip4
You can then open this avs file in whatever encoding app suits your fancy.

User avatar
Gepetto
Mr. Poopy Pants
Joined: Thu Jun 10, 2004 10:11 pm
Status: Bored to tears
Location: The Tokyo Settlement
Contact:
Org Profile

Post by Gepetto » Sat Jun 16, 2007 8:01 pm

Tab. wrote:You can then open this avs file in whatever encoding app suits your fancy after you have downloaded and installed AviSynth.
It's dead obvious, but better to be on the safe side.


BTW, if and only if your target audience is composed only of Windows users, you can't really get more generic than .wmv
And God spoke unto the Chicken, and He said: "Thou shalt crosseth the road", and the Chicken did cross the road, and there was much rejoicing.
My DeviantART profile

LeperDoctor
Joined: Sun Oct 30, 2005 5:55 pm
Org Profile

Post by LeperDoctor » Sun Jun 17, 2007 11:31 am

Tab. wrote:Use AVISynth like so (make a text file with .avs extension):

Code: Select all

clip1 = DirectShowSource("your_first_clip.wmv", your_framerate)
clip2 = DirectShowSource("your_second_clip.wmv", your_framerate)
clip3 = DirectShowSource("your_third_clip.wmv", your_framerate)
clip4 = DirectShowSource("your_fourth_clip.wmv", your_framerate)
return clip1 + clip2 + clip3 + clip4
You can then open this avs file in whatever encoding app suits your fancy.
Thank you so much for suggesting a program!! I have two more questions now, actually. I downloaded Avisynth for the first time and wrote the script (I saved it as merge.avs), but because I'm not too good on the technology aspect, I don't know of any encoding application that would be good to use.
(1) What's a good encoding software?
(2) Once I get the software, do I just open up Merge.aps, or do something else?

(I tried to open it in VirtualDubMod, and it caused the program to crash)

Hee, thanks Gespetto. It's always cool to be on the safe side with tehcnology numpties like me. ^^

User avatar
Gepetto
Mr. Poopy Pants
Joined: Thu Jun 10, 2004 10:11 pm
Status: Bored to tears
Location: The Tokyo Settlement
Contact:
Org Profile

Post by Gepetto » Sun Jun 17, 2007 4:48 pm

LeperDoctor wrote:(I tried to open it in VirtualDubMod, and it caused the program to crash)
That's odd, we usually use VirtualDubMod to handle these kinds of things. Are you sure that you've got the script right? Try playing it in a media player to see if it works, if it doesn't try reinstalling AviSynth.
LeperDoctor wrote:(2) Once I get the software, do I just open up Merge.aps, or do something else?
That was obviously a typo. Yes, you just open Merge.avs and it should display. Then, you need to choose what codec to save in, going to the Video -> Compression dialog (make sure that "fast recompress" or "full processing mode" is selected in the video tab). After that, just choose File -> Save As... and select the location and filename for your video.
And God spoke unto the Chicken, and He said: "Thou shalt crosseth the road", and the Chicken did cross the road, and there was much rejoicing.
My DeviantART profile

User avatar
Tab.
Joined: Tue May 13, 2003 10:36 pm
Status: SLP
Location: gayville
Org Profile

Post by Tab. » Sun Jun 17, 2007 4:51 pm

VirtualDubMod shouldn't have crashed :| Anyway, you might want to check out MeGUI for encoding to MPEG-4 -- it does Xvid and x264. Or just plain old VirtualDub if you have some VFW codec you want to use.

LeperDoctor
Joined: Sun Oct 30, 2005 5:55 pm
Org Profile

Post by LeperDoctor » Mon Jun 18, 2007 11:54 am

Okay, awesome! Thank you so much for your guys' quick replies. ^^

Locked

Return to “Conversion / Encoding Help”