タグ

関連タグで絞り込む (0)

  • 関連タグはありません

タグの絞り込みを解除

ffmpegに関するarrowKatoのブックマーク (2)

  • FFmpegで動画編集をするガイド - moriyoshiの日記

    こんにちは。年末になり、ますますコマンドラインで動画編集をする機会が増えてきているかと思いますが、皆様いかがお過ごしでしょうか。普段触れていないとついつい忘れてしまうffmpegのオプション群。そんなあなたのためのチートシートです。 基礎編 トランスコーディング ffmpeg -i input.mp4 -c:v libx264 -preset medium -c:a libfdk_aac output.mp4 または ffmpeg -i input.mp4 -vcodec libx264 -preset medium -acodec libfdk_aac output.mp4 解説 -c:v オプションは映像コーデックを、-c:a は音声コーデックを指定する。古くはそれぞれ -vcodec -acodec というオプションであった。両者は等価である。 -preset は libx264 の

    FFmpegで動画編集をするガイド - moriyoshiの日記
    arrowKato
    arrowKato 2021/05/18
    編集チートシート
  • ffmpeg Documentation

    1 Synopsis ffmpeg [global_options] {[input_file_options] -i input_url} ... {[output_file_options] output_url} ... 2 Description ffmpeg is a universal media converter. It can read a wide variety of inputs - including live grabbing/recording devices - filter, and transcode them into a plethora of output formats. ffmpeg reads from an arbitrary number of input "files" (which can be regular files, pipe

    arrowKato
    arrowKato 2020/12/30
    コマンドラインのオプションの公式doc
  • 1