
Recherche avancée
Médias (91)
-
Spitfire Parade - Crisis
15 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Wired NextMusic
14 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (66)
-
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
Changer son thème graphique
22 février 2011, parLe thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
Modifier le thème graphique utilisé
Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
Il suffit ensuite de se rendre dans l’espace de configuration du (...) -
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)
Sur d’autres sites (8270)
-
converting a 3d video from side/side to top/bottom
17 juin 2020, par Ginsoi have a 3d video where the images are side by side. The problem is, when my projector shows them alternately on full size, the subtitle(which is of course overlayed over the splitimage by the player) get's cut in half and distorted. Since i can't find a way to position the subtitle on one(or both) side, i would like to try to change the video to a top/down format.
Since most of the converter i found aren't free, i was wondering if this could be achieved by ffmpeg.
The resolution of the video is 1920x816. So, i need to cut out the left and the right half(960x816), convert them to 1920x408 and position the left on the top of the right to get 1920x816 again.
I would be ok, with doing this in multiple steps if i can't use a single command


-
How to merge two AVFrame in ffmpeg
28 septembre 2017, par Zeqi LaiRecently I am working on a ffmpeg-based project.
What I want to do is to merge two videos (say video1 and video2) in real-time and display.
And I tried to do the following steps in a loop :
(1) decode a frame (f1) from video1 ;
(2) decode a frame (f2) from video2 ;
(3) merge f1 and f2, and generate f3. e.g. f1 is the upper half of f3, while f2 is the lower half of f3 ;
(4) display f3.
But my problem is : f1 and f2 are in AVFrame format. How can I use two AVFrames (f1 and f2) to generate f3 which is also an AVFrame ?
Thanks !
-
Extract alpha from video ffmpeg android
24 juin 2018, par Yarik DenisykI want to overlay transparent video on the background image. I have a video where the top half is RGB object and bottom half is an alpha mask.
Now, for making this I do next steps :
1) I am extracting all frames from video and save to the folder
2) Each frame splitting to top and bottom half bitmap
3) Top bitmap composite with bottom mask for extract alpha and get a frame with transparent background
3) I am drawing each frame on the background and save to a folder
4) Create a video using FFmpeg
The problem is step 2, 3 and 4, they very slow. Maybe has another way to overlay transparent video on the background image ?