Conversion: pieces of WMV to anything else
-
- Joined: Sun Oct 30, 2005 5:55 pm
Conversion: pieces of WMV to anything else
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.
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.
-
- Joined: Sun Oct 30, 2005 5:55 pm
- Tab.
- Joined: Tue May 13, 2003 10:36 pm
- Status: SLP
- Location: gayville
Use AVISynth like so (make a text file with .avs extension):
You can then open this avs file in whatever encoding app suits your fancy.
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
- Gepetto
- Mr. Poopy Pants
- Joined: Thu Jun 10, 2004 10:11 pm
- Status: Bored to tears
- Location: The Tokyo Settlement
- Contact:
It's dead obvious, but better to be on the safe side.Tab. wrote:You can then open this avs file in whatever encoding app suits your fancy after you have downloaded and installed AviSynth.
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
My DeviantART profile
-
- Joined: Sun Oct 30, 2005 5:55 pm
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.Tab. wrote:Use AVISynth like so (make a text file with .avs extension):
You can then open this avs file in whatever encoding app suits your fancy.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
(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. ^^
- Gepetto
- Mr. Poopy Pants
- Joined: Thu Jun 10, 2004 10:11 pm
- Status: Bored to tears
- Location: The Tokyo Settlement
- Contact:
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:(I tried to open it in VirtualDubMod, and it caused the program to crash)
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.LeperDoctor wrote:(2) Once I get the software, do I just open up Merge.aps, or do something else?
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
My DeviantART profile
- Tab.
- Joined: Tue May 13, 2003 10:36 pm
- Status: SLP
- Location: gayville
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.
-
- Joined: Sun Oct 30, 2005 5:55 pm