Recherche avancée

Médias (91)

Autres articles (48)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (6107)

  • Implement a simple MPEG-TS muxer using ffmpeg-lib

    1er novembre 2019, par Pierre P.

    I have an application that records raw audio data in LPCM stored in a buffer. I would like to encapsulate the data in a transport stream and send that transport stream through UDP to a stream segmenter (according to HTTP Live Streaming specifications) on another host.

    FFmpeg provides a command-line utility to do so but with a file as input
    ffmpeg -re -i output.aac -acodec copy -f mpegts udp://127.0.0.1:5555.

    My first thought was to use FFmpeg API, especially the libavformat library. Does libavformat provide a muxer that I could use to encapsulate my audio in LPCM into a transport stream or do I have to implement it from scratch ?

    I have found this source code https://github.com/FFmpeg/FFmpeg/blob/master/libavformat/mpegts.c but I am not sure if it actually does what I’m looking for.

    Thanks for your help,

  • Implement a simple MPEG-TS muxer

    19 avril 2018, par Pierre P.

    I have an application that records raw audio data in LPCM stored in a buffer. I would like to encapsulate the data in a transport stream and send that transport stream through UDP to a stream segmenter (according to HTTP Live Streaming specifications) on another host.

    FFmpeg provides a command-line utility to do so but with a file as input
    ffmpeg -re -i output.aac -acodec copy -f mpegts udp://127.0.0.1:5555.

    My first thought was to use FFmpeg API, especially the libavformat library. Does libavformat provide a muxer that I could use to encapsulate my audio in LPCM into a transport stream or do I have to implement it from scratch ?

    I have found this source code https://github.com/FFmpeg/FFmpeg/blob/master/libavformat/mpegts.c but I am not sure if it actually does what I’m looking for.

    Thanks for your help,

  • Force Xvfb to play audio in specific pulseaudio sink

    18 août 2017, par boygiandi

    I’m trying to record audio from Xvfb session. In this Xvfb session, I started firefox, open webpage that contain an element. The audio element play music and loop.

    I create a sink with pulseaudio :

    pactl load-module module-null-sink sink_name=steam

    pacmd set-default-sink steam

    Then I start Xvfb session, start ffmpeg to record video and audio. It works. Now, I want to record another session, so I created new sink, named steam2, set default sink to steam2 like before.

    The problem is, in Xvfb session 1, when the audio stop-and-start (loop), it comes to new sink (steam2), then ffmpeg recorded no audio, steam2 now get mixed from 2 audios.

    Is there any way to force Xvfb session 1 play audio on sink1 ?