blob: 916813a1fe47129f5ae952ed698e8e873be8a2f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#!/usr/bin/python
import subprocess
import shlex
import sys
last_video_pts = None
def handle(frame):
global last_video_pts
if frame['media_type'] == 'video':
if last_video_pts is not None and frame['pkt_pts_time'] <= last_video_pts:
print 'Out of order video frame %f is ahead of %f' % (frame['pkt_pts_time'], last_video_pts)
else:
print 'OK frame %f' % frame['pkt_pts_time']
last_video_pts = frame['pkt_pts_time']
p = subprocess.Popen(shlex.split('ffprobe -show_frames %s' % sys.argv[1]), stdin=None, stdout=subprocess.PIPE)
frame = dict()
while True:
l = p.stdout.readline()
if l == '':
break
l = l.strip()
if l == '[/FRAME]':
handle(frame)
frame = dict()
elif l != '[FRAME]' and l != '[SIDE_DATA]' and l != '[/SIDE_DATA]':
s = l.split('=')
if s[0] == 'pkt_pts_time':
frame[s[0]] = float(s[1])
else:
frame[s[0]] = s[1]
|