Recherche avancée

Médias (1)

Mot : - Tags -/géodiversité

Autres articles (71)

  • 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 (9126)

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

    


  • getting very bad image after encoding

    20 avril 2012, par user1310596

    I am encoding images using avcodec_encode_video method and displaying them on subscriber demo of the Red5 media server.

    The problem i am facing is that all the images which are being displayed are totally distorted and nothing is clearly visible. I think something might be wrong with the pix_fmt set in avcodec context.
    Moreover image size is also quite large as 64000 bytes after encoding which I think is little weird
    Please give me solution of this problem. Any help is appreciated.