답변:
이것은 사용하여 수행 할 수 있습니다 mencoder
와 ffmpeg
.
00:00:30에서 시작하는 부분을 5 초 길이의 원본 파일로 잘라 내고 다시 인코딩해서는 안된다고 가정합니다 (다시 인코딩하려면 copy
오디오 로 바꿔야 합니다) 비디오 코덱 (사용 가능한 오디오 코덱 문제 mencoder -oac help
목록, 사용 가능한 비디오 코덱 문제 목록 mencoder -ovc help
)은 다음과 같습니다.
mencoder -ss 00:30:00 -endpos 00:00:05 -oac copy -ovc copy originalfile -o newfile
실제 파일 이름 으로 바꿔야 orginalfile
하며 newfile
나중에 나올 부분을 유지하기 위해 생성 된 파일 이름입니다.
00:00:30에서 시작하는 부분을 5 초 길이의 원본 파일로 잘라 내고 다시 인코딩해서는 안된다고 가정합니다 (다시 인코딩하려면 교체해야 함). copy
사용 가능한 코덱 문제 목록을 보려면 오디오 및 비디오 코덱을 사용하여 ffmpeg -formats -E
다음을 발행하십시오.
ffmpeg -ss 00:00:30 -i orginalfile -t 00:00:05 -vcodec copy -acodec copy newfile
실제 파일 이름 으로 바꿔야 orginalfile
하며 newfile
나중에 나올 부분을 유지하기 위해 생성 된 파일 이름입니다.
참고로 http://lazyxiong-tech.blogspot.com/2007/05/using-mencoder-to-cut-out-pieces-of.html 및 http : // 7. 비디오의 일부만 복사 segfault.in/2010/10/ffmpeg-tricks-you-should-know-about/
재 인코딩 또는 재 인코딩 모드없이 비디오를 잘라 내야합니까? 아래 명령을 따르십시오.
개요 : ffmpeg -i [input_file] -ss [start_seconds] -t [duration_seconds] [output_file]
다시 인코딩하지 않고 FFmpeg 컷 mp4 비디오 사용
Example:
ffmpeg -i source.mp4 -ss 00:00:05 -t 00:00:10 -c copy cut_video.mp4
다시 인코딩으로 FFmpeg cut mp4 비디오 사용
Example:
ffmpeg -i source.mp4 -ss 00:00:05 -t 00:00:10 -async 1 -strict -2 cut_video.mp4
처음부터 섹션을 잘라내려면 -t 00:00:10
명령에서 삭제 하십시오.
medipack 은에 대한 래퍼로서 매우 간단한 명령 줄 앱 ffmpeg
입니다.
다음 명령을 사용하여 비디오를 다듬을 수 있습니다.
medipack trim input.mp4 -s 01:04 -e 14:08 -o output.mp4
medipack trim input.mp4 -s 01:04 -t 13:04 -o output.mp4
trim 부속 명령의 옵션을 다음과 같이 볼 수 있습니다.
srb@srb-pc:$ medipack trim -h
usage: medipack trim [-h] [-s START] [-e END | -t TIME] [-o OUTPUT] [inp]
positional arguments:
inp input video file ex: input.mp4
optional arguments:
-h, --help show this help message and exit
-s START, --start START
start time for cuting in format hh:mm:ss or mm:ss
-e END, --end END end time for cuting in format hh:mm:ss or mm:ss
-t TIME, --time TIME clip duration in format hh:mm:ss or mm:ss
-o OUTPUT, --output OUTPUT
당신은 또한 사용하여 다른 옵션을 탐색 할 수 있습니다 medipack -h
srb@srb-pc:$ medipack --help
usage: medipack.py [-h] [-v] {trim,crop,resize,extract} ...
positional arguments:
{trim,crop,resize,extract}
optional arguments:
-h, --help show this help message and exit
-v, --version Display version number
https://github.com/srbcheema1/medipack을 방문 하여 README의 예제를 확인 하십시오 .
보다 정확하게는 다음을 수행 할 수 있습니다. 수동으로 프레임 단위로 프레임을 진행할 미디어 플레이어에서 파일을 열고 (내가 가장 좋아하지만 MPC-HC가 작동 함) 다음과 같은 데이터로 AVISynth 파일을 재생합니다.
DirectShowSource(("C:\Downloads\Video\Do you want him.flv"), Pixel_Type="yuy2").Crop(0,0,-0,-0)
Subtitle("C:\Downloads\Video\Do you want him.flv", font="Arial", size=24, text_color=$ff0000, align=3)
ShowFrameNumber(scroll=true, x=336, y=27, font="Arial", size=24, text_color=$ff0000)
ShowTime(x=398, y=44, font="Arial", size=24, text_color=$ff0000)
그런 다음 정확한 시간 형식으로 잘라내십시오.
ffmpeg -i "Path\do you want him.flv" -ss 00:00:05.240 -to 00:00:08.360 -vcodec libx264 -acodec libvo_aacenc "Path\Do you want him1.flv"
과
ffmpeg -i "Path\do you want him.flv" -ss 00:00:10.240 -to 00:00:14.360 -vcodec libx264 -acodec libvo_aacenc "Path\Do you want him2.flv"
가입하려면 다음과 같은 내용의 비디오 파일로 txt 파일을 만드십시오.
file 'C:\Downloads\Video\Do you want him1.flv'
file 'C:\Downloads\Video\Do you want him2.flv'
실행 ffmpeg
:
ffmpeg -f concat -i FileList.txt -c copy "Path\NewName_joined.flv"
프로그램 적으로 프로그램을 작성했지만 보여줄 수있는 레벨이 10입니다. 죄송합니다.