* Cue.decode() now called when you instantiate an instance of cue and pass in data
* data can be base64, bytes,dict ,hex, int,json,xml, or xmlbin
js
Python 3.9.16 (7.3.11+dfsg-2+deb12u2, May 20 2024, 22:08:06)
[PyPy 7.3.11 with GCC 12.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>>> from scte35 import Cue
>>>> data = '/DAgAAAAAAAAAP/wDwUAAAABf0/+AKTLgAABAAAAAKENyC4='
>>>> cue=Cue(data)
>>>> cue.show()
{
"info_section": {
"table_id": "0xfc",
"section_syntax_indicator": false,
"private": false,
"sap_type": "0x03",
"sap_details": "No Sap Type",
"section_length": 32,
"protocol_version": 0,
"encrypted_packet": false,
"encryption_algorithm": 0,
"pts_adjustment": 0.0,
"cw_index": "0x00",
"tier": "0x0fff",
"splice_command_length": 15,
"splice_command_type": 5,
"descriptor_loop_length": 0,
"crc": "0xa10dc82e"
},
"command": {
"command_length": 15,
"command_type": 5,
"name": "Splice Insert",
"time_specified_flag": true,
"pts_time": 120.0,
"splice_event_id": 1,
"splice_event_cancel_indicator": false,
"out_of_network_indicator": false,
"program_splice_flag": true,
"duration_flag": false,
"splice_immediate_flag": false,
"event_id_compliance_flag": true,
"unique_program_id": 1,
"avail_num": 0,
"avails_expected": 0
},
"descriptors": []
}
>>>>
**Full Changelog**: https://github.com/superkabuki/scte35/compare/v0.0.15...v0.0.17