![]() |
Re: Audio and video editing?
Creating final video in the desired format from the result of the union.
ffmpeg -i -sameq video_temp.mpeg video_end.avi *-> "-sameq" is an option that forces the ffmpeg for the final video has the same quality as the videos of entry, (the same resolution, same bitrate, etc). |
Re: Audio and video editing?
Example of conversion to another format:
ffmpeg-i-sameq videoA.avi videoA.mpeg |
Re: Audio and video editing?
Main options de ffmpeg
|
Re: Audio and video editing?
Sample is 30 seconds of video from minute one:
ffmpeg -i video_original.avi -ss 60 -t 30 video_end.avi |
Re: Audio and video editing?
you should be able to cut videos with ffmpeg, too, shouldn't you? i assume ffmpeg supports some kind of -from mm:ss -to mm:ss switch for the input file(s)?
one could go one step further then and actually re-encode videos if they're not in the desired output format... like if you recorded one video in low quality and another one in high quality and want to append a few seconds of the high quality video to the low quality clip. and then, of course, you would separate sound and video and re-mix them for the final movie... like using one of your mp3 files as a soundtrack... or using the soundtrack of clip 1 throughout the movie even though some parts of the video are being replaced by other clips... oh, sorry, i was dreaming. (in fact - i'm already made up a GUI for it in my dreams... ;) ...) |
Re: Audio and video editing?
Your dreams "YES" are possible, I also hope to create a GUI for it.
See the previous post. |
Re: Audio and video editing?
In fact, the more I think of it: The GUI might even be simple. Old S60 phones have a very simple one, and it could be slightly improved for Maemo.
You have a "list" of thumbnails, one for each clip you want to use. (The list could be a real list or a grid like the thumbnails in the media player or - which I'd prefer - thumbnails laid out horizontally.) In the application settings, you specify the output format. (fps, resolution, ...) you click on a thumbnail to enter the start/end values for this clip. (=use from 00:32 to 00:36) Also, there's an option 'use original sound', 'continue using sound from previous scene' or 'select audio file for soundtrack'. That's it. The GUI generates parameters for ffmpeg. Parameters for video quality may be fixed to the recording options supported by the N900 (or could support one "very low quality" setting as output for email/MMS). |
Re: Audio and video editing?
Quote:
|
Re: Audio and video editing?
Example of how to remove the audio track of a video:
ffmpeg -i VideoA.avi -an Video_end.avi *-> "-an" indicates that the final video will have no audio track Example of how to add the audio track of a video: ffmpeg -i AudioA.wav -i VideoA.avi Video_end.avi |
Re: Audio and video editing?
Quote:
does someone else recall or can find a link? -------------- EDIT: i did find the link http://dl.dropbox.com/u/219349/mkp.swf its creating a video from taking individual images, nonetheless it gives a great interface idea for it. |
| All times are GMT. The time now is 07:38. |
vBulletin® Version 3.8.8