Results 1 to 15 of 15
Thread: video file
Hybrid View
-
14th October 2016 11:05 #1Banned
Join Date: Jul:2006
Location: noneofyourbiz
Posts: 483
video file
, .
, video files . advanced features, / - VLC recording , desync , ( source file- ), file ( source file- ).
recording- VLC , -, , .
portable , .
.
-
14th October 2016 12:20 #2
-
14th October 2016 12:27 #3Registered User
Join Date: Mar:2008
Location:
Posts: 1,479
Avidemux, " " .
-
14th October 2016 12:34 #4
virtualdub.
- virtualdub-a.Last edited by all; 14th October 2016 at 12:34.
-
14th October 2016 13:00 #5Banned
Join Date: Jul:2006
Location: noneofyourbiz
Posts: 483
, ffmpeg -acodec copy -vcodec copy - , file . - transcode-, options file-.
!
-
14th October 2016 20:12 #6Registered User
Join Date: Mar:2008
Location:
Posts: 1,479
Avidemux . - . , .
-
14th October 2016 20:44 #7
.
, - , , :
Code:REMUX MP4 INTO MKV ffmpeg -i sourcefile.mp4 -c copy output.mkv ----- SPLIT FILES INTO STREAMS ffmpeg -i sourcefile -c copy audio.xxx video.xxx ----- COMBINE 2 FILES OF THE SAME TYPE (codec/settings) ffmpeg -f concat -i mylist.txt -c copy output * mylist.txt must contain file filename1.ext file filename2.ext ----- COMBINE AUDIO WITH VIDEO (simple) ffmpeg -i audio.mp3 -i video.avi -c:a copy -c:v copy output.avi ----- CONVERT VOB to MKV if unknown timestamp error occurs ffmpeg -fflags +genpts -i sourcefile.vob -c copy -map 0 output.mkv ----- SPLIT FILE INTO PARTS ffmpeg -ss 00:00:00.0 -t 00:50:00.0 -i sourcefile -c:a copy -c:v copy output ----- SPLIT FILE BASED ON CHAPTERS ffmpeg -i sourcefile | grep 'start.*end.*[0-9]*' | sed -r 's/.*#[0-9]\.([0-9]*).* ([0-9]*\.[0-9]*).*( [0-9]*\.[0-9]*)/ ffmpeg -i long.mkv -ss \2 -to\3 -c:a copy -c:v copy chapter\1.mkv/g;' * -ss = input file exact time position to start from * -t = total output file length, not input file exact time position * .0 is not required for input or output lengths, it's for precision if needed ----- CONVERT E-AC3 TO FLAC ffmpeg -i sourcefile -c:a flac output.flac ----- SET FRAME SIZE ffmpeg -i sourcefile -vf scale=xxxx:xxxx output ----- SET IMAGE QUALITY (simple) ffmpeg -i sourcefile -b 1800k output




Reply With Quote

7th May 2023, 16:02 in PC