オーディオファイルを複数に分割する方法は?

オーディオファイルを複数に分割する方法は?

このような映像をいくつか発見しました。

ffmpeg -i * -c:v libx264 -crf 22 -map 0 -segment_time 1 -g 1 -sc_threshold 0 -force_key_frames "expr:gte(t,n_forced*9)" -f segment output%03d.mp4

オーディオファイルと一緒に試しましたが、最初のオーディオファイルにのみ実際のオーディオが含まれており、残りは無音です。それ以外は大丈夫です。毎秒新しいオーディオファイルを作成します。オーディオファイルまたは同じ操作を実行する他のコマンドと連携するように変更する必要があることを知っている人はいますか?

答え1

mp3ファイルで試したとき、これは私にとって効果的でした。

$ ffmpeg -i somefile.mp3 -f segment -segment_time 3 -c copy out%03d.mp3

-segment_time各ファイルに必要な秒数はどこにありますか?

引用する

答え2

大容量オーディオファイルを異なる長さのトラックセットに分割するには、次のコマンドを使用できます。

# -to is the end time of the sub-file
ffmpeg -i BIG_FILE -acodec copy -ss START_TIME -to END_TIME LITTLE_FILE

たとえば、Inception Original Soundtrackの単一の.opusファイルを開始、終了、名前を含むテキストファイルを使用してサブファイルに分割しました。

00:00:00 00:01:11 01_half_remembered_dream
00:01:11 00:03:07 02_we_built_our_own_world
00:03:07 00:05:31 03_dream_is_collapsing
00:05:31 00:09:14 04_radical_notion
00:09:14 00:16:58 05_old_souls
00:16:58 00:19:22 06
00:19:22 00:24:16 07_mombasa
00:24:16 00:26:44 08_one_simple_idea
00:26:44 00:31:49 09_dream_within_a_dream
00:31:49 00:41:19 10_waiting_for_a_train
00:41:19 00:44:44 11_paradox
00:44:44 00:49:20 12_time

私はawkテキストファイルを読み、各行ffmpegからコマンドを生成するために、次のような短いプログラムを書いています。

{
    # make ffmpeg command string using sprintf
    cmd = sprintf("ffmpeg -i inception_ost.opus -acodec copy -ss %s -to %s %s.opus", $1, $2, $3)

    # execute ffmpeg command with awk's system function
    system(cmd)
}

pythonsplit.pyこれには、元のトラックファイルを含むより詳細なバージョンのプログラムがあります。そしてコマンドラインから指定されたサブトラックのテキストファイルを読み込みます。

import sys
import subprocess


def main():
    """split a music track into specified sub-tracks by calling ffmpeg from the shell"""

    # check command line for original file and track list file
    if len(sys.argv) != 3:
        print("usage: split <original_track> <track_list>")
        exit(1)

    # record command line args
    original_track = sys.argv[1]
    track_list = sys.argv[2]

    # create a template of the ffmpeg call in advance
    cmd_string = "ffmpeg -i {tr} -acodec copy -ss {st} -to {en} {nm}.opus"

    # read each line of the track list and split into start, end, name
    with open(track_list, "r") as f:
        for line in f:
            # skip comment and empty lines
            if line.startswith("#") or len(line) <= 1:
                continue

            # create command string for a given track
            start, end, name = line.strip().split()
            command = cmd_string.format(tr=original_track, st=start, en=end, nm=name)

            # use subprocess to execute the command in the shell
            subprocess.call(command, shell=True)

    return None


if __name__ == "__main__":
    main()

ffmpegコマンドテンプレートを変更したり、track_listファイルの各行にさらにフィールドを追加することで、より複雑な呼び出しを簡単に構築できます。

答え3

次の行は、オーディオファイルをそれぞれ30秒の長さの複数のファイルに分割します。

ffmpeg -i file.wav -f segment -segment_time 30 -c copy parts/output%09d.wav

30(秒)を希望の数字に変更します。

答え4

与えられた解決策は私には適していません。ffmpeg私のシステムの古いバージョンのためだと思います。
とにかく私は一つを提供したいと思います。解決策これは私にとって効果的です。必要に応じてタイマーをカスタマイズして、オーディオが重なるようにすることもできます。

Output file #0 does not contain any stream

ffmpeg -i your_audio_file.mp3 -acodec copy -t 00:00:30 -ss 00:00:00 split_audio_file.mp3

オーディオファイルを30秒単位で分割

関連情報