
Recherche avancée
Autres articles (95)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 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 (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP 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 (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (9187)
-
Force Xvfb to play audio in specific pulseaudio sink
18 août 2017, par boygiandiI’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 ?
-
Generate 7.1 surround sound file and simultaneously play it on 8 speakers ? [on hold]
16 août 2019, par AnthonyIs there any software can do something like "receive 8 different audio sources and simultaneously play them on 7.1 surround sound speakers" ?
Right now, I just use the ffmpeg to combine 8 audio to 1 audio file, but this is a little bit delay and I don’t prefer to generate the file.
-
MediaPlayer doesn't play second audio track in HLS
9 février 2017, par Yehor NemovDoes anybody know how properly play (via Android MediaPlayer) or convert media file with 1 video track and 2 audio tracks to enable 2nd audio playback ?
Conversion is done with FFMPEG utility :
ffmpeg -i sample.mp4 -map 0:0 -map 0:1 -map 0:2 \
-vcodec h264 -acodec:0 aac -acodec:1 aac \
-strict -2 -f hls -hls_list_size 0 sample.m3u8P.S. Media conversion is checked manually with VLC media player (audio tracks are presented and available to be switched).