Last active
December 27, 2019 23:39
-
-
Save alastairmccormack/6517a8b94a52746af028 to your computer and use it in GitHub Desktop.
SCTE-35 Parser/Decoder in Python
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
''' | |
SCTE-35 Decoder | |
The MIT License (MIT) | |
Copyright (c) 2014 Al McCormack | |
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. | |
''' | |
import bitstring | |
from datetime import timedelta | |
class MixinDictRepr(object): | |
def __repr__(self, *args, **kwargs): | |
return repr(self.__dict__) | |
class SCTE35_ParseException(Exception): | |
pass | |
class SCTE35_SpliceInfoSectionException(Exception): | |
pass | |
class SCTE35_SpliceInfoSection(MixinDictRepr): | |
def __init__(self, table_id): | |
if table_id != 0xfc: | |
raise SCTE35_SpliceInfoSectionException("%d valid. Should be 0xfc" % | |
table_id) | |
class MPEG_Time(long): | |
""" Relative time represented by 90kHz clock """ | |
@property | |
def seconds(self): | |
return self / 90000.0 | |
@property | |
def timedelta(self): | |
return timedelta(seconds=self.seconds) | |
def __repr__(self, *args, **kwargs): | |
return "%d (seconds: %f, time: %s)" % (self, self.seconds, self.timedelta) | |
class SCTE35_SpliceInsert(MixinDictRepr): | |
class Splice_Time(MixinDictRepr): | |
def __init__(self): | |
self.time_specified_flag = None | |
self.pts_time = None | |
class Component(MixinDictRepr): | |
def __init__(self, tag): | |
self.tag = tag | |
self.splice_time = None | |
class BreakDuration(MixinDictRepr): | |
def __init__(self): | |
self.auto_return = None | |
self.duration = None | |
def __init__(self, splice_id): | |
self.splice_id = splice_id | |
self.components = [] | |
class SCTE35_SpliceDescriptor(MixinDictRepr): | |
pass | |
class SCTE35_Parser(object): | |
def parse(self, input_bytes): | |
input_bitarray = bitstring.BitString(bytes=input_bytes) | |
table_id = input_bitarray.read("uint:8") | |
splice_info_section = SCTE35_SpliceInfoSection(table_id) | |
splice_info_section.section_syntax_indicator = input_bitarray.read("bool") | |
splice_info_section.private = input_bitarray.read("bool") | |
#private | |
input_bitarray.pos += 2 | |
splice_info_section.section_length = input_bitarray.read("uint:12") | |
splice_info_section.protocol_version = input_bitarray.read("uint:8") | |
splice_info_section.encrypted_packet = input_bitarray.read("bool") | |
splice_info_section.encryption_algorithm = input_bitarray.read("uint:6") | |
splice_info_section.pts_adjustment = input_bitarray.read("uint:33") | |
splice_info_section.cw_index = input_bitarray.read("uint:8") | |
splice_info_section.tier = input_bitarray.read("hex:12") | |
splice_info_section.splice_command_length = input_bitarray.read("uint:12") | |
splice_info_section.splice_command_type = input_bitarray.read("uint:8") | |
# splice command type parsing | |
if splice_info_section.splice_command_type == 5: | |
splice_info_section.splice_command = self.__parse_splice_insert(input_bitarray) | |
else: | |
raise SCTE35_SpliceInfoSectionException("splice_command_type: %d not yet supported" % splice_info_section.splice_command_type) | |
splice_info_section.splice_descriptor_loop_length = input_bitarray.read("uint:16") | |
splice_info_section.splice_descriptors = None | |
if splice_info_section.splice_descriptor_loop_length > 0: | |
splice_info_section.splice_descriptors = \ | |
self.__parse_splice_descriptors(input_bitarray, | |
splice_info_section.splice_descriptor_loop_length) | |
return splice_info_section | |
def __parse_splice_time(self, bitarray): | |
splice_time = SCTE35_SpliceInsert.Splice_Time() | |
splice_time.time_specified_flag = bitarray.read("bool") | |
if splice_time.time_specified_flag: | |
# Reserved for 6 bits | |
bitarray.pos += 6 | |
splice_time.pts_time = MPEG_Time(bitarray.read("uint:33")) | |
else: | |
bitarray.pos += 7 | |
return splice_time | |
def __parse_break_duration(self, bitarray): | |
break_duration = SCTE35_SpliceInsert.BreakDuration() | |
break_duration.auto_return = bitarray.read("bool") | |
bitarray.pos += 6 | |
break_duration.duration = MPEG_Time(bitarray.read("uint:33")) | |
return break_duration | |
def __parse_splice_insert(self, bitarray): | |
splice_event_id = bitarray.read("uint:32") | |
ssi = SCTE35_SpliceInsert(splice_event_id) | |
ssi.splice_event_cancel_indicator = bitarray.read("bool") | |
bitarray.pos += 7 | |
if not ssi.splice_event_cancel_indicator: | |
ssi.out_of_network_indicator = bitarray.read("bool") | |
ssi.program_splice_flag = bitarray.read("bool") | |
ssi.duration_flag = bitarray.read("bool") | |
ssi.splice_immediate_flag = bitarray.read("bool") | |
# Next 4 bits are reserved | |
bitarray.pos += 4 | |
if ssi.program_splice_flag and not ssi.splice_immediate_flag: | |
ssi.splice_time = self.__parse_splice_time(bitarray) | |
if not ssi.program_splice_flag: | |
ssi.component_count = bitarray.read("uint:8") | |
for i in xrange(0, ssi.component_count): | |
component = SCTE35_SpliceInsert.Component(bitarray.read("uint:8")) | |
if ssi.splice_immediate_flag: | |
component.splice_time = self.__parse_splice_time(bitarray) | |
ssi.components.append(component) | |
if ssi.duration_flag: | |
ssi.break_duration = self.__parse_break_duration(bitarray) | |
ssi.unique_program_id = bitarray.read("uint:16") | |
ssi.avail_num = bitarray.read("uint:8") | |
ssi.avails_expected = bitarray.read("uint:8") | |
return ssi | |
def __parse_splice_descriptors(self, bitarray, length): | |
results = [] | |
while length > 6: | |
splice_desc = SCTE35_SpliceDescriptor(); | |
splice_desc.splice_descriptor_tag = bitarray.read("uint:8") | |
splice_desc.descriptor_length = bitarray.read("uint:8") | |
splice_desc.identifier = bitarray.read("uint:32") | |
length -= 6 | |
results.append( splice_desc ) | |
return results | |
if __name__ == "__main__": | |
import base64 | |
import argparse | |
import pprint | |
description = """ Parse SCTE-35 markers from Base64 Strings. | |
Example String: "/DAlAAAAAAAAAP/wFAUAAAABf+/+LRQrAP4BI9MIAAEBAQAAfxV6SQ==" """ | |
parser = argparse.ArgumentParser(description=description) | |
parser.add_argument('base64_scte35', metavar='SCTE35_Marker', | |
help='Base64 encoded SCTE-35 marker') | |
args = parser.parse_args() | |
myinput = base64.standard_b64decode(args.base64_scte35) | |
splice_info_section = SCTE35_Parser().parse(myinput) | |
print "Parsing Complete" | |
pprint.pprint(vars(splice_info_section)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for sharing the code. It saved me a couple of hours.
I think line 175 is not right. It shall be "if not ssi.splice_immediate_flag:"