Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (50)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (7556)

  • HLS stream from multiple FFMPEG to RTMP command at VideoJS keep repeating for segments

    14 août 2018, par Lokesh Kumawat

    I am building on demand video streaming application based on user interaction at frontend using FFMPEG and RTMP, which eventually converted to HLS using nginx-rtmp-module, with hls_continuous flag set to true.

    While running back to back FFMPEG command to RTMP(i.e. once one FFMPEG command done with execution at RTMP stream, another FFMPEG command is executed at same stream), observation at VideoJs player that some of the HLS segment keeps repeating.

    Would be great help if someone could help me to figure out what could be possible reason, and how to fix the same ?

    Thanks in Advance.

  • ffplay : is there a way to get the timestamp of the currently paused video frame ?

    17 septembre 2022, par John_Sheares

    Currently, I have ffplay setup to draw the timestamp as overlay text, so that I can manually record the value of the paused frame. This getting tedious and I was thinking of extracting it with a custom program that monitors stdout.

    


    I noticed that when I turn on the log output, I can see the debug information for the text formatting of the drawn timestamp. When paused, I can read back several lines to see the timestamp that matches the one shown in the overlay text. It seems consistently 4 formatting debug messages back, but that is probably unreliable.

    


    Any ideas on how this can be done and reliably ?

    


  • FFMPEG - two inputs, reverse the second input

    12 août 2021, par Shannon Hochkins

    I have an image sequence that scrolls down the page, i want to add this sequence as an input twice, the first sequence scrolls down the page, then i want to reverse the second sequence so it appears as if we're scrolling back up the page and so the output gif has a smooth animation and doesn't snap back to the top of the page when it loops.

    


    ffmpeg -f image2 -i ./tmp/frame-%03d.jpg -i ./tmp/frame-%03d.jpg -vf "[1:v]reverse,fps=25,scale=200:-1:flags=lanczos,split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse" ./tmp/test.gif

    


    Haven't managed to get this to work but the above is what i've tried, any help would be great !