Recherche avancée

Médias (91)

Autres articles (76)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

Sur d’autres sites (5180)

  • FFmpeg to Azure Media Services Smooth Streaming Input

    22 juillet 2020, par Adityo Setyonugroho

    I would like to ask about ffmpeg config or command to to mp4 fragment to Azure Media Service live event using smooth streaming / isml protocol. The AMS is not getting any input yet from ffmpeg.
This is my current running command :

    


    ffmpeg -f dshow -i video="Webcam" -movflags isml+frag_keyframe -f isml -r 10 http://endpoint/ingest.isml/streaming1


    


    When I am using RTMP with Wirecast is running well.

    


    Any suggestion on ffmpeg command with isml protocol ?

    


    Thank you

    


  • dotnet core media trans-coding library

    18 juin 2020, par Faisal Shahin

    I'm searching for a library for media transcoding other than ffmpeg for dotnet core the thing I'm searching for is for media streaming of videos.

    



    The ffmpeg is great but there is no library that will enable me to save the transcoded vedio to a stream object, plus when tested the conversion of the video using ffmpeg it took too much time (of course depending on multiple factors).

    



    so Im wondering if there is a dotnet core library other than those who uses ffmpeg that do the same thing but with more performance and the ability to save the output to a stream object

    


  • Node Media Server not streaming when I change ffmpeg argv

    30 mai 2020, par joao.jlf4

    I'm trying to change the ffmpeg spawn argv on Node Relay Session but it does'nt work beacuse node media server finishes the stream, my argv array :

    



    let argv = [
      '-fflags', 
      'nobuffer', 
      '-i', 
      this.conf.inPath, 
      '-b:v',
      '2000k',
      '-b:a',
      '128k',
      '-c:v',
      'libx264',
      '-preset veryfast',
      // '-c', 
      // 'copy', 
      '-f', 
      format, 
      this.conf.ouPath];