
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 (108)
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (15097)
-
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
-
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 -
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.