
Recherche avancée
Médias (91)
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Echoplex (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Discipline (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Letting you (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
999 999 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (103)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
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 (12080)
-
Glow effect using ffmpeg binary
6 février 2018, par Hwi-Soo KimWhile developing android camera app using
ffmpeg
, I found myself in trouble when I tried to make text layer glow on the video.How can I make my texts glow like pearl ?
current structure
text <---- want to make this layer glow
-------
image
-------
video
-------Currently text has a color and shadow but no glow effect.
-
Is it incorrect to use multiple 'split' filters down the FFmpeg's filter_complex tree ?
26 octobre 2020, par ed22Is it better to use the split filter only once per input (say once per [0:v]) or is it OK to split "down the line" again, like below ?


[0:v]split=2[0v_1][0v_2];
[0v_1]<do sth="sth" here="here">[result1];
[0v_2]<do sth="sth" here="here">[result2];
[result1]split=2[result1_1][result1_2];
[result1_1]<do some="some" more="more" here="here">[final_result_1];
[result1_2]<and also="also" something="something" here="here">[final_result_2]
</and></do></do></do>


-
How to monitor volume level during ffmpeg capture
7 septembre 2018, par VirkomI capture sound from soundcard, convert it to mp3 and stream to multicast IP.
Command looks like :ffmpeg -f alsa -i hw:0 -async 1 -vn -acodec libmp3lame -ac 1 -ar 44100 -b:a 128k -flush_packets 0 -f mpegts -pes_payload_size 426 -mpegts_start_pid 0x44 udp://233.21.215.101:1234?pkt_size=1316
But I need to monitor volume level of capturing. If there is no sound (or noise only) I need to switch to another (reserve) channel.
Can I get volume level in ffmpeg output ? How I can do it ?
P.S : I can get volume level by "volumedetect" filter but it’s not in realtime. I need realtime monitoring.
P.P.S : I run ffmpeg programmatically from my application and can’t monitor additional windows (like video frame when I use showvolume filter).