-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathVmaf.py
430 lines (371 loc) · 18.8 KB
/
Vmaf.py
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
"""
MIT License
Copyright (c) 2020 Gabriel Davila - [email protected]
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
"""
from FFmpeg import FFprobe
from FFmpeg import FFmpegQos
import os
class video():
"""
Video class to parse information of video streams obtained
by _FFmpeg.FFprobe
"""
def __init__(self, videoSrc, loglevel="info"):
self.videoSrc = videoSrc
self.streamInfo = None
self.framesInfo = None
self.packetsInfo = None
self.formatInfo = None
self.interlacedFrames = None
self.totalFrames = None
self.bytesFramesTotal = None
self.interlaced = None
self.loglevel = loglevel
self.getStreamInfo()
self.getFormatInfo()
self.getFramesInfo()
self.duration = self.getDuration()
def _updateFramesSummary(self):
interlacedFrames_count = 0
bytesFramesTotal = 0
if self.framesInfo == None:
return
for frame in self.framesInfo:
interlacedFrames_count = interlacedFrames_count + \
int(frame['interlaced_frame'])
bytesFramesTotal = bytesFramesTotal + int(frame['pkt_size'])
self.interlacedFrames = interlacedFrames_count
self.totalFrames = len(self.framesInfo)
self.bytesFramesTotal = bytesFramesTotal
if int(round(self.interlacedFrames/self.totalFrames)):
self.interlaced = True
else:
self.interlaced = False
return
def getDuration(self):
try:
duration = round(
float(self.streamInfo['duration'])-float(self.streamInfo['start_time']))
if duration < 0:
duration = round(float(self.streamInfo['duration']))
except KeyError:
duration = round(
float(self.formatInfo['duration'])-float(self.formatInfo['start_time']))
if duration < 0:
duration = round(float(self.formatInfo['duration']))
return duration
def getStreamInfo(self):
print("\n\n=======================================", flush=True)
print("[easyVmaf] Getting stream info...", self.videoSrc, flush=True)
print("=======================================", flush=True)
self.streamInfo = FFprobe(self.videoSrc, self.loglevel).getStreamInfo()
return self.streamInfo
def getFramesInfo(self):
print("\n\n=======================================", flush=True)
print("[easyVmaf] Getting frames info...", self.videoSrc, flush=True)
print("=======================================", flush=True)
self.framesInfo = FFprobe(self.videoSrc, self.loglevel).getFramesInfo()
self._updateFramesSummary()
return self.framesInfo
def getPacketsInfo(self):
print("\n\n=======================================", flush=True)
print("[easyVmaf] Getting packets info...", self.videoSrc, flush=True)
print("=======================================", flush=True)
self.packetsInfo = FFprobe(
self.videoSrc, self.loglevel).getPacketsInfo()
return self.packetsInfo
def getFormatInfo(self):
print("\n\n=======================================", flush=True)
print("[easyVmaf] Getting format info...", self.videoSrc, flush=True)
print("=======================================", flush=True)
self.formatInfo = FFprobe(self.videoSrc, self.loglevel).getFormatInfo()
print (self.formatInfo)
return self.formatInfo
class vmaf():
"""
Video class to manage VMAF computation of video streams. This class allows:
- Upscale or downscale the MAIN or REF videos automatically according to the Vmaf model (1080, 4K, etc)
- Deinterlace automatically the MAIN and REF videos if needed
- To SYNC (in time) the MAIN and REF videos using psnr computation
- Frame rate conversion (if needed)
"""
def __init__(self, mainSrc, refSrc, output_fmt, model="HD", phone=False, loglevel="info", subsample=1, threads=0, print_progress=False, end_sync=False, manual_fps=0, cambi_heatmap=False):
self.loglevel = loglevel
self.main = video(mainSrc, self.loglevel)
self.ref = video(refSrc, self.loglevel)
self.model = model
self.phone = phone
self.subsample = subsample
self.ffmpegQos = FFmpegQos(
self.main.videoSrc, self.ref.videoSrc, self.loglevel)
self.target_resolution = None
self.offset = 0
self.manual_fps = manual_fps
self._initResolutions()
self.output_fmt = output_fmt
self.threads = threads
self.print_progress = print_progress
self.end_sync = end_sync
self.cambi_heatmap = cambi_heatmap
def _initResolutions(self):
"""
initialization of resolutions for each vmaf model
"""
if self.model == 'HD':
self.target_resolution = [1920, 1080]
elif self.model == '4K':
self.target_resolution = [3840, 2160]
else:
exit("[easyVmaf] ERROR: Invalid vmaf model")
def _autoScale(self):
"""
scaling MAIN and REF if they dont match with the resolution requiered by the vmaf model (target resolution)
"""
refResolution = [self.ref.streamInfo['width'],
self.ref.streamInfo['height']]
mainResolution = [self.main.streamInfo['width'],
self.main.streamInfo['height']]
if refResolution != self.target_resolution:
if not self.ffmpegQos.invertedSrc:
self.ffmpegQos.ref.setScaleFilter(
self.target_resolution[0], self.target_resolution[1])
if self.ffmpegQos.invertedSrc:
self.ffmpegQos.main.setScaleFilter(
self.target_resolution[0], self.target_resolution[1])
if mainResolution != self.target_resolution:
if not self.ffmpegQos.invertedSrc:
self.ffmpegQos.main.setScaleFilter(
self.target_resolution[0], self.target_resolution[1])
if self.ffmpegQos.invertedSrc:
self.ffmpegQos.ref.setScaleFilter(
self.target_resolution[0], self.target_resolution[1])
def _deinterlaceFrame(self, factor, stream):
ref_fps = getFrameRate(self.ref.streamInfo['r_frame_rate'])
main_fps = getFrameRate(self.main.streamInfo['r_frame_rate'])
stream.setDeintFrameFilter()
if round(ref_fps, 2) != round(factor*main_fps, 2):
stream.setFpsFilter(round(main_fps, 5))
def _deinterlaceField(self, factor, stream):
ref_fps = getFrameRate(self.ref.streamInfo['r_frame_rate'])
main_fps = getFrameRate(self.main.streamInfo['r_frame_rate'])
stream.setDeintFieldFilter()
if round(ref_fps, 2) != round(factor*main_fps, 2):
stream.setFpsFilter(round(main_fps, 5))
def _autoDeinterlace(self):
"""
This functions normalizes the framerate between MAIN and REF video streams (if needed)
"""
ref_fps = getFrameRate(self.ref.streamInfo['r_frame_rate'])
main_fps = getFrameRate(self.main.streamInfo['r_frame_rate'])
if self.ref.interlaced == self.main.interlaced:
""" Not Deinterlace would be required. So this functions normalizes the fps between REF and MAIN
"""
if round(ref_fps) < round(main_fps):
"""
frame rate conversion over MAIN video. The lowest framerate is choosed (REF fps).
"""
print(
"[easyVmaf] Warning: Frame rate conversion can produce bad vmaf scores", flush=True)
self.ffmpegQos.main.setFpsFilter(round(ref_fps, 5))
elif round(ref_fps) > round(main_fps):
"""
frame rate conversion over REF video. The lowest framerate is choosed (MAIN fps).
"""
print(
"[easyVmaf] Warning: Frame rate conversion can produce bad vmaf scores", flush=True)
self.ffmpegQos.ref.setFpsFilter(round(main_fps, 5))
else:
"""
This just pass the original framerate to the ffmpeg filter (lavfi) when no frame rate
conversion is requiered. For some reason it is mandatory by lavfi in order to work properly.
"""
self.ffmpegQos.main.setFpsFilter(round(main_fps, 5))
self.ffmpegQos.ref.setFpsFilter(round(ref_fps, 5))
elif self.ref.interlaced and not self.main.interlaced:
"""
REF interlaced | MAIN progressive
"""
if round(ref_fps) == round(main_fps*2):
# Examples: REF=60i, MAIN=30p
# REF=59.97i, MAIN=30p, etc
if not self.ffmpegQos.invertedSrc:
self._deinterlaceFrame(2, self.ffmpegQos.ref)
else:
self._deinterlaceFrame(2, self.ffmpegQos.main)
elif round(ref_fps) == round(main_fps):
# Examples:
# REF=30i, MAIN=30p
# REF=29.97i, MAIN=30p, etc
if not self.ffmpegQos.invertedSrc:
self._deinterlaceFrame(1, self.ffmpegQos.ref)
else:
self._deinterlaceFrame(1, self.ffmpegQos.main)
elif round(ref_fps) == round(main_fps/2):
# Examples:
# REF=30i, MAIN=60p
# REF=29.97i, MAIN=60p, etc
if not self.ffmpegQos.invertedSrc:
self._deinterlaceField(0.5, self.ffmpegQos.ref)
else:
self._deinterlaceField(0.5, self.ffmpegQos.main)
else:
print(
"[easyVmaf] ERROR: No Filters available for the given Framerates", flush=True)
elif not self.ref.interlaced and self.main.interlaced:
"""
Input Progressive (REF) | Output Interlaced (MAIN)
"""
if round(ref_fps) == round(main_fps*2):
# Examples: REF=60p, MAIN=30i
# REF=60p, MAIN=29.97i, etc
print(
"[easyVmaf] Warning: Frame rate conversion can produce bad vmaf scores", flush=True)
if not self.ffmpegQos.invertedSrc:
self._deinterlaceField(1, self.ffmpegQos.main)
else:
self._deinterlaceField(1, self.ffmpegQos.ref)
elif round(ref_fps) == round(main_fps):
# Examples:
# REF=30p, MAIN=30i
# REF=30p, MAIN=29.97i, etc
if not self.ffmpegQos.invertedSrc:
self._deinterlaceFrame(1, self.ffmpegQos.main)
else:
self._deinterlaceFrame(1, self.ffmpegQos.ref)
else:
print(
"[easyVmaf] ERROR: No Filters available for the given Framerates", flush=True)
def _forceFps(self):
print("[easyVmaf] Warning: Forcing frame rate conversion manually", flush=True)
self.ffmpegQos.main.setFpsFilter(self.manual_fps)
self.ffmpegQos.main.setFpsFilter(self.manual_fps)
def syncOffset(self, syncWindow=3, start=0, reverse=False):
"""
Method to get the offset needed to sync REF and MAIN (if any).
syncWindow --> Window Size in seconds to try to sync REF and MAIN videos. i.e., if the video to sync
last 600 seconds, the sync look up will be done just within a subsample of syncWindow size.
By default, the syncWindow is applied to REF.
start --> start time in seconds from the begining of the video where the syncWindow begin.
By default, the start time applies to REF.
reverse --> If this option is set to TRUE. It is considered that MAIN is delayed in comparition to REF: 'syncWindow' and 'start' variables will be
applied to MAIN.
By default, it is supposed that the REF video is delayed in comparition with the MAIN video.
It returns the offset value to get REF and MAIN synced and the PSNR computed.
"""
print("\n\n=======================================", flush=True)
print("Syncing... Computing PSNR values... ", flush=True)
print("=======================================", flush=True)
print("Distorted:", self.main.videoSrc, "@", round(getFrameRate(
self.main.streamInfo['r_frame_rate']), 5), "fps", "|", self.main.streamInfo['width'], self.main.streamInfo['height'], flush=True)
print("Reference:", self.ref.videoSrc, "@", round(getFrameRate(
self.ref.streamInfo['r_frame_rate']), 5), "fps", "|", self.ref.streamInfo['width'], self.ref.streamInfo['height'], flush=True)
print("=======================================", flush=True)
print("offset(s)", "\t\t", "psnr[dB]", flush=True)
if reverse:
self.ffmpegQos.invertSrcs()
fps = getFrameRate(self.ref.streamInfo['r_frame_rate'])
frameDuration = 1/fps
startFrame = int(round(start/frameDuration))
framesInSyncWindow = int(round(syncWindow/frameDuration))
psnr = {'value': [], 'time': []}
for i in range(0, framesInSyncWindow):
offset = (startFrame + i) * frameDuration
self.ffmpegQos.main.clearFilters()
self.ffmpegQos.ref.clearFilters()
self.ffmpegQos.ref.setTrimFilter(offset, 0.5)
self.ffmpegQos.main.setTrimFilter(0, 0.5)
self._autoScale()
if self.manual_fps == 0:
self._autoDeinterlace()
else:
self._forceFps()
psnr['value'].append(self.ffmpegQos.getPsnr())
psnr['time'].append(offset)
print(psnr['time'][i], "\t", psnr['value'][i], flush=True)
maxPsnr = max(psnr['value'])
index = psnr['value'].index(maxPsnr)
offset = psnr['time'][index]
"""
The reverse variable/flag indicates if the offset (for time syncing ) was applied over the MAIN or over the REF.
It is FALSE if it was applied over REF (default) and TRUE if it was applied over the MAIN.
If it is TRUE, it means that REF and MAIN where "interchanged" (REF -> MAIN, MAIN -> REF) to compute the PSNR for sync. Once the PSNR is
computed, it is requiered to come back to the original MAIN/REF.
"""
if reverse:
self.ffmpegQos.invertSrcs()
offset = -1 * offset
self.offset = offset
return [self.offset, maxPsnr]
def setOffset(self, value=None):
"""
Apply Offset to trim Filter.
If offset > 0: Ref delayed compared to Main. Trimfilter cuts Ref
if offset < 0: Main delayed compared to Ref. Trimfilter cuts Main
"""
if value != None:
""" overrides the value in self.offset"""
self.offset = value
if self.offset > 0:
offset = self.offset
duration = min(self.main.duration, self.ref.duration-offset)
self.ffmpegQos.ref.setTrimFilter(offset, duration)
self.ffmpegQos.main.setTrimFilter(0, duration)
elif self.offset < 0:
offset = abs(self.offset)
duration = min(self.main.duration - offset, self.ref.duration)
self.ffmpegQos.main.setTrimFilter(offset, duration)
self.ffmpegQos.ref.setTrimFilter(0, duration)
def getVmaf(self, autoSync=False):
""" clean all filters first """
self.ffmpegQos.clearFilters()
self.ffmpegQos.main.clearFilters()
self.ffmpegQos.ref.clearFilters()
"""AutoScale according to vmaf model and deinterlace the source if needed """
self._autoScale()
if self.manual_fps == 0:
self._autoDeinterlace()
else:
self._forceFps()
"""Lookup for sync between Main and reference. Default: dissable
It is suggested to run syncOffset manually before getVmaf()
"""
if autoSync:
self.syncOffset()
"""Apply Offset filters, if offset =0 nothing happens """
self.setOffset()
self.features = f'name=psnr|name=cambi\\\\:full_ref=true\\\\:enc_width={self.main.streamInfo["width"]}\\\\:enc_height={self.main.streamInfo["height"]}\\\\:src_width={self.ref.streamInfo["width"]}\\\\:src_height={self.ref.streamInfo["height"]}'
print("\n\n=======================================", flush=True)
print("Computing VMAF... ", flush=True)
print("=======================================", flush=True)
print("Distorted:", self.main.videoSrc, "@", round(getFrameRate(
self.main.streamInfo['r_frame_rate']), 5), "fps", "|", self.main.streamInfo['width'], self.main.streamInfo['height'], flush=True)
print("Reference:", self.ref.videoSrc, "@", round(getFrameRate(
self.ref.streamInfo['r_frame_rate']), 5), "fps", "|", self.ref.streamInfo['width'], self.ref.streamInfo['height'], flush=True)
print("Offset:", self.offset, flush=True)
print("Model:", self.model, flush=True)
print("Phone:", self.phone, flush=True)
print("loglevel:", self.loglevel, flush=True)
print("subsample:", self.subsample, flush=True)
print("output_fmt:", self.output_fmt, flush=True)
print("=======================================", flush=True)
vmafProcess = self.ffmpegQos.getVmaf(model=self.model, subsample=self.subsample,
output_fmt=self.output_fmt, threads=self.threads, print_progress=self.print_progress, end_sync=self.end_sync, features=self.features, cambi_heatmap = self.cambi_heatmap)
return vmafProcess
def getFrameRate(r_frame_rate):
num, den = r_frame_rate.split('/')
return int(num)/int(den)