Recherche avancée

Médias (0)

Mot : - Tags -/auteurs

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (63)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (7517)

  • how to use ffmpeg to cache a stream

    17 septembre 2018, par Marcel

    i am using the following command to copy a live stream and restream it to a different endpoint. This works Ok , but the problem is that the stream breaks up/buffer occurs on client/stuttering and does not run smoothly or even fails.
    Here is the command i am using

    ffmpeg -loglevel fatal -fflags +igndts -re -i "$1" -acodec copy -vcodec copy -tune zerolatency -f mpegts pipe:1

    $1 is an mpegts http stream url

    what will be the correct command to use for ffmpeg to "cache" few seconds of the input stream (input is mpegts) before emitting the stream out as is ? I hope by caching i can get a smooth playback , no stuttering or buffering on the client side.

    thanks for help !!

  • Handling Unknown encoder with ffmpeg hardware acceleration

    23 septembre 2018, par Gabrielle

    I am having a heavy use of CPU from ffmpeg to record my screen.

    To solve this, I am trying to use hardware acceleration. The problem is that my program is intended to run in different platforms...

    I would like to know if there is a way to say "use any hardware acceleration available or none if none is available"...

    I tried to use -c:v h264_nvenc -allow-sw 1 in hope that, since I was testing on a Mac and I don’t have this encoding, the software encoding would be used instead, but this did not happened, instead, the entire command crashed.

  • ffmpeg "Automatic encoder selection failed for output stream"

    6 octobre 2018, par polmonroig

    I am trying to convert a video file from mp4 to exr but I am getting this error with this command in ffmpeg.

    Command

    ffmpeg -i 'video.MP4' 'video.%04d.exr'

    Error

    Automatic encoder selection failed for output stream #0:0. Default encoder for format image2 (codec exr) is probably disabled. Please choose an encoder manually.
       Error selecting an encoder for stream 0:0

    I hope someone can help me, I am really lost.

    Thank you !