
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (52)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Les images
15 mai 2013 -
Taille des images et des logos définissables
9 février 2011, parDans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)
Sur d’autres sites (7461)
-
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. -
How to concat multiple sets of 2 videos using ffmpeg and for loop
25 janvier 2020, par Rawr Linux MmmI am trying to batch merge multiple sets of 2 videos.
Clarification : I am trying to merge 2 videos into 1, multiple times, quickly.I have two folders, one full of mp4’s in which I want in the beginning of the output video. Another full of mp4’s in which I want at the end of the output video.
Basically I am trying to merge the first video in folder1 with the first video in folder2, and then the second video in folder1 with the second video in folder2, etc...
Here is what I have, and I was trying to run this script inside the video directory of folder1.
for filename in *.mp4; do
vids2="/path/to/2nd/set/of/videos/${filename%.*}"
out="/path/to/output/folder/$(date +'%Y-%m-%d_%H:%M:%S').mp4"
ffmpeg -i "${vids2}.mp4" -i "${filename%.*}.mp4" -acodec copy -vcodec copy "$out"
doneI also tried this in which I ran from anywhere since I defined all the paths.
for filename in *.mp4; do
vid1="/path/to/folder1/videos/${filename%.mp4}"
vid2="/path/to/folder2/videos/${filename%.mp4}"
out1="/output/folder/$(date +'%Y-%m-%d_%H:%M:%S').mp4"
ffmpeg -i "$vid1" -i "$vid2" -acodec copy -vcodec copy "$out1"
donebut that didn’t work either...
Does anyone know what I am doing wrong ?