Recherche avancée

Médias (91)

Autres articles (60)

  • 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 ;

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (9084)

  • What kind of streaming protocol is the following technique of FFMPEG and HTML Video tag ?

    29 avril 2022, par O Connor

    Many people were looking for live streaming solution on a web page. I want to share the following knowledge after doing so many researches and having spent so many time.

    


    Run the following command line.

    


    ffmpeg -y -rtsp_transport udp -i "my_rtsp_url" -vcodec libx264 -listen 1 -movflags isml+frag_keyframe -f mp4 http://ip_address:port_nr/test.mp4


    


    Add the following HTML video tag to your web page.

    


    <video controls="controls" autoplay="autoplay">&#xA;    <source src="http://ip_address:port_nr/test.mp4" type="video/mp4">&#xA;</source></video>&#xA;

    &#xA;

    Now you can start live-streaming on your web page.

    &#xA;

    My question :

    &#xA;

    In general for a video playback, the browser loads the whole video file test.mp4 first and then just starts playing the video.

    &#xA;

    With the above technique, how can FFMPEG keep pushing video frames to the video source of the HTML without having a complete video file first ?

    &#xA;

    Or

    &#xA;

    Video source of the HTML keeps pulling frames from the FFMPEG server ?

    &#xA;

    Does anyone know how it works ? I am not looking for a streaming solution. I want to understand how these two work together ?

    &#xA;

  • Microsoft Smooth Streaming declares timescale of 10M by default

    21 décembre 2020, par Andrey Rikunov

    As far as I understand timescale should be completely dividable by fps to have exact timestamps.

    &#xA;&#xA;

    Microsoft Smooth Streaming uses timescale 10M by default which is leaked as hardcoded value in various smarttv clients and packaging tools thus limiting video fps to 25 and other dividers of 10M.

    &#xA;&#xA;

    How is it possible to package 24 fps video for mss clients which support 10M only ?

    &#xA;

  • avformat/dashenc : Disable streaming for webm output

    10 avril 2019, par Karthick J
    avformat/dashenc : Disable streaming for webm output
    

    Currently streaming for webm output doesn't work.
    Disabling explicitly will make sure that the manifest will get generated correctly.

    • [DH] libavformat/dashenc.c