Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (109)

  • L’agrémenter visuellement

    10 avril 2011

    MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
    Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

Sur d’autres sites (13107)

  • ffmpeg is not installed in my docker container

    10 octobre 2022, par user16917650

    I have write below commands in my Dockerfile, for installing ffmpeg in a docker container.

    


    RUN apt-get -y update && apt-get -y upgrade && apt-get install -y --no-install-recommends ffmpeg


    


    While I'm building my Dockerfile it will show me ffmpeg install in my image, when i run my image as a container and manually enter in that image it will show me ffmpeg command is not found.

    


    Can you please help me on this ?

    


  • FFMPEG - Delete unused files or streaming without saving files

    8 septembre 2020, par M.Demiral

    I need to get live video from a device. I have to play the video on the browser. live video can be received as RTP or UDP.

    


    Since there is no support for VLC, I published the video by getting it via RTP with FFMPEG and creating a web server with Nginx. But later I realized that it is recording video tracks to disk. This is a situation I don't want.

    


    I can show it in web browser using HLS.js. It is saving to HDD when I use the following command.

    


    ffmpeg -i udp://127.0.0.1:5000 -vcodec libx264 -vprofile baseline -acodec aac -strict -2 -max_muxing_queue_size 1024 -f flv rtmp://127.0.0.1/show/stream


    


    I don't want it to save to HDD.

    


    When the codec I understand is changed, it saves the video to HDD.
I think I prevented it from recording like this. But I don't know how to play from the web browser.

    


    ffmpeg -i udp://127.0.0.1:5000 -strict -2 -max_muxing_queue_size 1024 -f flv rtmp://127.0.0.1/show/stream


    


    Is there any way to delete unused files or stream without saving to disk ?

    


    P.S.

    


    First question as it may be needed : How to play a live video in the browser ?

    


  • How to create videos from images using ffmpeg android ? [on hold]

    30 mai 2016, par Gaju

    Hello every one I want to do these three things :

    1. Create videos form no of images and play as a slide show ?
    2. Merge Audio and Video in video file.
    3. Merge two video ?

    For this I am using ffmpeg command using android ffmpeg library. I uesd many command also create video from images but its duration for images not well i some times finish video in 1 second or sometimes it will show only one images and also sometimes it play slides at a very fast speed. So what i do for this ? and I also tried with Javacv, but not getting any exact solution.