
Recherche avancée
Autres articles (55)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
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
Sur d’autres sites (7405)
-
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.