簡単なffmpeg
コマンドを実行します。
ffmpeg -i in.avi out.mp4 -loglevel info
私は次の結果が欲しい:
stdout
両方のためにstdout.log
そしてboth.log
stderr
両方のためにstderr.log
そしてboth.log
プロセスに遅延がないため、エラーラインが標準出力の中央の正しい位置にあることも重要です。
次のようなことを試しましたが、うまくいきません。
ffmpeg -i in.avi out.mp4 1>(tee stdout.log >>both.log) 2>(tee stderr.log >>both.log)
重要なことはbash
またはksh
。