Recherche avancée

Médias (0)

Mot : - Tags -/images

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

Autres articles (65)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (10395)

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

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

    


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