I have a bunch of videos I recorded off my camcorder (MP4/h264 format) that I want to make into a dvd, problem is if I just toss them together into my dvd authoring app they will just cut from one scene to another, so I wanted to add transitions to make them look better.
I Googled everywhere and tried everything I can think of but can't find a decent freeware app that will let me add transitions between the videos. Most of the programs I found just crashed every 2 seconds, didn't work, or had a ridiculously convoluted gui that didn't let you preview and looked like it was made in Windows 3.1.
The only thing that appeared to work was (UGH...) Windows Live Movie Make 2011....... but it was useless since it would only let me encode in WMV codecs and containers.
I tried everything I can think of but can't find a decent freeware app that will let me add transitions between the videos,can anybody here recommend anything?
+ Reply to Thread
Results 1 to 30 of 62
-
-
You could try export the to dv-avi in windows live movie maker. THen can you convert it to dvd with other free software like avstodvd.
-
-
Depending on how complex you want to get, AviSynth can do stuff like Fades and Dissolves easily enough. And it's totally free:
http://avisynth.org/mediawiki/Fade
http://avisynth.org/mediawiki/Dissolve -
Hmmm, Fade dosen't seem to be what im looking for, as for Dissolve, that would work if I find I have no other options but I would like something of a crossfade that is a more obvious than a dissolve if I can, like for example that diamond-shaped transition WMM has, plus I don't understand how I would dissolve between several videos together, that link only talks about how to dissolve between two videos (Basically, when video a is ending dissolve to b, then when b is ending dissolve to c, etc).
That being said though, is there any way I can have something a bit more flashy than just a dissolve? Some of these videos were taken at night where they are a dark/grainy, so a simple dissolve might not be noticeable. -
V.C. Mohan's Transall filter for AviSynth has a ton of different kinds of transitions:
http://avisynth.org/vcmohan/TransAll/docs/index.html
Maybe the TransVenetianBlinds part of it does something like the 'diamond-shaped transition' you mentioned:
http://avisynth.org/vcmohan/TransAll/docs/TransVenetianBlinds.html
And dissolves can be made to work with as many videos as you have. After all, once you dissolve from one video to another, then it's a single video which can be used to dissolve into a new video. None of this is automatic, though. -
Hmm, that blinds thing might work.
How exactly would I use that though? I mean, I know there is a sample script, but that is only a fragment, I don't know how to write AviSynth scripts that well.
And this means I will need to re-encode the video in order to add these transitions doesn't it? I should just be able to load the script in MeGui to do that right?
What would I do about sound? -
I prepared 2 partial videos using different scripts and then imported those scripts into a new script:
Code:LoadPlugin("D:\AviSynth Stuff\Dlls\TransAll.dll") Left=Import("E:\Meera Naam Joker\2\2.avs") Right=Import("E:\Meera Naam Joker\1\1.avs") TransVenetianBlinds(Left, Right,100,40,"diam") Trim(140,354) BilinearResize(640,480) FadeIO0(45)
-
And you're making a DVD from those camera videos, aren't you? So you'll have to reencode the entire thing anyway, won't you? Yes, whenever you use AviSynth scripts the whole thing gets reencoded. If you're making a DVD then ordinarily the audio gets added during authoring. Joining the different audio pieces and the audio transitions can be handled in a WAV editor such as the free Audacity. I don't know much about that end of it. I'm sure someone else can help.
-
Yes I mean, I just didn't want to have to encode them to add the transitions then encode AGAIN into whatever format my dvd authoring software will make them.
However, I am having some trouble with my AVISynth scripts AND my codecs....
I just re-downloaded and re-installed AviSynth and Matrosoka Splitter to make sure, but even a very simple script like "DirectShowSource("SANY0143.MP4")" is causing me headaches.
If I try to load said script in Media Player Classic, first it complains about "ACM Wrapper::Output", something about not having an output pin, and then the video plays very jittery.
I tried loading the script in VirtualDub and encode it in huffyuv.... but I can't see huffyuv in my list of codecs, even though I also just re-installed it to make sure. (I don't see core codec listed there either).
I loaded it in megui and it worked ok, even the one with the effects I added.
However, again, I saw no way to encode in huffyuv in megui either.
Finally, all the videos were silent. Normally I can just add the audio from the mp4 files, but the problem is I don't know how its joining them in order to do that, if I just combine all the audio tracks together they will be off more and more with each transition, is there any way to include the audio with the script? -
The script can get sent directly to the encoder, transitions and all. Be sure to test it first in VDub(Mod) or in a player that accepts AviSynth scripts as input, to make sure the script is good and that it does what you want. Or, if the script is slow and you're running multiple passes, you can make a lossless AVI for later sending to the encoder (also in VDub(Mod). Yes, there's a way to add audio to the scripts, but I don't so it so maybe someone else can help:
http://avisynth.org/mediawiki/AudioDub
But that's for WAV audio only. The NicAudio.dll can be used with other kinds of audio. Also, I never use DirectShowSource if I can possibly help it. I much prefer FFmpegSource2. With it you can combine the video and audio. I think others use DSS2.
I don't use MeGUI. And if making a DVD, why would you either?Last edited by manono; 24th Oct 2010 at 12:53.
-
Thats what I was trying to do, but MPC and VLC failed to preview it correctly, and for some reason huffyuv wasn't showing up in VirtualDub.
-
Use ffmpegsource2
http://code.google.com/p/ffmpegsource/
vid=FFVideoSource("SANY0143.MP4")
aud=FFVideoSource("SANY0143.MP4")
AudioDub(vid,aud)
You can try ut video codec as an alternative to huffyuv if you can't get huffyuv sorted out -
FFVideoSource and FFAudioSource did the trick, but now I have a new problem.
I just realized that in every single one of my scripts, even if it a simple one line DirectShowSource or FFVideoSource, the videos come out darker then the source video, they are already dark enough being night shots, like this they are far far worse.
Any idea why this is happening? -
Do you have more than 1 instance open ? What renderer are you using? If you are using overlay, then your graphics card settings also affect the appearance. Only 1 instance can use the overlay renderer
You have to be more specific. There are a dozen things that can change the appearance including renderer, decoder, RGB conversion, graphics card settings, etc....
avisynth is frameserving YV12 video which gets converted to RGB for display - how it does that conversion depends on how you have things setup in the decoder, input & output levels.
Playing the original video goes through a different chain than the avs script
You need to provide more information -
Where can I look up this information about my colorspaces and everything?
-
you can use search ; a lot of it has been discussed several times in this forum
99% of the time these discrepancies can be attributed to how you have your playback chain setup ( the things I mentioned above) . If you don't know what decoder your software is using, then it's impossible to even begin to troubleshoot. You need to provide the information asked or you're on your own.
if you are making a DVD, your PC monitor is calibrated differently than a TV (PC levels vs. TV levels) . You should be using a waveform monitor to get proper levels
If you use avisynth to feed into an MPEG2 encoder like HCenc, it's staying in YV12 (i.e. input YV12 = output YV12) unless you have configured something else differently with decoder or using other filters -
In fact, AudioDub is a general filter for combining video and audio clips.
Technically, I suppose you could say it is dealing with 'WAV', as internally Avisynth works with uncompressed audio. But the external source of the audio could be anything and is handled by the appropriate source filter earlier in the script. To put it another way, you always use AudioDub, but the source filter (NicAudio, etc) varies according to the source type. -
-
OK, I guess I should have quit after saying earlier, "Yes, there's a way to add audio to the scripts, but I don't do it so maybe someone else can help".
Last edited by manono; 25th Oct 2010 at 00:49.
-
If you need to color/contrast/brightness correct your clips you can look into this plugin: http://compression.ru/video/smart_contrast/index_en.html or the various functions in Avisynth: http://avisynth.org/mediawiki/Internal_filters#Color_conversion_and_adjustment_filters
If you make a avisynth script for each clip like the one mentioned above:
Use ffmpegsource2
http://code.google.com/p/ffmpegsource/
vid=FFVideoSource("SANY0143.MP4")
aud=FFVideoSource("SANY0143.MP4")
AudioDub(vid,aud) -
You mean ffdshow?
I am just making this on a laptop, I don't have such high end equipment.
I am using either megui or virtualdub to test-encode actually, or just playing the avs file directly.
I want it to play/encode the mp4 and avs files using the same colorspace, not to have to adjust one to match the other.
In all honesty, if the DVD Creation program can add transitions itself then I won't even need AviSynth, since that is all I am using it for, but I thought DVD slideshow GUI was only for creating slideshows out of still images? The description sure seemed to paint it as such a program. -
@ Cyber Akuma
In all honesty, if the DVD Creation program can add transitions itself then I won't even need AviSynth, since that is all I am using it for, but I thought DVD slideshow GUI was only for creating slideshows out of still images? The description sure seemed to paint it as such a program.Maybe I should rename it to the AV Swizz Army Knife
-
Hmmm, its not loading my MP4 formatted video however.
I know I can use an avs to load it, but if I do that I want to know why it is coming out darker.
Can anyone help me figure out why the avs files make the video darker?
Similar Threads
-
software to edit iphone videos on a 1.6ghz cpu, 2gb of ram, 30gb free space
By v1p0n3 in forum EditingReplies: 0Last Post: 17th Feb 2012, 06:47 -
What is Best Software for Slideshow Presentation Videos? Cool Transitions !
By zcity1 in forum Newbie / General discussionsReplies: 1Last Post: 17th Aug 2011, 13:11 -
What free software for down loading YOU TUBE videos for best quality..
By gary153 in forum Newbie / General discussionsReplies: 8Last Post: 3rd Nov 2010, 08:47 -
Help: .m2ts joining and adding transitions
By klynax in forum EditingReplies: 2Last Post: 9th Oct 2009, 14:25 -
free software for adding voice through mic to vcd
By andreytenov in forum EditingReplies: 4Last Post: 12th Nov 2007, 03:20