
Recherche avancée
Autres articles (57)
-
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...) -
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...) -
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.
Sur d’autres sites (5193)
-
Displaying multiple videos on Panels locks UI - using Refresh() / Invalidate()
7 mai 2015, par erusluI try to show 32 different videos (
768 * 532 pixels
and25 fps
) on an application as two4x4
displays. Each video is displayed on aPlayer
class which has aPanel
object.
I get the RTP streams from network and converting them to bitmap image usingFFmpeg
and set bitmaps as panel background images and thenRefresh()
the panel.
When the number of displaying videos increases (as 17-18) the UI starts to lock, it is not responding.
Then I useInvalidate()
, this time UI is not locking, it responds any events even for 32 displays but after 17-18 display it can not catch up refreshing rate (25fps
). The videos are displayed by skipping some of the frames.
I am setting background images ofPanel
’s and refreshing them in different threads. Do I need to do one refreshing for all panels. Or use another refreshing method ?
Any help will be appreciated, thank you. -
How can I add overlay images or text on top of videos in Android ?
12 mai 2015, par ori888I’m trying to add overlay images/text on top of mp4 videos inside an Android application.
Most solutions point to FFmpeg (or appunits AndroidFFmpeg) but isn’t stable and very complicated to maintain.
Is there a native way to do this using the Android SDK ? (MediaCodec ? MediaMuxer ?)Thank you,
Ori -
FFMPEG. Concatenate videos with a intro and music
12 juillet 2019, par MickyI’m trying to merge videos with an intro and a background music.
The intro.flv is a short file with video and audio.
The other videos are without audio.
ambientmusic.mp3 is audio to add to subsequent videos.
A short fade for each file.ffmpeg -i intro.flv -i 0.mp4 -i 1.mp4 -i 2.mp4 -i ambientmusic.mp3 -filter_complex "[0] fade = in: 0: 25 [v0]; [1] fade = in: 0:25 [v1]; [2] fade = in: 0: 25 [v2]; [3] fade = in: 0: 25 [v3]; [v0] [v1] [v2] [v3] concat = 4 [v] "-map" [v] "-map a ./output/final.mp4
Unfortunately the code only loads the first audio. Same result as
-map 0: a
If I use this instead it loads ambientmusic.mp3 on the whole video.
-map 4: a
But I’d like the audio of the Intro followed by the ambientmusic.mp3
-map 0: a -map 4: a