Hello all!
Just wanted to ask if there is a way to edit FLV files or bteter said cut out some video without reencoding it. I'm asking this only cuz of Andy's FLV joiner since if you can join files together without reencoding can you cut them apart as well?
+ Reply to Thread
Results 1 to 8 of 8
-
-
Also...
If target container format is not necessarily FLV, You can use VirtualDub with an appropriate input plugin.VideoAudio.pl - Serwis o technologii wideo & audio -
ffmpeg
convert video to x264 and incapsulate in flv very hight quality and slow dimension in MB
for %%i in ("*.avi") do ("%~dp0ffmpeg.exe" -y -i "%~dp0%%i" -vcodec libx264 -acodec libvo_aacenc -ar 44100 -b:a 112k -coder 1 -cmp +chroma -partitions p8x8,b8x8,i4x4,i8x8 -me_method hex -crf 26.0 -subq 6 -me_range 16 -g 250 -keyint_min 25 -sc_threshold 40 -i_qfactor 0.71 -b_strategy 1 -qcomp 0.6 -qmin 0 -qmax 69 -qdiff 4 -bf 3 -refs 8 -direct-pred 3 -trellis 2 -wpredp 2 -rc_lookahead 60 -threads 0 -ab 112k "%%~ni.mp4" & "%~dp0ffmpeg.exe" -y -i "%~dp0%%~ni.mp4" -vcodec copy -acodec copy "%~dp0%%~ni.flv" ) -
Yea....I have NO idea why anyone would recommend AviDemux for FLV files. I've been using Avidemux for years and have never had any success with FLV files with it.
BUT...FLV files are complete crap. They are the worst to try to do anything with. My only success with them was using something like and OLD version of SUPER and converting them to something else first...then editing.....but SUPER now SUCKS as well. Don't download and install SUPER.....you'll be sorry. -
ffmpeg -i videoinput.flv -ss 00:00:00 -t 00:10:00 -vcodec copy -acodec copy videooutput1.flv
cut file start to 0 for 10 minuts
note -vcodec copy -acodec copy is direct stream copy not recompress
in virtualdub used to import flv or other files plugin ffmpeg (FFmpeg supported Files) for virtualdub download here http://code.google.com/p/ffinputdriver/downloads/list
extract archive in folder virtualdub
Similar Threads
-
edit FLV .264 in virtualdub
By mathmax in forum Video ConversionReplies: 4Last Post: 20th Apr 2011, 12:35 -
Can You Edit .flv Format Video?
By dieselpowered in forum EditingReplies: 4Last Post: 4th Jan 2011, 12:49 -
Edit FLV ?
By Seeker47 in forum EditingReplies: 7Last Post: 23rd May 2009, 00:35 -
Edit FLV with VirtualDub?
By JeffM in forum EditingReplies: 14Last Post: 12th Apr 2008, 14:17 -
Edit DVD without Reencoding
By Kev90 in forum EditingReplies: 7Last Post: 19th Dec 2007, 18:03