Enigma2 Transcoding

  • Hallo Leute,

    ich besitze eine Box wo Enigma2 drauf läuft. Leider kann die Box kein Transcoding. Habe schon ein paar Dinge über Google gefunden und das ganze auch schon mit Windows und PC zum laufen gebracht. Jetzt wollte ich fragen, ob das auch mit der Raspi 3 möglich ist?

  • ich habe mich mal daran versucht. kriege das ganze auch auf windows zu laufen.

    mit meinem pi gibts aber probleme.

    rufe ich den pfad http://10.0.0.2/e2transcoding/admin/ auf bekomme ich folgende meldung:

    close(); ?>

    hier meine config.php:

    [code=php]<?php
    //mandatory configuration
    $conf["username"] = "root"; //username to access DB transcoder
    $conf["password"] = "root"; //password to access DB transcoder
    $conf["callreceiver"] = 0; // if enigma2 receiver is not used must be 0, but it is not mandatory if receiver is used
    $conf["stream_dir"]="/var/www/e2transcoding/stream/"; //full path of stream dir
    $conf["db_stream_port"]="8001"; //enigma2 stream port
    $conf["command"] = "/usr/local/bin/ffmpeg"; // path of avconv or ffmpeg executable , if avconv of ffmpeg installed from package only need executable name
    //$conf["command"] = "avconv"; // path of avconv or ffmpeg executable , if avconv of ffmpeg installed from package only need executable name
    $conf["stream_web_dir"] = "/video/stream/"; //web url folder of stream

    //enigma2 receiver configuration
    $conf["db_username"] = "root"; //enigma2 user name
    $conf["db_password"] = "root#"; //enigma2 password
    $conf["db_ip"] ="10.0.0.1"; //enigma2 IP
    $conf["db_web_port"]="80"; //enigma2 WEB interface port


    // Advanced settings
    $conf["parameters"] = "-i {stream_url} -c:a aac -q:a 1 -strict experimental -c:v libx264 -crf {crf} -profile:v baseline -filter:v yadif -vf \"scale=trunc(oh*a/2)*2:min({width} \,iw)\" -r 24 -map 0:a:{audio_id} -map 0:v:0 -hls_time 10 -hls_wrap 6 {stream_dir}ystream.m3u8";
    $conf["database"] = "db/dbtranscode.db" ; //sqlite database path
    $conf["stream_log"] = "/tmp/stream.log" ; //full path of avconv or ffmpeg log


    //Bellow this line do not edit
    $conf["command"] = $conf["command"] . " " . $conf["parameters"];


    ?>[/php]

    leider bekomme ich im verlinkten forum keinen support. deshalb bin ich mit dem thema hier.

Jetzt mitmachen!

Du hast noch kein Benutzerkonto auf unserer Seite? Registriere dich kostenlos und nimm an unserer Community teil!