Recherche avancée

Médias (0)

Mot : - Tags -/organisation

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

Autres articles (100)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (14110)

  • Get thumbnail image from video not working with PHP and ffmpeg (Ubuntu)

    20 décembre 2018, par a_pajic

    I have generated a $cmd string :

    ffmpeg -i /home/alen/www/mysite/video/Guitarist-139.mp4 -an -ss 0 -s
    1280x720 /home/alen/www/mysite/img/Guitarist-139.jpg

    then I have typing a command in PHP :

    shell_exec($cmd);

    but not working,

    then I have pasted this string in terminal but in terminal work perfectly.

    What is wrong.

  • converting png to movies with R via ffmpeg

    10 mai 2021, par user237554

    I want to convert a series of *.png files to a movie with R and have installed ffmpeg in the root directory. I think the installation has been successful because if I type

    


         ffmpeg -version


    


    in terminal I get all of the version information etc., etc.

    


    I have my *.png files saved in the wd and in R I say

    


        imgs <- list.files(pattern="*.png")
        saveVideo({
        for(img in imgs){
          im <- magick::image_read(img)
          plot(as.raster(im))
        }
      })


    


    I get an error message that "the command ""ffmpeg"" is not available in your system. Please install FFmpeg". Is there something I need to do to get R and ffmpeg to talk to each other ? Again, from terminal, ffmpeg is in the directory and it looks like it installed.

    


    thanks

    


  • UPD Stream Receiver Container not receiving Sender's stream with ffmpeg in Docker

    9 octobre 2022, par James

    I have 2 containers bridged on the same network in Docker : One is acting as an UPD video streamer (sender) and the other one is acting as a the stream Receiver. The Stream is a m3u8.

    


    I manage to start the Sender to stream the m3u8 with ffmpeg, but when I run the ffmpeg command in the Receiver's terminal, it just starts the ffmpeg and it gets stuck. It won't receive the .ts file.

    


    Receiver's terminal Screenshot

    


    Any help would be appreciated.