Video Editing with Blender, part 1
Uploader Comments (OpticalVampire)
Top Comments
-
Great tutorial! I'm new to blender, but I want to use it more for video editing instead of modeling. Could you perhaps make a video on how to set the dimensions for the video input/output? How do you render the final product? I'm sure there's plenty more questions, but it would be great if you could answer.
-
How do you match up the sound with the video..
All Comments (27)
-
Holy shit! I have been using blender for 2 years and never knew I could use it to edit video.
-
what video formats are supported by blender? my phone camera's default 3gpp format isnt supported, and after converting to avi-xvid and mpeg4 it still couldnt read the video. any solutions?
-
@OccamKant I'll try that when i need to do some editing and let you know how that works thx for the info
-
@grudgeholder692 if your video and audio have greatly different lengths, it's probable that the video you are importing has a different framerate than the one currently set in blender. The first step is to find your clip's framerate. There are a number of ways to do this, either by using your GUI to get info about the clip, or running ffmpeg -i on the file with no output filename, and it will tell you.
Then set your blender framerate to the same thing, and THEN import the clip
-
@OpticalVampire ok, now my other issue is that the audio has far fewer frame than the video, but i cant seem to find a way to shorten the video frames without cutting. have you had this issue before? Or is it just that blender doesnt like the file formating, because the only file i can find on my computer that has the same number of frames is .mov
-
@OpticalVampire This doesnt work on windows. you get a big white box. I think it was meant more for linux.
what is this audio encoding you say at the end. i can do everything, but i cant quite get the audio to work
grudgeholder692 3 months ago
@grudgeholder692 I use mp3 as the audio encoding. You should also make sure the quality is better than the default, which I believe is 64k. 128 or 256 is much better.
OpticalVampire 3 months ago
Every time I open a video it shows up as a white screen. Why does it do that its pissing me off.
ImzRivs 3 months ago
@ImzRivs It is probably the wrong format. I suggest using ffmpeg to convert it to a more blender friendly format.
On linux, the standard ffmpeg package is configured to create by default a video that works perfectly with blender.
Here is a command line you can use to convert your video:
ffmpeg -sameq -i infile -s 1280x720 -acodec libmp3lame -ab 320k -b 10M outfile
replace infile with the video's current name and outfile with the new name, ending in .avi
OpticalVampire 3 months ago
@ImzRivs For example, assuming your file is called IMG_0024.MOV
ffmpeg -sameq -i IMG_0024.MOV -s 1280x720 -acodec libmp3lame -ab 320k -b 10M IMG_0024.avi
This will take a quick time (.MOV) file and turn it into an mpeg 4 avi file (IMG_0024.avi) which blender will like.
OpticalVampire 3 months ago
@ImzRivs In the command line I mention, I have a -s parameter that scales the video to 1280x720. That is optional, but I've found that blender (at least on my machine) won't scrub 1080p full size video at full framerate. It will scrub 720 video at full speed, and I prefer that for editing. And it still looks great when you upload it to youtube.
OpticalVampire 3 months ago