Recherche avancée

Médias (1)

Mot : - Tags -/publicité

Autres articles (97)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

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

  • avformat/cafenc : Fix memleak when trailer is never written

    23 septembre 2021, par Andreas Rheinhardt
    avformat/cafenc : Fix memleak when trailer is never written
    

    Do this by using the AVStream's priv_data for the buffer holding
    the packet size data.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavformat/cafenc.c
  • Error Writing trailer of rtmp FFMPEG Stream

    16 juin 2023, par Hellwraith

    I'm currently playing around with ffmpeg. And I put together the following command line. But for some time now I've been encountering the problem that ffmpeg keeps giving me with the error : Error writing trailer of rtmp :[Streamlink][Streamkey] : Broken Pipe

    &#xA;

    aborts

    &#xA;

    Does anyone know a workaround ?

    &#xA;

    The command looks like this : ffmpeg -re -f concat -i Playlist.txt -codec copy -flvflags no_duration_filesize -f flv rtmp ://Streamlink/Streamkey

    &#xA;

  • RTSP relay on iOS using swift [on hold]

    15 novembre 2015, par kiran_g

    I need to implement an RTSP relay. I have already done this for raspberry. Basically the app on raspberry pi needs to PULL and RTSP feed from an IP camera and PUSH it to another PC. I did it using the following ffmpeg command :

    ffmpeg -i "rtsp://10.10.10.2:1001/stream" -vb 150000 -g 60 -vprofile baseline -level 2.1 -acodec aac -ab 64000 -ar 48000 -ac 2 -vbsf h264_mp4toannexb -strict experimental -f rtsp rtsp://10.10.10.3:1234/live/stream

    Now I need to implement the same thing using an iOS app (swift). Can someone suggest any third party libraries which can do this. Basically it needs to do RTSP PULL from one side and do RTSP PUSH on the other side. An optional requirement will be displaying the stream being relayed.