
Recherche avancée
Médias (1)
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (99)
-
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. -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
Sur d’autres sites (7284)
-
Run FFmpeg commands [on hold]
28 juillet 2018, par avanibHow can I use ffmpeg commands in my application ? The ffmpeg commands work perfectly on my local machine, but ffmpeg.exe is installed locally. How would I make them work when running the application on the server. Can I have the ffmpeg.exe in the app directory, will that work ?
I tried not to use command line instructions as much as possible, but to write text on a video, I had to use the drawtext instruction. Any ideas on how to use ffmpeg command when ffmpeg is installed only on your local machine ?
-
How to cut video in cirecle shape using ffmpeg ?
16 septembre 2019, par Rahul ChokshiI have working on application, application contain video. what I want cut video in circle shape.
-
merge two RTMP stream into one FFMPEG
20 février 2019, par istorryi am trying to merge 2 RTMP stream into 1 so far i am able to do it but i am facing delay in 1 stream
rtmp {
server {
listen 1935;
chunk_size 4096;
application collab {
live on;
record off;
exec ffmpeg -i rtmp://localhost/collab/$name -i rtmp://localhost/collab2/$name -codec:a aac -strict -2 -filter_complex "[0:a][1:a]amix" -ac 2 -f flv rtmp://localhost/collab/play_$name;
}
application collab2 {
live on;
record off;
exec ffmpeg -i rtmp://localhost/collab2/$name -threads 1 -c:v libx264 -profile:v baseline -b:v 350K -s 640x360 -f flv -c:a aac -ac 1 -strict -2 -b:a 56k rtmp://localhost/live360p/$name;
}
application stream {
live on;
record off;
exec ffmpeg -y -i rtmp://localhost/stream/$name -r 25 -s 1x1 -c:v libx264 -b:v 3M -strict -2 -movflags faststart rtmp://localhost/stream/$name;
}
application live360p {
live on;
record off;
}
}Device 1 : rtmp ://localhost/collab/key123
Device 2 : rtmp ://localhost/collab2/key123
Player : rtmp ://localhost/collab/play_key123
so far it’s working but i am getting delay even i try
ffplay -fflags nobuffer
for testingMetadata : : 0.000 fd= 0 aq= 0KB vq= 0KB sq= 0B f=0/0
my vq= keeps increasing and decreasing.