-
Notifications
You must be signed in to change notification settings - Fork 434
Expand file tree
/
Copy pathstream.pyx
More file actions
271 lines (212 loc) · 7.26 KB
/
stream.pyx
File metadata and controls
271 lines (212 loc) · 7.26 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
cimport libav as lib
from enum import Flag
from av.error cimport err_check
from av.packet cimport Packet
from av.utils cimport (
avdict_to_dict,
avrational_to_fraction,
dict_to_avdict,
to_avrational,
)
class Disposition(Flag):
default = 1 << 0
dub = 1 << 1
original = 1 << 2
comment = 1 << 3
lyrics = 1 << 4
karaoke = 1 << 5
forced = 1 << 6
hearing_impaired = 1 << 7
visual_impaired = 1 << 8
clean_effects = 1 << 9
attached_pic = 1 << 10
timed_thumbnails = 1 << 11
non_diegetic = 1 << 12
captions = 1 << 16
descriptions = 1 << 17
metadata = 1 << 18
dependent = 1 << 19
still_image = 1 << 20
multilayer = 1 << 21
cdef object _cinit_bypass_sentinel = object()
cdef Stream wrap_stream(Container container, lib.AVStream *c_stream, CodecContext codec_context):
"""Build an av.Stream for an existing AVStream.
The AVStream MUST be fully constructed and ready for use before this is
called.
"""
# This better be the right one...
assert container.ptr.streams[c_stream.index] == c_stream
cdef Stream py_stream
if c_stream.codecpar.codec_type == lib.AVMEDIA_TYPE_VIDEO:
from av.video.stream import VideoStream
py_stream = VideoStream.__new__(VideoStream, _cinit_bypass_sentinel)
elif c_stream.codecpar.codec_type == lib.AVMEDIA_TYPE_AUDIO:
from av.audio.stream import AudioStream
py_stream = AudioStream.__new__(AudioStream, _cinit_bypass_sentinel)
elif c_stream.codecpar.codec_type == lib.AVMEDIA_TYPE_SUBTITLE:
from av.subtitles.stream import SubtitleStream
py_stream = SubtitleStream.__new__(SubtitleStream, _cinit_bypass_sentinel)
elif c_stream.codecpar.codec_type == lib.AVMEDIA_TYPE_ATTACHMENT:
from av.attachments.stream import AttachmentStream
py_stream = AttachmentStream.__new__(AttachmentStream, _cinit_bypass_sentinel)
elif c_stream.codecpar.codec_type == lib.AVMEDIA_TYPE_DATA:
from av.data.stream import DataStream
py_stream = DataStream.__new__(DataStream, _cinit_bypass_sentinel)
else:
py_stream = Stream.__new__(Stream, _cinit_bypass_sentinel)
py_stream._init(container, c_stream, codec_context)
return py_stream
cdef class Stream:
"""
A single stream of audio, video or subtitles within a :class:`.Container`.
::
>>> fh = av.open(video_path)
>>> stream = fh.streams.video[0]
>>> stream
<av.VideoStream #0 h264, yuv420p 1280x720 at 0x...>
This encapsulates a :class:`.CodecContext`, located at :attr:`Stream.codec_context`.
Attribute access is passed through to that context when attributes are missing
on the stream itself. E.g. ``stream.options`` will be the options on the
context.
"""
def __cinit__(self, name):
if name is _cinit_bypass_sentinel:
return
raise RuntimeError("cannot manually instantiate Stream")
cdef _init(self, Container container, lib.AVStream *stream, CodecContext codec_context):
self.container = container
self.ptr = stream
self.codec_context = codec_context
if self.codec_context:
self.codec_context.stream_index = stream.index
self.metadata = avdict_to_dict(
stream.metadata,
encoding=self.container.metadata_encoding,
errors=self.container.metadata_errors,
)
def __repr__(self):
name = getattr(self, "name", None)
return (
f"<av.{self.__class__.__name__} #{self.index} {self.type or '<notype>'}/"
f"{name or '<nocodec>'} at 0x{id(self):x}>"
)
def __setattr__(self, name, value):
if name == "id":
self._set_id(value)
return
if name == "disposition":
self.ptr.disposition = value
return
# Convenience setter for codec context properties.
if self.codec_context is not None:
setattr(self.codec_context, name, value)
if name == "time_base":
self._set_time_base(value)
cdef _finalize_for_output(self):
dict_to_avdict(
&self.ptr.metadata, self.metadata,
encoding=self.container.metadata_encoding,
errors=self.container.metadata_errors,
)
if not self.ptr.time_base.num:
self.ptr.time_base = self.codec_context.ptr.time_base
# It prefers if we pass it parameters via this other object.
# Lets just copy what we want.
err_check(lib.avcodec_parameters_from_context(self.ptr.codecpar, self.codec_context.ptr))
@property
def id(self):
"""
The format-specific ID of this stream.
:type: int
"""
return self.ptr.id
cdef _set_id(self, value):
"""
Setter used by __setattr__ for the id property.
"""
if value is None:
self.ptr.id = 0
else:
self.ptr.id = value
@property
def profiles(self):
"""
List the available profiles for this stream.
:type: list[str]
"""
if self.codec_context:
return self.codec_context.profiles
else:
return []
@property
def profile(self):
"""
The profile of this stream.
:type: str
"""
if self.codec_context:
return self.codec_context.profile
else:
return None
@property
def index(self):
"""
The index of this stream in its :class:`.Container`.
:type: int
"""
return self.ptr.index
@property
def time_base(self):
"""
The unit of time (in fractional seconds) in which timestamps are expressed.
:type: :class:`~fractions.Fraction` or ``None``
"""
return avrational_to_fraction(&self.ptr.time_base)
cdef _set_time_base(self, value):
"""
Setter used by __setattr__ for the time_base property.
"""
to_avrational(value, &self.ptr.time_base)
@property
def start_time(self):
"""
The presentation timestamp in :attr:`time_base` units of the first
frame in this stream.
:type: :class:`int` or ``None``
"""
if self.ptr.start_time != lib.AV_NOPTS_VALUE:
return self.ptr.start_time
@property
def duration(self):
"""
The duration of this stream in :attr:`time_base` units.
:type: :class:`int` or ``None``
"""
if self.ptr.duration != lib.AV_NOPTS_VALUE:
return self.ptr.duration
@property
def frames(self):
"""
The number of frames this stream contains.
Returns ``0`` if it is not known.
:type: :class:`int`
"""
return self.ptr.nb_frames
@property
def language(self):
"""
The language of the stream.
:type: :class:`str` or ``None``
"""
return self.metadata.get("language")
@property
def disposition(self):
return Disposition(self.ptr.disposition)
@property
def type(self):
"""
The type of the stream.
Examples: ``'audio'``, ``'video'``, ``'subtitle'``.
:type: str
"""
return lib.av_get_media_type_string(self.ptr.codecpar.codec_type)