4
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

tsファイルの処理

Posted at

録画したtsファイルの処理方法。

もともとのtsファイルは
Video: mpeg2video
Audio: aac 5.1ch

まず Audioをac3にしたmp4に変換
ffmpeg -i hoge.ts -vcodec copy -acodec copy -bsf:a aac_adtstoasc hoge.mp4
こうしないと雑音が入る。

次に
ffmpeg -i hoge.mp4 -vcodec libx264 -s 1280x720 -r 29.97 -aspect 16:9 -vsync -1 -acodec ac3 -ac 6 -ab 192k hoge.ts

これで、画像がh264で圧縮されたtsファイルになる。

4
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?