Hi,
I need help from video editors.
I have video
http://www.youtube.com/watch?v=KVrX4Loe-hQ&feature=related
I would like to change color video from black to red. Is it possible. Thank you
+ Reply to Thread
Results 1 to 30 of 61
-
-
You can color/chroma key out the black and replace it with a solid layer any color (or any background) . You can do this in most NLE's e.g. sony vegas ,premiere pro or effects software eg. after effects
-
-
What's that, some German wording? Looks like somebody lost their frau, hehehe. I used to say "dem" too. Like wared E git dem....
EDIT: Oh yeah, I knew that, I forgot. Oops.Last edited by budwzr; 15th Oct 2012 at 22:58.
-
Can it be done with free software. i dont have money to invest to programme
-
Yes you can do it for free with something like blender or avisynth (both have bit of a learning curve)
e.g using jagabo's technique in avisynth
Code:matte=FFMpegSource2("Sean Paul - Temperature - Lyrics on Screen! - YouTube.flv", atrack=-1).levels(0,1,225,0,255,false) white=BlankClip(matte, color=$FFFFFF) background=BlankClip(matte, color=$B22222) overlay(background, white, mask=matte, pc_range=true)
2) copy & paste the following into notepad (in same directory as video) , change filenames & paths to match save it, change extension from .txt to .avs
3) use that .avs as input into any encoder that accepts avs scripts eg. ripbot, megui, staxrip, dozens others..
You can change the color of the background clip using these hex codes , or using levels, saturation after
http://avisynth.org/mediawiki/Color_presets
You can preview by using vdub or avspmod (f5 to refresh the preview)Last edited by poisondeathray; 16th Oct 2012 at 08:29.
-
I did it with AviSynth and VirtualDub, both free. Somewhat advanced though. The AviSynth script looked like:
Code:alpha=ffVideoSource("Sean Paul - Temperature - Lyrics on Screen_.flv").ColorYUV(cont_y=30) bg=ImageSource("red.png").ConvertToYV12() fg=ImageSource("white.png").ConvertToYV12() Overlay(bg, fg, 0, 0, alpha)
-
I am total noob. Can you pls help me step by step. If I want edit the video I have to download the video?
-
Make sure you adjust the paths and filenames. Eg. if you save the video as "video.flv", you have to adjust the script to reflect that.
FFMS2 needs to be downloaded separately ; unzip the .dll and .avsi and place in the avisynth plugins folder
http://code.google.com/p/ffmpegsource/
PATH is the directory path , e.g. D:\directory\whatever
eg.
matte=FFMpegSource2("PATH\Video.flv", atrack=-1).levels(0,1,225,0,255,false)
you can preview the .avs with vdub or avspmod. If the color is to your liking, then open the avs with ripbot and encode the video
If you don't know how to use ripbot it's very simple. There are some tutorials on youtube search for "how to use ripbot" -
-
Open the .avs with ripbot and encode it
It's better if you take the time to learn how to do it , but it can be confusing at first
But I can upload the video here if it helps
If you want to crop (erase) the "GiveMeThoseLyrics" that's pretty easy too -
http://1.bp.blogspot.com/-U7cbCf7YekQ/UH7XNW6iGOI/AAAAAAAAAHQ/wteT5DqepvY/s1600/video.jpg
it show error. Pls help. Thank you -
Did you install the ffmpeg source plugin for AviSynth?
http://code.google.com/p/ffmpegsource/
Put ffms2.dll and ffms2.avsi in AviSynth's plugins folder. -
Read what jagabo just told you to do. Do it first before trying again. It will not work until you do that!
Scott -
OMG its so complicated just download ffms 2.17 c plugin. I am stuck. Can you anyone make me video?
-
Don't download the cplugin version, use the "vanilla" version
http://code.google.com/p/ffmpegsource/downloads/detail?name=ffms-2.17.7z -
Double check that you have ffms2.avsi in the plugins folder. FFMpegSource2 is a wrapper function that simplifies FFVideoSource and FFAudioSource with audiodub()
If you still can't get it to work this is the essentially same thing
Code:vid=FFVideoSource("Sean Paul - Temperature - Lyrics on Screen! - YouTube.flv") aud=FFAudioSource("Sean Paul - Temperature - Lyrics on Screen! - YouTube.flv") AudioDub(vid,aud) Levels(0,1,225,0,255,false) matte=last white=BlankClip(matte, color=$FFFFFF) background=BlankClip(matte, color=$B22222) overlay(background, white, mask=matte, pc_range=true)
-
-
If you are running 64 bit windows all tools must be 32 bit, or all tools must be 64 bit, the two systems are completely separate. So if you are using 64 bit ripbot64 you need to install 64 bit AviSynth, and 64 bit ffms2.dll, and 64 bit versions of any other 3rd party filters you use. If you use 32 bit ripbot64 you need to install 32 bit AviSynth, 32 bit ffms2.dll, and 32 bit versions of any other 3rd party filters. Few filters are available in 64 bit versions so it's best to use 32 bit for everything.
Note that 32 bit AviSynth running on 64 bit Windows will be installed in the "C:\Program Files (x86)" tree.
Similar Threads
-
How to render a video without a background
By xX-Towrd01-Xx in forum User guidesReplies: 3Last Post: 10th Apr 2012, 09:53 -
DVDLab Pro problem, menu background colors change when rendered.
By PSPGamer in forum DVD RippingReplies: 19Last Post: 2nd Mar 2011, 20:42 -
timecode effect - change color/background how
By The Linguist in forum EditingReplies: 7Last Post: 16th Jan 2010, 20:10 -
Question how to change background menu picture on DVD
By jimdagys in forum Authoring (DVD)Replies: 15Last Post: 7th Dec 2008, 23:55 -
How to change background color of my video?
By sanny in forum Newbie / General discussionsReplies: 1Last Post: 22nd Oct 2008, 16:34