Hello Reuben,
your file is not to download anymore.

>From the MediaInfo output it seems that this file contains all
streams/channels of one DVB multiplex.
Might I ask how you did record this file?

I was able to dump a complete multiplex from a tvheadend installation
connected to a DVB-S adapter (see below).

To detect such transport streams and make it user selectable in
dvbcut, which stream should be used, would be a case which needs to be
handled upstream.
Unfortunately it seems that the upstream project seems to be abandoned.

As a workaround one could first extract the desired program from the
transport stream into a new .ts-file by using ffmpeg/avonv (see
below). And then process this file in dvbcut.

Kind regards,
Bernhard



Steps to dump a complete multiplex from DVB-S with these steps:

- have a tvheadend installed configured and ready for viewing
- got to webinterface - Configuration - DVB Inputs - TV Adapters -
  General
- in Frame Adapter configuration: change "Full mux reception:" from
  "Auto" to "On"
- /etc/init.d/tvheadend stop
- /etc/init.d/tvheadend start
- got to webinterface - Configuration - DVB Inputs - TV Adapters -
  Multiplexes
- click the "Play" link on the multiplex you want to dump and save to
  any location
- /etc/init.d/tvheadend stop
- /etc/init.d/tvheadend start
- undo the change to "Full mux reception"
- /etc/init.d/tvheadend stop
- /etc/init.d/tvheadend start



Show program numbers to use later in the call to ffmpeg:

$ avconv -i _dev_dvb_adapter0_NXP_TDA1007111836500_H.ts 2>&1 | grep -E
"Program|service_name" | iconv -f ISO-8859-15
  Program 28106
      service_name    : Das Erste
  Program 28107
      service_name    : Bayerisches FS Süd
  Program 28108
      service_name    : hr-fernsehen
  Program 28110
      service_name    : Bayerisches FS Nord
  Program 28111
      service_name    : WDR Köln
  Program 28113
      service_name    : SWR Fernsehen BW



Extract desired program into new file:

$ avconv -i _dev_dvb_adapter0_NXP_TDA1007111836500_H.ts -c copy -map
p:28113 p28113.ts



Open new file in dvbcut:

$ dvbcut p28113.ts&


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Reply via email to