Recherche avancée

Médias (91)

Autres articles (62)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

Sur d’autres sites (11972)

  • HLS.js append a new .m3u8 media file

    23 novembre 2019, par Hastalavistababyml

    How can I append a new media file using HLS.js

    window.hls = new Hls();

    let VideoElement = document.getElementById('video')

    let VideoViewr = (dir, element) => {
       if (Hls.isSupported()) {

         hls.attachMedia(element);
         hls.loadSource(dir)

         hls.on(Hls.Events.MEDIA_ATTACHED, function () {
           console.log("video and hls.js are now bound together !");
           hls.on(Hls.Events.MANIFEST_PARSED, function (event, data) {
             console.log("manifest loaded, found " + data.levels.length + " quality level");
             console.log(video.buffered.end(0)-video.currentTime)
           });
         });

       }
    }

    VideoViewr('./video/dir-1/chunk.m3u8', VideoElement)
    VideoViewr('./video/dir-2/chunk.m3u8', VideoElement)

    VideoElement.play()

    HTML

    <video width="400" height="400" controls="controls"></video>

    After the first instance, I want to append another .m3u8 file but getting last appended video in the player

    HLS.append(m3u8file)

    HLS.append(m3u8_another_file)

  • ffmpeg install on my machine but not display in phpinfo()

    17 février 2017, par Pratik Bachchhe

    ffmpeg extension not loaded in phpinfo() when I follow the steps below :

    Install FFMPEG on XAMPP

    • Download ffmpeg from here : https://ffmpeg.org/download.html
    • Copy php_ffmpeg.dll from the php5 folder to the C:\wamp\bin\php\php5.2.9-2\ext
    • Copy files from common to the windows/system32 folder
    • Add extension=php_ffmpeg.dll to php.ini file (\apache...php.ini)
    • Restart all services (Apache, PHP...)
    • Enable extension=php_ffmpeg.dll directive in your php.ini.
  • I get an error when republishing the image I shot with ros2 run ffmpeg [closed]

    29 mars 2024, par Seher Elbasan Büyük

    I get the following errors when republishing the image I took with ros2 run ffmpeg. ;

    &#xA;

    ros2 run image_transport republish ffmpeg in/ffmpeg:=image_raw/ffmpeg raw out:=image_raw/uncompressed --ros-args -p "ffmpeg_image_transport.map.hevc_rkmpp:=hevc"`&#xA;&#xA;&#xA;&#xA;terminate called after throwing an instance of &#x27;image_transport::TransportLoadException&#x27;&#xA;  what():  Unable to load plugin for transport &#x27;image_transport/ffmpeg_sub&#x27;, error string:&#xA;According to the loaded plugin descriptions the class image_transport/ffmpeg_sub with base class type image_transport::SubscriberPlugin does not exist. Declared types are  image_transport/compressedDepth_sub image_transport/compressed_sub image_transport/raw_sub image_transport/theora_sub&#xA;[ros2run]: Aborted&#xA;

    &#xA;

    I don't want to replace the parameters specified in the errors. I want to do this with ffmpeg. how can i fix this

    &#xA;

    After running ros2, I want to list the topics, echo them and view them with rviz2 and image uncompressed.Afterwards, I want to use and show this uncompressed image in my Python detection project.

    &#xA;