Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (74)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    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 (...)

Sur d’autres sites (4520)

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

    10 octobre 2022, par James

    I have 2 containers bridged on the same network in Docker : One is acting as an UDP 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.

    


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

    


  • 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