I am attempting to add an EIT section to my coonfiguration and it seems to be satisfied, but gives me this error upon running:
Code:
File "/usr/lib/python2.7/dist-packages/dvbobjects/PSI/ATSC_EIT.py", line 66, in pack
title_text_bytes = self.title_text.pack()
AttributeError: 'str' object has no attribute 'pack'
The EIT section in my configuration looks like this:
Code:
eit = event_information_section(
service_id = 0x0030,
source_id = 0x1,
transport_stream_id = 0x0270,
original_network_id = 0x0030,
event_loop = [
event_loop_item(
event_id = 1,
duration_seconds = 0x00,
running_status = 4,
free_CA_mode = 0,
num_events_in_section = 3,
ETM_location = 0,
title_text = "TEST",
descriptor_loop = [],
),
],
version_number = 1,
section_number = 0,
last_section_number = 1,
)
Also, how do I get Extended Text Descriptions in here? The ATSC EIT Implmenetation in Opencaster seems strange.
Any help with this would be very apprechiated.
