Recherche avancée

Médias (1)

Mot : - Tags -/punk

Autres articles (100)

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

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

Sur d’autres sites (8256)

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