
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
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 (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang 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, 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 (...)
Sur d’autres sites (9306)
-
Play unsupported HTML5 video formats in browser
8 octobre 2020, par ViT K.I am making a desktop application based on Electron + Vue. I need to play a video inside my application. The video source is always located locally, i.e. on the user's computer. And everything was great until I found out that HTML5


<video controls="controls">
 <source type="application/x-mpegURL">
</source></video>

ffmpeg(local\path\to\video.mp4)
 .audioBitrate(96)
 .outputOptions([
 '-codec: copy',
 '-hls_time 10',
 '-hls_playlist_type vod',
 '-hls_base_url http://localhost:8080/',
 `-hls_segment_filename \local\path\%03d.ts`
 ])
 .output(`\local\path\outputfile.m3u8`)
 .on('progress', function(progress) {
 console.log('Processing: ' + progress.percent + '% done')
 })
 .on('end', function(err, stdout, stderr) {
 console.log('Finished processing!' /*, err, stdout, stderr*/)
 })
 .run()



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