Recherche avancée

Médias (1)

Mot : - Tags -/epub

Autres articles (63)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Le plugin : Gestion de la mutualisation

    2 mars 2010, par

    Le plugin de Gestion de mutualisation permet de gérer les différents canaux de mediaspip depuis un site maître. Il a pour but de fournir une solution pure SPIP afin de remplacer cette ancienne solution.
    Installation basique
    On installe les fichiers de SPIP sur le serveur.
    On ajoute ensuite le plugin "mutualisation" à la racine du site comme décrit ici.
    On customise le fichier mes_options.php central comme on le souhaite. Voilà pour l’exemple celui de la plateforme mediaspip.net :
    < ?php (...)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (8054)

  • Live stream multi-bitrate video

    2 septembre 2017, par Rishabh

    Preface

    I have read this two part tutorial (Part-1 and Part-2) by Steamroot on MPEG-DASH, and below is my understanding (please correct me if I am wrong) :

    • The video needs to be encoded into multiple bit-rates using FFmpeg.
    • The encoded videos need to be transcoded (dashified) using MP4Box.
    • The dashified videos can be served using a web server.

    Problem

    I intend to live-stream an event and I need help to understand the following :

    1. Can I club the FFmpeg and MP4Box commands into a single step ? Maybe through a wrapper program so that I do not have to run them separately ? Is there any other or better solution ?
    2. How do I send the dashified content to the web server ? FTP ? Would any vanilla web server do ?
    3. Lastly, a friend had hinted that I could also use GStreamer to achieve my objective. But, I could not find any good resource on the internet for the same. So, where (and how) does GStreamer fit in the above process ?
  • Anomalie #2624 : La mise à jour via SVP supprime le plugin

    10 avril 2012, par marcimat -

    De sa part ! Alors, des nouvelles ? toujours ce bug ?

  • How can I combine two separate scripts being piped together to make one script instead of two ?

    29 mars 2016, par user556068

    I have two scripts that I pipe together. script1.sh | script2.sh Originally they were part of the same but I could never make it work correctly. The last part of script1 calls on youtube-dl to read a batch file and outputs a list urls into the terminal. Note the trailing - allows youtube-dl to read from stdin.

    cat $HOME/file2.txt | youtube-dl --ignore-config -iga -

    And script2 begins with :

    while read -r input
    do
    ffmpeg [arg] [input] [arg2] [output]

    What am I not seeing that is causing the script to hang when the two halves are combined yet work if one is piped into the other ?

    EDIT - It’s kind of funny how the answer is in the question.. Live and learn.