여러 flv 파일을 병합하기 위해 Linux에서 어떤 도구를 사용할 수 있습니까? 파일은 이미 순서대로 정렬되어 있으므로 원활하게 결합하기만 하면 됩니다.
답변1
다음 사항은 아직 테스트하지 않았으므로 몇 가지 힌트를 고려해보세요.
ffmpeg
매뉴얼에서 .from을 사용할 수 있습니다 .
* You can put many streams of the same type in the output:
ffmpeg -i test1.avi -i test2.avi -vcodec copy -acodec copy -vcodec copy -acodec copy test12.avi -newvideo -newaudio
In addition to the first video and audio streams, the resulting output file
test12.avi will contain the second video and the second audio stream found in the
input streams list.
The "-newvideo", "-newaudio" and "-newsubtitle" options have to be specified
immediately after the name of the output file to which you want to add them.
예를 들어 다음을 사용할 수도 있습니다 mencoder
.
mencoder -forceidx -ovc copy -oac pcm -o output.flv input1.flv input2.flv
또 다른 옵션은 다음과 같습니다.flvcat
.
당신은 또한 그것을 시도할 수 있습니다 avidemux-cli
.
답변2
당신은 확인할 수 있습니다이 FAQFFmpeg 웹사이트에서.
이는 "concat" 필터나 "concat" 프로토콜을 사용할 때 문제가 되는 것 같습니다. 저는 전자를 시도해 본 적이 없어 도움을 드릴 수 없으며, 후자는 MPEG 파일로만 시도했기 때문에 FLV 파일 작업 시 약간의 조정이 필요할 수 있습니다.