動画のPTSとDTSを確認する

 実行するコマンド

#PTS

#windows
ffprobe -show_frames -select_streams v https://xxxxxx  | findstr pts

#Linux
ffprobe -show_frames -select_streams v https://xxxxxx  |grep pts


#DTS

#windows
ffprobe -show_frames -select_streams v https://xxxxxx  | findstr pkt_dts

#Linux
ffprobe -show_frames -select_streams v https://xxxxxx  |grep pkt_dts

不均一なpts 

均一な PTS 

閲覧可能な物件

 FFプローブをダウンロード

ffmpeg の公式 Web サイト https://ffmpeg.org/download.html にアクセスし、下図の赤枠の位置をクリックしてインストール パッケージをダウンロードします。

 

 環境変数を設定する

D:\xxxxx\ffmpeg-5.1-essentials_build\bin

おすすめ

転載: blog.csdn.net/vistaup/article/details/126244388
おすすめ