Is there any way to edit high definition H.264 FLV video downloaded form Youtube? I know I can convert this to another format and then edit, however if possible I want to keep in this format so no quality is lost. I know Moyea FLV editor is a dedicated FLV editor, however it does not currently handle H.264 FLV file input. Does anyone know of any other products that may be suitable? My goal is to cut a segment from the downloaded video (Audio must stay the same and not be edited) and put a picture at the start and end of the video showing my website name and logo. Any ideas if I don’t want to convert, but keep the video as H.264 FLV?
+ Reply to Thread
Results 1 to 5 of 5
-
-
Like Placio suggested, remux to mp4.
you can use fLVextract to extract the files and remux with Yamb or My MP4Box or you can use Avanti GUI and ffmpeg to copy the audio and video into an mp4 container.
Then use Avidemux to edit the mp4.
If you have a bunch of these files then it might be easier to use a batch file to remux to mp4. Put all these files in their own folder with a copy of ffmpeg.exe and this batch file.
for %%a in ("*.flv") do ffmpeg -i %%a -vcodec copy -acodec copy %%~na.mp4
Use notepad and save as FLV2MP4.bat. Doubleclick the bat file and it will remux all your FLV files to MP4 files.
It's my experience with trying to use Avidemux to change the container that I get corrupted files. ffmpeg doesn't give me this problem.
(Thanks to Placido74, Baldrick and Richardouk)Last edited by DarrellS; 21st Jul 2010 at 14:17.
-
I don't know about commercial software.
I downloaded Avanti-GUI which is a frontend for ffmpeg and a couple of youtube trailers and both came out perfect with no sync issues. You'll need to install ffmpeg and avisynth if you don't have them already.
Open FLV file in Avanti > choose ouput folder > set video to copy > set audio to copy > set container to MP4 and hit the Start Process button.
Similar Threads
-
edit FLV .264 in virtualdub
By mathmax in forum Video ConversionReplies: 4Last Post: 20th Apr 2011, 12:35 -
Empty audio files when converting MPEG2 with h.264 mencoder or h.264 x264
By doctormelodious in forum ffmpegX general discussionReplies: 3Last Post: 4th Jul 2010, 08:12 -
MPEG2 to H.264 (or x.264) FLV- how to do that?
By spycam in forum Video ConversionReplies: 9Last Post: 11th May 2010, 10:20 -
Problem with artifacts in flv conversion - i.e. converting to flv from avi
By brassplyer in forum Video Streaming DownloadingReplies: 9Last Post: 30th Apr 2008, 22:09 -
Converting .avi (Xvid) to .mp4 or .mkv (H.264 or x.264) w/ subs
By Tensai in forum Video ConversionReplies: 4Last Post: 18th Jul 2007, 09:25