Tvheadend - Bug #2171 MP2 radio stations hickups

Size: px
Start display at page:

Download "Tvheadend - Bug #2171 MP2 radio stations hickups"

Transcription

1 Tvheadend - Bug #2171 MP2 radio stations hickups :14 - J H Status: Fixed Start date: Priority: Normal Due date: Assignee: % Done: 100% Category: Estimated time: 0.00 hour Target version: Found in version: ~g6fab551 Affected Versions: Description I've noticed hickups in the audio of certain radio stations when using the git version of Tvheadend. The stable version plays fine. It's only the Music Choice channels, audio stream is MP2 and my provider is Ziggo in The Netherlands. I'm using Sundtek tuners and I've already did some testing with the support engineer of Sundtek to rule out the tuners. Tvheadend log stays empty during playback, same for the playing software like XBMC, VLC etc. OS: Ubuntu LTS Tvheadend v ~g6fab551 I've added a recording of a Music Choice channel. You can hear 4 hickups. Associated revisions Revision 67938bc :20 - Jaroslav Kysela descrambler: implement proper TS queue flush before key change, fixes #2171 History # :21 - J H - File Stutter.ts added Added another maybe better example. # :51 - J H Now on build ~g286509b and still existing. Also noticed stuttering on an unencrypted channel. Could someone please tell me if there's any way to log this in tvheadend? Normal debugging log shows no errors during playback. # :32 - Jaroslav Kysela Could you provide the whole mux dump? Use the 'play' link in the mux tab to gather the whole infomation. But only if the contents is not crypted.. # :01 - J H I'm sorry but I don't have a FTA channel that's affected. I was wrong /9

2 It seems only some encrypted radio stations are wrong. I can provide you with a mux dump of one of those muxes if that is of any help? # :38 - J H Is there any other information I can give to solve this issue? # :33 - Jaroslav Kysela Could you grab the output stream from tvheadend using wireshark or tcpdump? Only the TCP audio stream.. It looks like a timing issue.. # :59 - J H - File stream-wireshark2.pcapng added Added wireshark file. Not sure if this is the format you're looking for. If you need something else please say so. # :39 - J H Did you spot a cause for this issue in the wireshark file? # :04 - J H Ziggo added a unencrypted Christmas Music Choice channel. Guess what... no stutter in playback. My best guess is there's something wrong with radio stations and encryption. Could someone please take a look at it again?version running now is ~g3579d04 # :05 - J H Didn't mean unencrypted but unencrypted # :40 - Jaroslav Kysela Just some notes: Trying to analyze Stutter.ts - it looks like a raw (passthrough) TS file from TVH. There are missing frames in the audio stream: A python script to analyze frame pts diffs: import sys fp = sys.stdin prev = None for l in fp.readlines(): if l.startswith('pkt_pts_time='): next = float(l[13:-1]) if prev: print "%.6f (diff %.6f)" % (next, next - prev) /9

3 prev = next Cmd line: ffprobe -show_frames ~/Download/Stutter.ts python a.py Result: (diff ) (diff ) (diff ) # gap missing frames (diff ) (diff ) # gap missing frame (diff ) (diff ) (diff ) (diff ) (diff ) (diff ) # gap missing frames (diff ) (diff ) # gap missing frame (diff ) (diff ) (diff ) (diff ) (diff ) (diff ) # gap missing frames (diff ) (diff ) # gap missing frame (diff ) (diff ) Note that the time difference between gaps is 25 seconds each (descrambling key change?). # :41 - Jaroslav Kysela Could you provide --trace descrambler,capmt,cwc? # :24 - J H - File tvheadend-debug.log added Here you go. What I noticed is that the stutter in audio lines up perfectly with the ECM message in the log. Hope this puts you on the right track! /9

4 # :48 - Jaroslav Kysela Could you do same test with this one-line addition? diff --git a/src/descrambler/descrambler.c b/src/descrambler/descrambler.c index d42683e..94f7b3b a/src/descrambler/descrambler.c ,6 descrambler_descramble ( service_t *t, sbuf_free(&dr->dr_buf); } ki = tsb[3]; + tvhtrace("descrambler", "ki = %02x", ki); if ((ki & 0x80)!= 0x00) { if (key_valid(dr, ki) == 0) { if (tvhlog_limit(&dr->dr_loglimit_key, 10)) # :31 - J H - File tvheadend-debug.log added Same problem, log added # :10 - Jaroslav Kysela Which CSA do you use? $ grep CSA.config.mk CONFIG_TVHCSA = yes CONFIG_DVBCSA = no # :39 - J H xbmc@mediacenter:~/tvheadend$ grep CSA.config.mk CONFIG_TVHCSA = yes CONFIG_DVBCSA = no # :05 - Jaroslav Kysela Another debug code: diff --git a/src/descrambler/descrambler.c b/src/descrambler/descrambler.c index d42683e..d838b1d a/src/descrambler/descrambler.c ,6 descrambler_descramble ( service_t *t, /9

5 lock_assert(&t->s_stream_mutex); + static int didx = 0; + tvhtrace("descrambler", "descramble ts packet %i (PID %i)", didx++, st->es_pid); + if (dr == NULL) return -1; count = failed = 0; diff --git a/src/input/mpegts/tsdemux.c b/src/input/mpegts/tsdemux.c index 2b4f7e0..d3016e a/src/input/mpegts/tsdemux.c ,6 ts_recv_packet2(mpegts_service_t *t, const uint8_t *tsb) elementary_stream_t *st; int pid = (tsb[1] & 0x1f) << 8 tsb[2]; + static int didx = 0; + tvhtrace("descrambler", "output ts packet %i PID %i", didx++, pid); + tvhlog_hexdump("descrambler", tsb, 188); + if((st = service_stream_find((service_t*)t, pid))!= NULL) ts_recv_packet0(t, st, tsb); } # :55 - J H - File tvheadend-debug.log added Log added, for example audio stutter at: - 16:47:34-16:47:54-16:48:14 And so on with 20 seconds interval # :21 - Jaroslav Kysela OK. No descrambled TS packets are lost. So, it appears that the packets are missing before they enter to the descrambler. Could you try simultaneous streaming the whole mux while the radio service is used, if it changes something? (Something like 'wget -O /dev/null <mux_play_url_from_the_mux_grid>'.) # :09 - J H Just tried, no changes /9

6 # :25 - Jaroslav Kysela I need to implement a way to insert the descrambling keys to the whole mux stream and also implement the re-play functionality, so I can do testing directly on my machine. It may take some time. # :41 - J H Ok, thanks very much! Please say when you need more info from me. # :25 - Jaroslav Kysela OK. Grab latest sources. Use --enable-tsdebug as the configure option. Then run tvheadend with "--tsdebug <directory>" arguments. Then run the test and you should see in directory two files. I need them for analyze what's going wrong. One file is raw input from the linuxdvb subsystem and the second file is almost same (tvh does some processing - no contents change) but with added descrambler keys. # :36 - J H - File 658MHz in Ziggo x7f6d1c009bc0-input.ts added - File 658MHz in Ziggo x7f6d1c009bc0-mux.ts added Resulted files are added. # :18 - Jaroslav Kysela Tried to re-play and guess what - no packets are lost, but I had to fix a little issue with the PCR extraction - v g for tsfile. I don't think that it's related for the live playback, but could you test the recent code? # :33 - J H - File 658MHz in Ziggo x16e5200-input.ts added - File 658MHz in Ziggo x16e5200-mux.ts added Issue not resolved as you already suspected, added the.ts files # :54 - Jaroslav Kysela Could you try this? diff --git a/src/descrambler/descrambler.c b/src/descrambler/descrambler.c index a15aa c9b a/src/descrambler/descrambler.c ,6 descrambler_keys ( th_descrambler_t *td, int type, if (tvhcsa_set_type(&dr->dr_csa, type) < 0) return; /9

7 + usleep(500000); + pthread_mutex_lock(&t->s_stream_mutex); LIST_FOREACH(td2, &t->s_descramblers, td_service_link) BTW: Also the second re-play was successful (no gaps in the output stream). # :04 - J H TVH crashes with that code added. Do you need a crashlog and where can I find it? # :26 - Jaroslav Kysela diff --git a/src/descrambler/cwc.c b/src/descrambler/cwc.c index bac4aa4..a36c8c a/src/descrambler/cwc.c ,7 forbid: es->es_keystate = ES_RESOLVED; es->es_resolved = 1; + pthread_mutex_unlock(&ct->cs_cwc->cwc_mutex); descrambler_keys((th_descrambler_t *)ct, DESCRAMBLER_DES, msg + 3, msg ); + pthread_mutex_lock(&ct->cs_cwc->cwc_mutex); } else { tvhlog(log_debug, "cwc", "Received ECM reply%s for service \"%s\" " diff --git a/src/descrambler/descrambler.c b/src/descrambler/descrambler.c index a15aa c9b a/src/descrambler/descrambler.c ,6 descrambler_keys ( th_descrambler_t *td, int type, if (tvhcsa_set_type(&dr->dr_csa, type) < 0) return; + usleep(500000); + pthread_mutex_lock(&t->s_stream_mutex); LIST_FOREACH(td2, &t->s_descramblers, td_service_link) # :21 - J H I'm very happy to tell you this seemed to fix the issue. Tested multiple radio channels en playback seems fine again. Thanks very much for your time and effort! /9

8 # :58 - Jaroslav Kysela It's not a fix, but just a debug code. It looks like a timing issue (wrong key is used for decoding some frames for a short period). The patch just delays the new key processing by 500 ms. # :24 - J H Ok I understand. If there's something to test please say so. # :30 - Jaroslav Kysela I found the real issue. Basically, the key was changed too quickly and tvh buffers some TS packets for the DES decoder. These buffered TS packets must be flushed (processed) before key changes, otherwise they are decoded with the new key which is invalid for them (thus some pieces of the audio stream weren't parsed properly). I'm working on a fix. I only wonder, why we haven't noted before, because this bug is really serious. # :35 - J H I made a forum post here asking if anybody else was having this issue, no replies. I also asked on tweakers.net in the tvheadend topic if anyone else noticed... no one. Guess I'm the only one left here listening to radio. # :20 - Jaroslav Kysela - Status changed from New to Fixed - % Done changed from 0 to 100 Applied in changeset commit:tvheadend 67938bc9d9774dff7b99e4e134d5c38bde55cce9. # :21 - Jaroslav Kysela The above commit contains the proper fix for your issue. Could you test? # :37 - J H Tested and confirmed to fix the issue. Thanks again! # :59 - Jaroslav Kysela J H wrote: I made a forum post here asking if anybody else was having this issue, no replies. I also asked on tweakers.net in the tvheadend topic if anyone else noticed... no one. Guess I'm the only one left here listening to radio. I think that the problem was that most of radio stations on SAT are not encrypted (at least it's true for my country and I think also for most of European countries) /9

9 # :43 - Jaroslav Kysela - File deleted (tvheadend-debug.log) # :43 - Jaroslav Kysela - File deleted (658MHz in Ziggo x7f6d1c009bc0-mux.ts) # :43 - Jaroslav Kysela - File deleted (stream-wireshark2.pcapng) # :43 - Jaroslav Kysela - File deleted (Stutter.ts) # :43 - Jaroslav Kysela - File deleted (recording.ts) # :43 - Jaroslav Kysela - File deleted (658MHz in Ziggo x7f6d1c009bc0-input.ts) # :43 - Jaroslav Kysela - File deleted (658MHz in Ziggo x16e5200-mux.ts) # :43 - Jaroslav Kysela - File deleted (658MHz in Ziggo x16e5200-input.ts) Files tvheadend-debug.log 22 KB J H tvheadend-debug.log 1.04 MB J H /9

Tvheadend - Bug #2222 Kodi: Sound but no picture

Tvheadend - Bug #2222 Kodi: Sound but no picture Tvheadend - Bug #2222 Kodi: Sound but no picture 2014-08-13 17:04 - Randy M Status: Fixed Start date: 2014-08-13 Priority: Normal Due date: Assignee: % Done: 0% Category: General Estimated time: 0.00 hour

More information

Tvheadend - Bug #2470 CPU usage slowly increasing to 100% while watching

Tvheadend - Bug #2470 CPU usage slowly increasing to 100% while watching Tvheadend - Bug #2470 CPU usage slowly increasing to 100% while watching 2014-11-11 16:15 - Milan vn Status: Fixed Start date: 2014-11-11 Priority: Normal Due date: Assignee: % Done: 100% Category: General

More information

Tvheadend - Bug #3134 configuration save/load - improve throughput - save space (was: big starting time)

Tvheadend - Bug #3134 configuration save/load - improve throughput - save space (was: big starting time) Tvheadend - Bug #3134 configuration save/load - improve throughput - save space (was: big starting time) 2015-10-06 12:45 - C vh Status: New Start date: 2015-10-06 Priority: Normal Due date: Assignee:

More information

Tvheadend - Bug #2580 services get disabled when "missing in PAT"

Tvheadend - Bug #2580 services get disabled when missing in PAT Tvheadend - Bug #2580 services get disabled when "missing in PAT" 2014-12-31 10:03 - Rob vh Status: Fixed Start date: 2014-12-31 Priority: Normal Due date: Assignee: % Done: 0% Category: DVB Estimated

More information

Tvheadend - Bug #3071 Incompatible sat2ip device?

Tvheadend - Bug #3071 Incompatible sat2ip device? Tvheadend - Bug #3071 Incompatible sat2ip device? 2015-09-08 19:10 - danny skjodt Status: New Start date: 2015-09-08 Priority: Normal Due date: Assignee: % Done: 0% Category: SAT>IP Estimated time: 0.00

More information

Tvheadend - Bug #1295 Record fail: "Waiting for Stream". Debug output says "GracePeriod Expired"

Tvheadend - Bug #1295 Record fail: Waiting for Stream. Debug output says GracePeriod Expired Tvheadend - Bug #1295 Record fail: "Waiting for Stream". Debug output says "GracePeriod Expired" 2012-10-03 18:15 - Guillaume B Status: Rejected Start date: 2012-10-03 Priority: Normal Due date: Assignee:

More information

Wetek OpenELEC TVHeadend Freesat Bouquet and XMLTV data

Wetek OpenELEC TVHeadend Freesat Bouquet and XMLTV data Wetek OpenELEC TVHeadend Freesat Bouquet and XMLTV data Install TVHeadend Go to System, Settings, Add-ons Select Install from Repository, OpenELEC Mediacenter OS Add-ons, Add-on Repository, OpenELEC Add-ons

More information

Tvheadend - Feature #2056 Tvheadend: Add support for CI+ Cams

Tvheadend - Feature #2056 Tvheadend: Add support for CI+ Cams Tvheadend - Feature #2056 Tvheadend: Add support for CI+ Cams 2014-04-13 19:52 - Raymond Paulsen Status: New Start date: 2017-01-03 Priority: Normal Due date: Assignee: % Done: 100% Category: Descrambling

More information

ELEC 691X/498X Broadcast Signal Transmission Winter 2018

ELEC 691X/498X Broadcast Signal Transmission Winter 2018 ELEC 691X/498X Broadcast Signal Transmission Winter 2018 Instructor: DR. Reza Soleymani, Office: EV 5.125, Telephone: 848 2424 ext.: 4103. Office Hours: Wednesday, Thursday, 14:00 15:00 Slide 1 In this

More information

Configuring the Transport Stream Information

Configuring the Transport Stream Information This section describes how to set up and configure the transport stream outputs in the D9800 Network Transport Receiver. Transport Stream Outputs, page 1 Configuring the ASI or MPEGoIP Output General Settings,

More information

Digital television The DVB transport stream

Digital television The DVB transport stream Lecture 4 Digital television The DVB transport stream The need for a general transport stream DVB overall stream structure The parts of the stream Transport Stream (TS) Packetized Elementary Stream (PES)

More information

Mobile DTV Viewer. User Manual. Mobile DTV ATSC-M/H DVB-H 1Seg. Digital TV ATSC DVB-T, DVB-T2 ISDB-T V 4. decontis GmbH Sachsenstr.

Mobile DTV Viewer. User Manual. Mobile DTV ATSC-M/H DVB-H 1Seg. Digital TV ATSC DVB-T, DVB-T2 ISDB-T V 4. decontis GmbH Sachsenstr. Mobile DTV ATSC-M/H DVB-H 1Seg Digital TV ATSC DVB-T, DVB-T2 ISDB-T V 4 decontis GmbH Sachsenstr. 8 02708 Löbau Germany +49 3585 862915 +49 3585 415629 www.com dvbsam@com 1 Introduction... 5 2 System Requirements...

More information

LV 58SER04 MPEG DECODER INSTRUCTION MANUAL USO RESTRITO

LV 58SER04 MPEG DECODER INSTRUCTION MANUAL USO RESTRITO LV 58SER04 MPEG DECODER INSTRUCTION MANUAL TABLE OF CONTENTS 1. INTRODUCTION... 1 1.1 Maximum Allowable Input Voltage... 1 1.2 Trademark Acknowledgments... 1 1.3 Notations Used in This Manual... 1 2. SPECIFICATIONS...

More information

Jynxbox How2 for V1, V2, V3 Pg 1

Jynxbox How2 for V1, V2, V3 Pg 1 Jynxbox How2 for V1, V2, V3 Pg 1 Where to start Get the latest bin file that works. This may require some work but as of this writing JX_NA_Firmware_v233_dual.bin works best for V2. JX_NA_Firmware_v237_dual.bin

More information

Research & Development. White Paper WHP 318. Live subtitles re-timing. proof of concept BRITISH BROADCASTING CORPORATION.

Research & Development. White Paper WHP 318. Live subtitles re-timing. proof of concept BRITISH BROADCASTING CORPORATION. Research & Development White Paper WHP 318 April 2016 Live subtitles re-timing proof of concept Trevor Ware (BBC) Matt Simpson (Ericsson) BRITISH BROADCASTING CORPORATION White Paper WHP 318 Live subtitles

More information

TBS6909 User Guide. In order to use this item correctly, please read this user manual carefully at the beginning.

TBS6909 User Guide. In order to use this item correctly, please read this user manual carefully at the beginning. TBS6909 User Guide Dear Customers, Thank you so much for using TBS products. TBS6909 is a PCI Express TV tuner card that supports multiple digital TV standards, including DVB-S2/S, which makes a switchover

More information

An introduction to MPEG transport streams. all you should know before using TSDuck

An introduction to MPEG transport streams. all you should know before using TSDuck An introduction to MPEG transport streams all you should know before using TSDuck Agenda Transport streams packets, sections, tables, PES, demux DVB SimulCrypt architecture, synchronization, ECM, EMM,

More information

Release Notes for GT42 Universal descrambler Module

Release Notes for GT42 Universal descrambler Module GT42W: SW 3.0.2 2016-11-28, JÅ Release Notes for GT42 Universal descrambler Module Content 1 Release Notes for SW 3.0.2 (GT01W GT11 SW 3.1)... 2 1.1 About this document... 2 1.2 About this release... 2

More information

HDC DVB-C Headend Transmodulator with Satellite and IP Stream Input

HDC DVB-C Headend Transmodulator with Satellite and IP Stream Input DVB-C Headend Transmodulator with Satellite and IP Stream Input 4 Channel DVB-C (QAM) Headend System 12 DVB-S/S2 tuner inputs for 12 FTA satellite transponders 128 IPTV inputs (UDP, RTP, MPTS & SPTS) 4

More information

My XDS Receiver- Affiliate Scheduler

My XDS Receiver- Affiliate Scheduler My XDS Receiver- Affiliate Scheduler The XDS distribution system represents a marked departure from the architecture and feature set of previous generations of satellite receivers. Unlike its predecessors,

More information

Telephone Phrasals C.O C.O. 2 H.O (wait) 5 S.U (talk louder) 3 H.U (replace receiver) 1 P.T (connect/ transfer) 6 P.

Telephone Phrasals C.O C.O. 2 H.O (wait) 5 S.U (talk louder) 3 H.U (replace receiver) 1 P.T (connect/ transfer) 6 P. Telephone Phrasals Find the phrasal verb that matches the synonym: E.G. P.T = put through = connect/ transfer 1 P.T (connect/ transfer) 6 P.U (lift receiver) 11 G.A (start!) 16 T.D (write message) 21 R.B

More information

My XDS Receiver- Affiliate Scheduler

My XDS Receiver- Affiliate Scheduler My XDS Receiver- Affiliate Scheduler The XDS distribution system represents a marked departure from the architecture and feature set of previous generations of satellite receivers. Unlike its predecessors,

More information

C Module Description. IQMDMO MPEG-2 Decoder with MOLE Output

C Module Description. IQMDMO MPEG-2 Decoder with MOLE Output IQMDMO MPEG-2 Decoder with MOLE Output C Module Description The IQMDMO is a full broadcast quality MPEG-2 decoder with MOLE output. It supports multistandard 4:2:2 and 4:2:0 video decoding (up to MP@ML

More information

TV4U QUAD DVB-S2 to DVB-C TRANSMODULATOR

TV4U QUAD DVB-S2 to DVB-C TRANSMODULATOR INSTRUCTION MANUAL Features of the new DVB-C transmodulators line Through the use of the FPGA technology the transmodulators provides the highest performance at the lowest price. Four carriers are formed

More information

Chapter 1. Getting started with your XBMC player

Chapter 1. Getting started with your XBMC player Chapter 1. Getting started with your XBMC player 1.1 Requirements - A TV with an HDMI connection, for optimum results a Full HD TV. Not essential but nevertheless desirable, audio equipment, for optimum

More information

Luminato SNMP Monitoring Guide

Luminato SNMP Monitoring Guide 26-Jan-11 1(24) Luminato SNMP Monitoring Guide 26-Jan-11 2(24) TABLE OF CONTENT 1. General... 3 2. List of supported MIBs... 7 3. SNMP Setup... 9 3.1. Download MIBs... 9 3.2. Communities... 10 3.3. Trap

More information

Teletext Inserter Firmware. User s Manual. Contents

Teletext Inserter Firmware. User s Manual. Contents Teletext Inserter Firmware User s Manual Contents 0 Definition 3 1 Frontpanel 3 1.1 Status Screen.............. 3 1.2 Configuration Menu........... 4 2 Controlling the Teletext Inserter via RS232 4 2.1

More information

IxStream Headend. Quick Guide - Begin working with the IxStream headend. IX-Streamer, rev 1.1

IxStream Headend. Quick Guide - Begin working with the IxStream headend. IX-Streamer, rev 1.1 IxStream Headend Quick Guide - Begin working with the IxStream headend IX-Streamer, rev 1.1 Introduction... 3 Example setup... 3 Access the headend... 4 Important Concepts... 5 Push Config... 5 EMM...

More information

RADview-PC/TDM. Network Management System for TDM Applications Megaplex RAD Data Communications Publication No.

RADview-PC/TDM. Network Management System for TDM Applications Megaplex RAD Data Communications Publication No. RADview-PC/TDM Network Management System for TDM Applications Megaplex-2200 1994 2001 RAD Data Communications Publication No. 351-241-12/01 Contents Megaplex-2200 Edit Configuration Operations 1. Connecting

More information

DVB-S. User s manual

DVB-S. User s manual DVB-S User s manual DVB-S Introduction 1.1 product Introduction DVB-S can implement IP data decoding and MPEG-2 A/V decoding. DVB-S can be widely used in software download, fast accessing internet, distance

More information

DATV-Express Users Guide. (based on DATV-Express software build v1.09) Draft 16

DATV-Express Users Guide. (based on DATV-Express software build v1.09) Draft 16 DATV-Express Users Guide (based on DATV-Express software build v1.09) Draft 16 1 Table of Contents 1.0 Prepare Disk Drive on PC... 4 1.1 Just reformat and devote the entire single drive for Ubuntu... 4

More information

Installing a Turntable and Operating it Under AI Control

Installing a Turntable and Operating it Under AI Control Installing a Turntable and Operating it Under AI Control Turntables can be found on many railroads, from the smallest to the largest, and their ability to turn locomotives in a relatively small space makes

More information

Matrox PowerStream Plus

Matrox PowerStream Plus Matrox PowerStream Plus User Guide 20246-301-0200 2017.07.04 Contents 1 About this user guide... 5 1.1 Using this guide... 5 1.2 More information... 5 2 Matrox PowerStream Plus software... 6 2.1 Before

More information

HD-1603 Single Input MPEG-4 DVB-T HD Encoder/Modulator User Guide and Install Manual

HD-1603 Single Input MPEG-4 DVB-T HD Encoder/Modulator User Guide and Install Manual ZyCastR digi-mod HD Range digi-mod HD-1603 www.digi-modbyzycast.com HD-1603 Single Input MPEG-4 DVB-T HD Encoder/Modulator User Guide and Install Manual Table of Contents www.digi-modbyzycast.com Safety

More information

User guide. IP output module - Art. No A

User guide. IP output module - Art. No A User guide IP output module - Art. No. 492072 891080A GB Contents Contents Disposal... 3 Box content... 3 IP output module... 3 Labels... 4 Installation of IP modules... 5 Installation of extender boards...

More information

HV-122-DCA DVB-T 2-Way Diversity Receiver Box Quick Installation Guide

HV-122-DCA DVB-T 2-Way Diversity Receiver Box Quick Installation Guide HV-122-DCA DVB-T 2-Way Diversity Receiver Box Quick Installation Guide PACKAGE CONTENTS 4 FRONT PANEL VIEW 4 BACK PANEL VIEW 4 BOARD VIEW 5 IR REMOTE CONTROLLER-TYPE A 6 FILL BATTERY TO IR CONTROLLERS:

More information

OPERATIONAL GUIDELINES FOR DIGITAL SATELLITE BROADCASTING. ARIB TR-B15 Version 4.6

OPERATIONAL GUIDELINES FOR DIGITAL SATELLITE BROADCASTING. ARIB TR-B15 Version 4.6 ENGLISH TRANSLATION OPERATIONAL GUIDELINES FOR DIGITAL SATELLITE BROADCASTING ARIB TECHNICAL REPORT ARIB TR-B15 Version 4.6 (Fascicle 3) Established on October 26th, 1999 Revised on March 29th, 2000 Revised

More information

Introduction. Packet Loss Recovery for Streaming Video. Introduction (2) Outline. Problem Description. Model (Outline)

Introduction. Packet Loss Recovery for Streaming Video. Introduction (2) Outline. Problem Description. Model (Outline) Packet Loss Recovery for Streaming Video N. Feamster and H. Balakrishnan MIT In Workshop on Packet Video (PV) Pittsburg, April 2002 Introduction (1) Streaming is growing Commercial streaming successful

More information

User manual. QAM output module. QAM output module Version F Date 08/2016 EN

User manual. QAM output module. QAM output module Version F Date 08/2016 EN QAM output module Model Item no. QAM output module 492055 492056 Version F Date 08/2016 EN Attention! / Achtung! / Consignes de sécurité! EN Failure to comply with the specified precautionary measures

More information

MCS PerfectMatch v6 Log Sample1.rtf Sep. 23, 2009

MCS PerfectMatch v6 Log Sample1.rtf Sep. 23, 2009 MCS PerfectMatch v6 Log Sample1.rtf Sep. 23, 2009 MCS Perfect Match Integrity System Many industries including the banking, medical, pharmaceutical and the government have been demanding a higher level

More information

CompactMax-2 DVB-S/S2 TO DVB-T2 TRANSMODULATOR - 0 MI2100 -

CompactMax-2 DVB-S/S2 TO DVB-T2 TRANSMODULATOR - 0 MI2100 - CompactMax-2 DVB-S/S2 TO DVB-T2 TRANSMODULATOR - 0 MI2100 - SAFETY NOTES Read the user s manual before using the equipment, mainly "SAFETY RULES" paragraph. The symbol on the equipment means "SEE USER

More information

ENGINEERING COMMITTEE Digital Video Subcommittee SCTE

ENGINEERING COMMITTEE Digital Video Subcommittee SCTE ENGINEERING COMMITTEE Digital Video Subcommittee SCTE 138 2009 STREAM CONDITIONING FOR SWITCHING OF ADDRESSABLE CONTENT IN DIGITAL TELEVISION RECEIVERS NOTICE The Society of Cable Telecommunications Engineers

More information

RS232 Bridge Firmware. User s Manual. Contents. 0 Definition 4

RS232 Bridge Firmware. User s Manual. Contents. 0 Definition 4 RS232 Bridge Firmware User s Manual Contents 0 Definition 4 1 Frontpanel 4 1.1 Status Screen.............. 4 1.2 Configuration Menu........... 5 2 Controlling the RS232 Bridge via the RS232 Configuration

More information

Operation and Installation Guide

Operation and Installation Guide Operation and Installation Guide HDS2800 Series Encoder Modulator High Definition (HD) Digital COFDM MPEG2 and H.264 Modulator with IP Multicast. 19 Rack Mount Revision 4.0 Firmware version Released File

More information

ATSC vs NTSC Spectrum. ATSC 8VSB Data Framing

ATSC vs NTSC Spectrum. ATSC 8VSB Data Framing ATSC vs NTSC Spectrum ATSC 8VSB Data Framing 22 ATSC 8VSB Data Segment ATSC 8VSB Data Field 23 ATSC 8VSB (AM) Modulated Baseband ATSC 8VSB Pre-Filtered Spectrum 24 ATSC 8VSB Nyquist Filtered Spectrum ATSC

More information

OpenTechnologies. User guide

OpenTechnologies. User guide OpenTechnologies my server 3DVBT User guide 1 Quick start... 2 1.1 Features... 2 1.2 Requirements... 2 1.3 Package content... 2 1.4 TV Server configuration... 3 1.5 Watching TV... 6 1.6 Precautions...

More information

Digital Tuner Streamer

Digital Tuner Streamer Digital Tuner Streamer This Manual Apply to the MTRX 4/8 Tuner To IPTV Systems On 8 Tuners Systems, The inputs are all assigned to the 8 Tuners Only and no asi Web-NMS Version: 1.03 Software: 1.00 Hardware:

More information

Television on IP Networks. BNS-200 (Ref. 5105) Double A/V IP Streamer. Configuration and Settings. User Manual

Television on IP Networks. BNS-200 (Ref. 5105) Double A/V IP Streamer. Configuration and Settings. User Manual Television on IP Networks BNS-200 (Ref. 5105) Double A/V IP Streamer Configuration and Settings User Manual EN Configuration and Setting of the BNS-200 Streamer Module User Manual November 2008 Revision

More information

Figure 1: V 713 CI plug-in card

Figure 1: V 713 CI plug-in card Version 04-2013A Device description Device description The delivery consists of the following parts: V 713 CI and X-DVB-CT2/PAL duo CI plug-in cards 2 connection cables with F connectors, 450 mm & F socket-f

More information

# Project Tracker Status Priority Subject Updated Target version /12

# Project Tracker Status Priority Subject Updated Target version /12 Issues # Project Tracker Status Priority Subject Updated Target 5141 Tvheadend Bug New Normal Connection lost 2018-06-27 15:41 5140 Tvheadend Bug New Normal TVHeadend not recording 2018-06-25 15:24 5139

More information

Release Notes for GT41 IP Processing Module

Release Notes for GT41 IP Processing Module GT41: SW 3.2 2017-04-12, JÅ Release Notes for GT41 IP Processing Module Content 1 Release Notes for SW 3.2... 2 1.1 About this document... 2 1.2 About this release... 2 1.3 New Features... 2 1.4 Improvements

More information

2) }25 2 O TUNE IF. CHANNEL, TS i AUDIO

2) }25 2 O TUNE IF. CHANNEL, TS i AUDIO US 20050160453A1 (19) United States (12) Patent Application Publication (10) Pub. N0.: US 2005/0160453 A1 Kim (43) Pub. Date: (54) APPARATUS TO CHANGE A CHANNEL (52) US. Cl...... 725/39; 725/38; 725/120;

More information

Avigilon View Software Release Notes

Avigilon View Software Release Notes Version 4.6.5 System Version 4.6.5 includes the following components: Avigilon VIEW Version 4.6.5 R-Series Version 4.6.5 Rialto Version 4.6.5 ICVR-HD Version 3.7.3 ICVR-SD Version 2.6.3 System Requirements

More information

EXOSTIV TM. Frédéric Leens, CEO

EXOSTIV TM. Frédéric Leens, CEO EXOSTIV TM Frédéric Leens, CEO A simple case: a video processing platform Headers & controls per frame : 1.024 bits 2.048 pixels 1.024 lines Pixels per frame: 2 21 Pixel encoding : 36 bit Frame rate: 24

More information

DUOLABS Spa. Conditional Access Module Hardware Brief. CA Module User Guide V0.2

DUOLABS Spa. Conditional Access Module Hardware Brief. CA Module User Guide V0.2 Conditional Access Module Hardware Brief CA Module User Guide V0.2 Index Conditional Access Module... 1 CA Module User Guide... 1 Revision history... Errore. Il segnalibro non è definito. Index... 1 Reference...

More information

DP Tuner 80 Remote Control Software User Manual. Version:08 Issue Date:May 10, 2018

DP Tuner 80 Remote Control Software User Manual. Version:08 Issue Date:May 10, 2018 DP Tuner 80 Remote Control Software User Manual Version:08 Issue Date:May 10, 2018 Copyright Information Copyrights Lumens Digital Optics Inc. All rights reserved. Lumens is a registered trademark of Lumens

More information

NOTICE. (Formulated under the cognizance of the CTA R4.8 DTV Interface Subcommittee.)

NOTICE. (Formulated under the cognizance of the CTA R4.8 DTV Interface Subcommittee.) ANSI/CTA Standard Service Selection Information for Digital Storage Media Interoperability ANSI/CTA-775.2-A R-2013 (Formerly ANSI/ R-2013) August 2008 NOTICE Consumer Technology Association (CTA) Standards,

More information

Amb-OS Media, LLC AMR-100

Amb-OS Media, LLC AMR-100 Amb-OS Media, LLC AMR-100 Operations Manual Firmware 2.30 Revision 41 03/11/15 SUPPORT INFORMATION Email: support@amb-os.com Phone 877AMBOS2U (877) 262-6728 AMB-OS WEB PAGE for program downloads, RSS feed

More information

A LOW COST TRANSPORT STREAM (TS) GENERATOR USED IN DIGITAL VIDEO BROADCASTING EQUIPMENT MEASUREMENTS

A LOW COST TRANSPORT STREAM (TS) GENERATOR USED IN DIGITAL VIDEO BROADCASTING EQUIPMENT MEASUREMENTS A LOW COST TRANSPORT STREAM (TS) GENERATOR USED IN DIGITAL VIDEO BROADCASTING EQUIPMENT MEASUREMENTS Radu Arsinte Technical University Cluj-Napoca, Faculty of Electronics and Telecommunication, Communication

More information

A NEW METHOD FOR RECALCULATING THE PROGRAM CLOCK REFERENCE IN A PACKET-BASED TRANSMISSION NETWORK

A NEW METHOD FOR RECALCULATING THE PROGRAM CLOCK REFERENCE IN A PACKET-BASED TRANSMISSION NETWORK A NEW METHOD FOR RECALCULATING THE PROGRAM CLOCK REFERENCE IN A PACKET-BASED TRANSMISSION NETWORK M. ALEXANDRU 1 G.D.M. SNAE 2 M. FIORE 3 Abstract: This paper proposes and describes a novel method to be

More information

Channel processing equipment

Channel processing equipment Channel processing equipment DVB to IP streamers sdi410c, sti410c, sda410c, sta410c, sai410c, saa410c 1. Product description DVB-S/S2 (sdi410c, sda410c), DVB-T/T2/C (sti410c, sta410c), DVB-ASI (sai410c,

More information

SetEditKaon for Kaon. Contents:

SetEditKaon for Kaon. Contents: SetEditKaon for Kaon Contents: 1 General 2 Installation 3 Step by step a Load and back up a settings file b Arrange settings c Provider d Favourite lists and genres e Channel parameters f Write settings

More information

Quick Reference Guide. OmniBER 718

Quick Reference Guide. OmniBER 718 OmniBER 718 Quick Reference Guide Introduction Use this book to quickly access the main instrument functions and tasks. Setting the Interfaces Setting the Transmit Interfaces Setting PDH Transmit Interface

More information

AD2612 DVB TS SCRAMBLER USER S MANUAL

AD2612 DVB TS SCRAMBLER USER S MANUAL AD2612 DVB TS SCRAMBLER USER S MANUAL CONTENTS 1 SAFETY INSTRUCTIONS ------------------------------------------------------------ 1-1 2 COMPOSITIONS OF SYSTEM AND OPERATING PRINCIPLE----------- 2-1 2.1

More information

The following content is provided under a Creative Commons license. Your support

The following content is provided under a Creative Commons license. Your support MITOCW Lecture 6 The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high-quality educational resources for free. To make a donation

More information

SetEditMX04 for Smart MX04. Contents:

SetEditMX04 for Smart MX04. Contents: SetEditMX04 for Smart MX04 Contents: 1 General 2 Installation 3 Step by step a Load and back up a settings file b Arrange settings c Provider d The favourite lists e Channel parameters f Write settings

More information

Basics of BISS scrambling. Newtec. Innovative solutions for satellite communications

Basics of BISS scrambling. Newtec. Innovative solutions for satellite communications Basics of BISS scrambling Contents Definition of scrambling BISS modes BISS mode 1 BISS mode E Calculation of encrypted session word Buried ID Injected ID Connection diagram Rate adaptation Back panel

More information

EECS150 - Digital Design Lecture 12 - Video Interfacing. Recap and Outline

EECS150 - Digital Design Lecture 12 - Video Interfacing. Recap and Outline EECS150 - Digital Design Lecture 12 - Video Interfacing Oct. 8, 2013 Prof. Ronald Fearing Electrical Engineering and Computer Sciences University of California, Berkeley (slides courtesy of Prof. John

More information

Matrox PowerStream Plus

Matrox PowerStream Plus Matrox PowerStream Plus User Guide 20246-301-0100 2016.12.01 Contents 1 About this user guide...5 1.1 Using this guide... 5 1.2 More information... 5 2 Matrox PowerStream Plus software...6 2.1 Before you

More information

User Manual. UNIVERSE Ref. 8600

User Manual. UNIVERSE Ref. 8600 User Manual UNIVERSE Ref. 8600 No part of this manual may be copied, reproduced, transmitted, transcribed or translated into any language without permission. Unitron reserves the right to change the specifications

More information

Quick JIRA Manual to create an issue. M.F. Gómez de la Cruz

Quick JIRA Manual to create an issue. M.F. Gómez de la Cruz Quick JIRA Manual to create an issue M.F. Gómez de la Cruz Create new JIRA case Select Project from the pulldown list Select Issue Type from the pull-down list Type a title that summarizes the issue Select

More information

White Paper. Video-over-IP: Network Performance Analysis

White Paper. Video-over-IP: Network Performance Analysis White Paper Video-over-IP: Network Performance Analysis Video-over-IP Overview Video-over-IP delivers television content, over a managed IP network, to end user customers for personal, education, and business

More information

Error performance objective for 25 GbE

Error performance objective for 25 GbE Error performance objective for 25 GbE Pete Anslow, Ciena IEEE 25 Gb/s Ethernet Study Group, Ottawa, Canada, September 2014 1 History The error performance objective adopted for the P802.3ba, P802.3bj

More information

DTV/MPEG2 Test & Measurement DTV Signal Generator DSG500

DTV/MPEG2 Test & Measurement DTV Signal Generator DSG500 DTV/MPEG2 Test & Measurement DTV Signal Generator DSG500 Copyright 2007 DTVinteractive Co., Ltd. All rights reserved. DSG500 DTV Signal Generator General DSG500 is the all-in-one DTV signal generator supporting

More information

First Encounters with the ProfiTap-1G

First Encounters with the ProfiTap-1G First Encounters with the ProfiTap-1G Contents Introduction... 3 Overview... 3 Hardware... 5 Installation... 7 Talking to the ProfiTap-1G... 14 Counters... 14 Graphs... 15 Meters... 17 Log... 17 Features...

More information

QRF5000 MDU ENCODER AND QAM MODULATOR

QRF5000 MDU ENCODER AND QAM MODULATOR Radiant Communications Corporation 5001 Hadley Road South Plainfield NJ 07080 Tel (908) 757-7444 Fax (908) 757-8666 WWW.RCCFIBER.COM QRF5000 MDU ENCODER AND QAM MODULATOR Installation & Operational Manual

More information

Life without Library Systems?

Life without Library Systems? Life without Library Systems? Written by Debby Emerson Adapted and illustrated By Christine McGinty and Elly Dawson 20 Published by Pioneer Library System 2005 Once upon a time there was a girl named Katie

More information

SetEditMedionLife for MedionLife P Contents:

SetEditMedionLife for MedionLife P Contents: SetEditMedionLife for MedionLife P15068 Contents: 1 General 2 Installation 3 Step by step a Load and back up a settings file b Arrange settings c Channel parameters d Write settings into the receiver e

More information

Arbitrary Waveform Generator

Arbitrary Waveform Generator 1 Arbitrary Waveform Generator Client: Agilent Technologies Client Representatives: Art Lizotte, John Michael O Brien Team: Matt Buland, Luke Dunekacke, Drew Koelling 2 Client Description: Agilent Technologies

More information

Alpha Plus. User Guide

Alpha Plus. User Guide Alpha Plus User Guide Contents Contents i 1 Introduction 1 1.1 Features.............................. 1 1.2 Accessories............................ 2 1.3 The Remote Control....................... 3 1.4

More information

Matrox PowerStream Plus

Matrox PowerStream Plus Matrox PowerStream Plus User Guide 20246-301-0250 2018.09.04 Contents 1 About this user guide... 5 1.1 Using this guide... 5 1.2 More information... 5 2 Matrox PowerStream Plus software... 6 2.1 Before

More information

Cisco D9859 Advanced Receiver Transcoder

Cisco D9859 Advanced Receiver Transcoder Deliver MPEG-4 high-definition (HD) services to MPEG-2 cable TV (CATV) headends with the Cisco D9859 Advanced Receiver Transcoder. The Cisco D9859 platform (Figures 1 and 2) extends the distribution options

More information

GNS600 SCTE104 VANC inserter, Ethernet data-bridge for 3G, HD and SD SDI Inputs and X31 Cue encoder/decoder

GNS600 SCTE104 VANC inserter, Ethernet data-bridge for 3G, HD and SD SDI Inputs and X31 Cue encoder/decoder VANC inserter, Ethernet data-bridge for 3G, HD and SD SDI Inputs and X31 Cue encoder/decoder A Synapse product COPYRIGHT 2018 AXON DIGITAL DESIGN BV ALL RIGHTS RESERVED NO PART OF THIS DOCUMENT MAY BE

More information

Application Highlights

Application Highlights Acterna Digital www.atecorp.com Broadcast Test Platform 800-404-ATEC (2832) Established 1981 Advanced Test Equipment Rentals Model DTS-300 Highlights Provides a one-box solution that meets the widest variety

More information

Research and Application of Scheduling Algorithm for Digital Television Multiplexer

Research and Application of Scheduling Algorithm for Digital Television Multiplexer Appl. Math. Inf. Sci. 8, o. 1, 293-298 (2014) 293 Applied Mathematics & Information Sciences An International Journal http://dx.doi.org/10.12785/amis/080136 Research and Application of Scheduling Algorithm

More information

SharkFest 17 Europe. Generating Wireshark Dissectors from XDR Files. Why you don't want to write them by hand. Richard Sharpe.

SharkFest 17 Europe. Generating Wireshark Dissectors from XDR Files. Why you don't want to write them by hand. Richard Sharpe. SharkFest 17 Europe Generating Wireshark Dissectors from XDR Files Why you don't want to write them by hand Richard Sharpe 8 november 2017 Primary Data Wireshark Core Team #sf17eu Estoril, Portugal #sf17eu

More information

TERRA. DVB remultiplexer TRS180. User manual

TERRA. DVB remultiplexer TRS180. User manual TERRA DVB remultiplexer TRS180 User manual CONTENTS 1. Product description 3 2. Safety instructions 3 3. External view 3 4. Parameters 4 4.1 Control Interfaces 4 4.2 Features 4 5. Installation instructions

More information

Configuration guide TDH 800 PAL output module. TDH 800 PAL output module Version A EN triax.com

Configuration guide TDH 800 PAL output module. TDH 800 PAL output module Version A EN triax.com Configuration guide TDH 800 PAL output module Model Item no. TDH 800 PAL output module 692850 692851 Version 891575A 08-2013 EN triax.com Contents Contents Introduction... 3 System requirements... 3 Computer

More information

DVISm. DVISm - Mini Digital Video Insertion System. Quick Start Guide. Patent Pending

DVISm. DVISm - Mini Digital Video Insertion System. Quick Start Guide. Patent Pending DVISm Patent Pending DVISm - Mini Digital Video Insertion System Quick Start Guide Although every effort has been taken to ensure the accuracy of this document it may be necessary, without notice, to make

More information

DHP 400A. Product Outline. Key Fetures. DHP 400A Head-end Processor

DHP 400A. Product Outline. Key Fetures. DHP 400A Head-end Processor DHP 400A Product Outline Redundancy Power Supply (optional) DHP400A DTV head-end processor is the new generation of intelligent headend processing equipment. This 1-U case comes with 6 independent module

More information

SetEditTF5000 for Topfield 5000/5500. Contents:

SetEditTF5000 for Topfield 5000/5500. Contents: SetEditTF5000 for Topfield 5000/5500 Contents: 1 General 2 Installation 3 Step by step a Load and back up a settings file b Arrange settings c Provider d The favourite lists e Channel parameters f Write

More information

Netflix on the IMC IMC and up. User guide for viewing Netflix Content

Netflix on the IMC IMC and up. User guide for viewing Netflix Content Netflix on the IMC IMC 1.1.0 and up User guide for viewing Netflix Content NETFLIX FOR IMC BASIC USER GUIDE Subscribers to Netflix s Unlimited DVD service are granted an unlimited number of hours for watching

More information

Note: Please use the actual date you accessed this material in your citation.

Note: Please use the actual date you accessed this material in your citation. MIT OpenCourseWare http://ocw.mit.edu 18.06 Linear Algebra, Spring 2005 Please use the following citation format: Gilbert Strang, 18.06 Linear Algebra, Spring 2005. (Massachusetts Institute of Technology:

More information

quantumdata TM G Protocol Analyzer / Generator Module for HDMI Testing Deep Analysis and Compliance Testing up to 600MHz

quantumdata TM G Protocol Analyzer / Generator Module for HDMI Testing Deep Analysis and Compliance Testing up to 600MHz quantumdata TM 980 18G Protocol Analyzer / Generator Module for HDMI Testing Deep Analysis and Compliance Testing up to 600MHz Important Note: The name and description for this module has been changed

More information

THE MOST INNOVATIVE ADVANCED, COST EFFECTIVE RADIO & AUDIO BROADCASTING PLATFORM

THE MOST INNOVATIVE ADVANCED, COST EFFECTIVE RADIO & AUDIO BROADCASTING PLATFORM THE MOST INNOVATIVE ADVANCED, COST EFFECTIVE RADIO & AUDIO BROADCASTING PLATFORM For Business Today Distribution of live and pre-recorded content Spot insertion, program replacement Time zone delay/delayed

More information

WebMedia Plugin Manager Operational Reference

WebMedia Plugin Manager Operational Reference WebMedia Plugin Manager al Reference Version 1.1 12 June 2001 Introduction This document describes the command set and command-line utility available for controlling the various video-related hardware

More information

ESPN XDS Satellite Receiver Configuration Information

ESPN XDS Satellite Receiver Configuration Information ESPN XDS Satellite Receiver Configuration Information To access the web-based scheduler for the ESPN XDS receivers, go to the following website: https://myxdsreceiver.espn.com/ Example #1 You will need

More information

TV4U DVB-S2 to DVB-S2 TRANSMODULATOR

TV4U DVB-S2 to DVB-S2 TRANSMODULATOR TV4U to TRANSMODULATOR TV4U to TRANSMODULATOR INSTRUTION MANUAL TV4U to TRANSMODULATOR The main application of to transmodulator Experience of MVDS terrestrial broadcasting shows that carrier must be restored

More information

Analyzing Modulated Signals with the V93000 Signal Analyzer Tool. Joe Kelly, Verigy, Inc.

Analyzing Modulated Signals with the V93000 Signal Analyzer Tool. Joe Kelly, Verigy, Inc. Analyzing Modulated Signals with the V93000 Signal Analyzer Tool Joe Kelly, Verigy, Inc. Abstract The Signal Analyzer Tool contained within the SmarTest software on the V93000 is a versatile graphical

More information

Multimedia Time Warping System. Akiko Campbell Presentation-2 Summer/2004

Multimedia Time Warping System. Akiko Campbell Presentation-2 Summer/2004 Multimedia Time Warping System Akiko Campbell Presentation-2 Summer/2004 Outline Overview Facts Features Multimedia Time Warping System Conclusion Effect of TiVo on VoD Overview Facts A Linux box that

More information