Recherche avancée

Médias (0)

Mot : - Tags -/signalement

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

Autres articles (70)

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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (10304)

  • ffmpeg and ffserver live stream to HTML5

    19 novembre 2016, par andrixnet

    What would be the setup for a reasonably supported live stream with ffmpeg and ffserver ?

    I mean I know ffmpeg can’t live stream MP4.
    It can live stream flv, but that requires flash plugin.
    I’ve read about HLS which is specific for Apple target devices.

    My target is mostly windows PC/laptop (Firefox, Chrome, Opera, optionally MSIE 10+) and Android smartphones (android 4+).
    Mac OSX and iOS devices are of little interest, if it works, ok, but not a requirement.

    On the playback side the target is pure HTML5 with <video></video> tag. No Flash.
    On the server side : ffserver.
    On broadcast side : ffmpeg with capture device as video and audio source.

    Can anyone suggest a configuration for ffmpeg+ffserver ?

  • Single click solution to publish webcam live feed to wowza

    22 mai 2015, par user2002522

    I have been trying to find out how to publish live webcam feed to a remote wowza server. I am trying to make a web application where in a user will be able to broadcast its live feed with a single click of a button.

    How can this be done ?

  • Using PNG (which updates) as a source for an RTMP live stream

    24 juillet 2023, par pkSML

    I've been googling a lot lately trying but I have yet to find a solution.

    &#xA;

    I've been using OBS to stream some textual data, where it grabs some data from a webpage and dynamically updates. This is easy, but involves way more overhead and CPU usage than I want. So cue up the command line and FFMPEG. I've gotten a script that'll update this textual information for me and save as a PNG. It updates every 10 seconds. The PNG file is 1280x720.

    &#xA;

    All I want on my RTMP stream is this image (with audio). But I can't figure out how to use only a PNG as the source of a video stream.

    &#xA;

    This does NOT work :&#xA;ffmpeg -re -y -framerate 1 -loop 1 -f image2 -i "./image.png" -c:v libx264 -pix_fmt yuv420p -preset fast -r 30 -g 120 -b:v 1000k -bufsize 512k -f flv "rtmps://mydomain.com/endpoint"&#xA;This just stalls. The encode time goes nowhere and the frame counter hardly moves.

    &#xA;

    I want this to be compatible with Facebook Live, so I need the output to be 30 fps with GOPs every few seconds.

    &#xA;

    Any ideas on how to achieve this ? I could use an overlay, but I'd prefer not to.

    &#xA;

    Thanks !

    &#xA;