Recherche avancée

Médias (91)

Autres articles (72)

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

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

  • Powershell Job Memory Consumption Issue

    14 juillet 2016, par Matt Wall

    I’ve been struggling with this for a week now and have exhausted all the methods and options I have found online. I am hoping someone here will be able to help me out with this.

    I am using powershell to start 8 jobs, each job running FFmpeg to stream a 7 minute file to a remote RTMP server. This is pulling from a file on the disk and each job uses a different file. The command is in a do while loop so that it is constantly restreaming.

    This is causing the shell I launched the jobs from to accumulate a massive amount of memory, consuming all that it can. In 24 hours it consumed 30 of the 32 GB of my server.

    Here is my launch code, any help would be appreciated.

    start-job -Name v6 -scriptblock {
    do { $d = $true; $f = Invoke-Expression -Command "ffmpeg -re -i `"C:\Shares\Matthew\180p_3000k.mp4`" -vcodec copy -acodec copy -f flv -y rtmp://<ip>/<appname>/<streamname>"; $f = $null }
    while ($d = $true)
    </streamname></appname></ip>

    }

    I’ve tried to receive the jobs and pipe it to out-null, I’ve tried setting $f to $null before starting the do while loop, and some other things I found online but to no avail. Thanks everyone for your time !

  • Révision 24197 : Hello World (camille m’a vraiment tuer ?)

    16 janvier 2019, par ben.spip@gmail.com
  • How to resume livestream on Facebook with ffmpeg

    17 octobre 2018, par boygiandi

    I’m trying live stream on Facebook. Sometime the pipe was broken (by network or something else), the problem is I can’t resume the live stream. I started new ffmpeg process right away with the same arguments but Facebook didn’t accept it. I see that Vmix can do that - resume the broken livestream.
    How can I resume Facebook live stream with ffmpeg ?