forked from PyAV-Org/PyAV
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_encode.py
More file actions
410 lines (334 loc) · 14 KB
/
Copy pathtest_encode.py
File metadata and controls
410 lines (334 loc) · 14 KB
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
import io
import math
from fractions import Fraction
from typing import cast
from unittest import SkipTest
import numpy as np
import av
from av import AudioFrame, VideoFrame
from av.audio.stream import AudioStream
from av.video.stream import VideoStream
from .common import TestCase, fate_suite, has_pillow
WIDTH = 320
HEIGHT = 240
DURATION = 48
def write_rgb_rotate(output: av.container.OutputContainer) -> None:
if not has_pillow:
raise SkipTest("Don't have Pillow")
import PIL.Image as Image
output.metadata["title"] = "container"
output.metadata["key"] = "value"
stream = cast(VideoStream, output.add_stream("mpeg4", 24))
stream.width = WIDTH
stream.height = HEIGHT
stream.pix_fmt = "yuv420p"
for frame_i in range(DURATION):
frame = VideoFrame(WIDTH, HEIGHT, "rgb24")
image = Image.new(
"RGB",
(WIDTH, HEIGHT),
(
int(255 * (0.5 + 0.5 * math.sin(frame_i / DURATION * 2 * math.pi))),
int(
255
* (
0.5
+ 0.5
* math.sin(frame_i / DURATION * 2 * math.pi + 2 / 3 * math.pi)
)
),
int(
255
* (
0.5
+ 0.5
* math.sin(frame_i / DURATION * 2 * math.pi + 4 / 3 * math.pi)
)
),
),
)
frame.planes[0].update(image.tobytes())
for packet in stream.encode_lazy(frame):
output.mux(packet)
for packet in stream.encode_lazy(None):
output.mux(packet)
def assert_rgb_rotate(self, input_, is_dash=False):
# Now inspect it a little.
self.assertEqual(len(input_.streams), 1)
if is_dash:
# FFmpeg 4.2 added parsing of the programme information and it is named "Title"
if av.library_versions["libavformat"] >= (58, 28):
self.assertTrue(
input_.metadata.get("Title") == "container", input_.metadata
)
else:
self.assertEqual(input_.metadata.get("title"), "container", input_.metadata)
self.assertEqual(input_.metadata.get("key"), None)
stream = input_.streams[0]
if is_dash:
# The DASH format doesn't provide a duration for the stream
# and so the container duration (micro seconds) is checked instead
self.assertEqual(input_.duration, 2000000)
expected_average_rate = 24
expected_duration = None
expected_frames = 0
expected_id = 0
else:
if av.library_versions["libavformat"] < (58, 76):
# FFmpeg < 4.4
expected_average_rate = Fraction(1152, 47)
expected_duration = 24064
else:
# FFmpeg >= 4.4
expected_average_rate = 24
expected_duration = 24576
expected_frames = 48
expected_id = 1
# actual stream properties
self.assertIsInstance(stream, VideoStream)
self.assertEqual(stream.average_rate, expected_average_rate)
self.assertEqual(stream.base_rate, 24)
self.assertEqual(stream.duration, expected_duration)
self.assertEqual(stream.guessed_rate, 24)
self.assertEqual(stream.frames, expected_frames)
self.assertEqual(stream.id, expected_id)
self.assertEqual(stream.index, 0)
self.assertEqual(stream.profile, "Simple Profile")
self.assertEqual(stream.start_time, 0)
self.assertEqual(stream.time_base, Fraction(1, 12288))
self.assertEqual(stream.type, "video")
# codec context properties
self.assertEqual(stream.codec.name, "mpeg4")
self.assertEqual(stream.codec.long_name, "MPEG-4 part 2")
self.assertEqual(stream.format.name, "yuv420p")
self.assertEqual(stream.format.width, WIDTH)
self.assertEqual(stream.format.height, HEIGHT)
self.assertEqual(stream.ticks_per_frame, 1)
class TestBasicVideoEncoding(TestCase):
def test_default_options(self):
with av.open(self.sandboxed("output.mov"), "w") as output:
stream = output.add_stream("mpeg4")
self.assertIn(stream, output.streams.video)
self.assertEqual(stream.average_rate, Fraction(24, 1))
self.assertEqual(stream.time_base, None)
# codec context properties
self.assertEqual(stream.bit_rate, 1024000)
self.assertEqual(stream.format.height, 480)
self.assertEqual(stream.format.name, "yuv420p")
self.assertEqual(stream.format.width, 640)
self.assertEqual(stream.height, 480)
self.assertEqual(stream.pix_fmt, "yuv420p")
self.assertEqual(stream.ticks_per_frame, 1)
self.assertEqual(stream.width, 640)
def test_encoding(self):
path = self.sandboxed("rgb_rotate.mov")
with av.open(path, "w") as output:
write_rgb_rotate(output)
with av.open(path) as input:
assert_rgb_rotate(self, input)
def test_encoding_with_pts(self):
path = self.sandboxed("video_with_pts.mov")
with av.open(path, "w") as output:
stream = output.add_stream("h264", 24)
self.assertIn(stream, output.streams.video)
stream.width = WIDTH
stream.height = HEIGHT
stream.pix_fmt = "yuv420p"
for i in range(DURATION):
frame = VideoFrame(WIDTH, HEIGHT, "rgb24")
frame.pts = i * 2000
frame.time_base = Fraction(1, 48000)
for packet in stream.encode(frame):
self.assertEqual(packet.time_base, Fraction(1, 24))
output.mux(packet)
for packet in stream.encode(None):
self.assertEqual(packet.time_base, Fraction(1, 24))
output.mux(packet)
def test_encoding_with_unicode_filename(self):
path = self.sandboxed("¢∞§¶•ªº.mov")
with av.open(path, "w") as output:
write_rgb_rotate(output)
with av.open(path) as input:
assert_rgb_rotate(self, input)
class TestBasicAudioEncoding(TestCase):
def test_default_options(self):
with av.open(self.sandboxed("output.mov"), "w") as output:
stream = output.add_stream("mp2")
self.assertIn(stream, output.streams.audio)
self.assertEqual(stream.time_base, None)
# codec context properties
self.assertEqual(stream.bit_rate, 128000)
self.assertEqual(stream.format.name, "s16")
self.assertEqual(stream.sample_rate, 48000)
self.assertEqual(stream.ticks_per_frame, 1)
def test_transcode(self):
path = self.sandboxed("audio_transcode.mov")
with av.open(path, "w") as output:
output.metadata["title"] = "container"
output.metadata["key"] = "value"
sample_rate = 48000
channel_layout = "stereo"
channels = 2
sample_fmt = "s16"
stream = output.add_stream("mp2", sample_rate)
self.assertIn(stream, output.streams.audio)
ctx = stream.codec_context
ctx.time_base = sample_rate
ctx.sample_rate = sample_rate
ctx.format = sample_fmt
ctx.layout = channel_layout
ctx.channels = channels
with av.open(
fate_suite("audio-reference/chorusnoise_2ch_44kHz_s16.wav")
) as src:
for frame in src.decode(audio=0):
for packet in stream.encode(frame):
output.mux(packet)
for packet in stream.encode(None):
output.mux(packet)
with av.open(path) as container:
self.assertEqual(len(container.streams), 1)
self.assertEqual(
container.metadata.get("title"), "container", container.metadata
)
self.assertEqual(container.metadata.get("key"), None)
stream = container.streams[0]
self.assertIsInstance(stream, AudioStream)
# codec context properties
self.assertEqual(stream.channels, channels)
self.assertEqual(stream.format.name, "s16p")
self.assertEqual(stream.sample_rate, sample_rate)
class TestEncodeStreamSemantics(TestCase):
def test_stream_index(self):
with av.open(self.sandboxed("output.mov"), "w") as output:
vstream = output.add_stream("mpeg4", 24)
self.assertIn(vstream, output.streams.video)
vstream.pix_fmt = "yuv420p"
vstream.width = 320
vstream.height = 240
astream = output.add_stream("mp2", 48000)
self.assertIn(astream, output.streams.audio)
astream.channels = 2
astream.format = "s16"
self.assertEqual(vstream.index, 0)
self.assertEqual(astream.index, 1)
vframe = VideoFrame(320, 240, "yuv420p")
vpacket = vstream.encode(vframe)[0]
self.assertIs(vpacket.stream, vstream)
self.assertEqual(vpacket.stream_index, 0)
for i in range(10):
if astream.frame_size != 0:
frame_size = astream.frame_size
else:
# decoder didn't indicate constant frame size
frame_size = 1000
aframe = AudioFrame("s16", "stereo", samples=frame_size)
aframe.sample_rate = 48000
apackets = astream.encode(aframe)
if apackets:
apacket = apackets[0]
break
self.assertIs(apacket.stream, astream)
self.assertEqual(apacket.stream_index, 1)
def test_stream_audio_resample(self):
with av.open(self.sandboxed("output.mov"), "w") as output:
vstream = output.add_stream("mpeg4", 24)
vstream.pix_fmt = "yuv420p"
vstream.width = 320
vstream.height = 240
astream = output.add_stream("aac", sample_rate=8000, layout="mono")
frame_size = 512
pts_expected = [-1024, 0, 512, 1024, 1536, 2048, 2560]
pts = 0
for i in range(15):
aframe = AudioFrame("s16", "mono", samples=frame_size)
aframe.sample_rate = 8000
aframe.time_base = Fraction(1, 1000)
aframe.pts = pts
aframe.dts = pts
pts += 32
apackets = astream.encode(aframe)
if apackets:
apacket = apackets[0]
self.assertEqual(apacket.pts, pts_expected.pop(0))
self.assertEqual(apacket.time_base, Fraction(1, 8000))
apackets = astream.encode(None)
if apackets:
apacket = apackets[0]
self.assertEqual(apacket.pts, pts_expected.pop(0))
self.assertEqual(apacket.time_base, Fraction(1, 8000))
def test_set_id_and_time_base(self):
with av.open(self.sandboxed("output.mov"), "w") as output:
stream = output.add_stream("mp2")
self.assertIn(stream, output.streams.audio)
# set id
self.assertEqual(stream.id, 0)
stream.id = 1
self.assertEqual(stream.id, 1)
# set time_base
self.assertEqual(stream.time_base, None)
stream.time_base = Fraction(1, 48000)
self.assertEqual(stream.time_base, Fraction(1, 48000))
def encode_file_with_max_b_frames(max_b_frames):
"""
Create an encoded video file (or file-like object) with the given
maximum run of B frames.
max_b_frames: non-negative integer which is the maximum allowed run
of consecutive B frames.
Returns: a file-like object.
"""
# Create a video file that is entirely arbitrary, but with the passed
# max_b_frames parameter.
file = io.BytesIO()
container = av.open(file, mode="w", format="mp4")
stream = container.add_stream("h264", rate=30)
stream.width = 640
stream.height = 480
stream.pix_fmt = "yuv420p"
stream.codec_context.gop_size = 15
stream.codec_context.max_b_frames = max_b_frames
for i in range(50):
array = np.empty((stream.height, stream.width, 3), dtype=np.uint8)
# This appears to hit a complexity "sweet spot" that makes the codec
# want to use B frames.
array[:, :] = (i, 0, 255 - i)
frame = av.VideoFrame.from_ndarray(array, format="rgb24")
for packet in stream.encode(frame):
container.mux(packet)
for packet in stream.encode():
container.mux(packet)
container.close()
file.seek(0)
return file
def max_b_frame_run_in_file(file):
"""
Count the maximum run of B frames in a file (or file-like object).
file: the file or file-like object in which to count the maximum run
of B frames. The file should contain just one video stream.
Returns: non-negative integer which is the maximum B frame run length.
"""
container = av.open(file)
stream = container.streams.video[0]
max_b_frame_run = 0
b_frame_run = 0
for packet in container.demux(stream):
for frame in packet.decode():
if frame.pict_type == av.video.frame.PictureType.B:
b_frame_run += 1
else:
max_b_frame_run = max(max_b_frame_run, b_frame_run)
b_frame_run = 0
# Outside chance that the longest run was at the end of the file.
max_b_frame_run = max(max_b_frame_run, b_frame_run)
container.close()
return max_b_frame_run
class TestMaxBFrameEncoding(TestCase):
def test_max_b_frames(self):
"""
Test that we never get longer runs of B frames than we asked for with
the max_b_frames property.
"""
for max_b_frames in range(4):
file = encode_file_with_max_b_frames(max_b_frames)
actual_max_b_frames = max_b_frame_run_in_file(file)
self.assertTrue(actual_max_b_frames <= max_b_frames)