ffmpeg override output file if exists

后端 未结 2 2084
独厮守ぢ
独厮守ぢ 2021-01-31 07:00

I am creating a clip from an audio file .FLAC with a start and end time, here is my command.

ffmpeg -i /audio         


        
2条回答
  •  既然无缘
    2021-01-31 07:16

    use option -y with your command

    ffmpeg -y 
    -i /audio/your_file_name.flac 
    -t 51 
    -ss 69 
    /clips/your_clip_name.mp3 2>&1 >> /ffmpegLogs.log
    

提交回复
热议问题