Thread Linux::DVB::DVBT und englische Tonspur (3 answers)
Opened by Kuerbis at 2014-03-25 09:21

Kuerbis
 2014-03-27 14:39
#174453 #174453
User since
2011-03-20
943 Artikel
BenutzerIn
[default_avatar]
Das funktioniert:

Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use Linux::DVB::DVBT;

my $dvb = Linux::DVB::DVBT->new();
my @chan_spec;
my @arg = ( 'file=name', 'chan=channel', 'len=5' );
my $error;
$error = $dvb->multiplex_parse( \@chan_spec, @arg );
my %options = (
    lang => '+eng',
    out  => 'avs',
);
$error = $dvb->multiplex_select( \@chan_spec, %options );
my %multiplex_info = $dvb->multiplex_info() ;
$dvb->multiplex_record( %multiplex_info );
$dvb->dvb_close();

View full thread Linux::DVB::DVBT und englische Tonspur