
Recherche avancée
Médias (3)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (43)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Publier sur MédiaSpip
13 juin 2013Puis-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 -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...)
Sur d’autres sites (8535)
-
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.