
Recherche avancée
Médias (91)
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
-
USGS Real-time Earthquakes
8 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (56)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
(Dés)Activation de fonctionnalités (plugins)
18 février 2011, parPour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...) -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)
Sur d’autres sites (7324)
-
Join two corrupt Mp4 Files
13 mars 2019, par skmI have a corrupted MP4 file. I want to repair the file for which I have already read some answers at SO but none of them seem to work anymore (not free anymore).
I found another trial software which can repair only the first half of the video. Using that Software, I am successfully able to get the first half of my video. Therefore, I want to join the same video two times so that I can get my video repaired.
I am using Windows and have already downloaded
ffmpeg
. I tried to concatenate the videos following the answers on this SO post but concatenation did not work (probably because my .mp4 files are corrupt). -
Frame works/Packages for video editing in IOS ?
16 juillet 2014, par 2vision2I’ve just started working on video editing application for IOS.
What i am trying to do :
Trying to create a typical Video Editing application with the following features.
- Frames split-up(thumbnails)
- Adding/merging videos
- Adding audio to the video.
- Audio/Video Fadeouts.
- Zoom in and Zoom out functionalities
- Adding subtitles/Titles
- Audio Filtering.
What have i done so far :
Put a detail pre development study and found that FFMPEG can do the job. I have taken
the latest version of FFMPEG and built for IOS as .a files.However, i feel extremely hard to create a sample programs as i am beginner in ios.
Also i’ve found that the IOS SDK frameworks like CoreVideo, CoreAnimation, CALayers may help.
Now reading about OpenGLES.
What’s my problem :
-
Any help regarding finding the framework/package (from apple or third party) for the video editing application ?
-
Is FFMPEG the only option ? If yes, can you guys give me a link or sample programs to start with FFMPEG ?
-
Vertically stack two images, draw a box on the bottom image then write multiline text in that box
31 août 2020, par Sarmad S.I am trying to make a video from two images, where the two images should be vertically stacked. This is easy and can be done with the
vstack
command. I also managed to write text on the bottom image with thedrawtext
command. However I want to draw a blue box that covers half of the bottom image (the bottom part of the image) and write the text in that blue box.

How do I go about doing so ?


My code so far :


ffmpeg -loop 1 -i image1 -i image2 -c:v libx264 -t 3 -pix_fmt yuv420p -filter_complex "[1]drawtext=my-font.otf: text='some multiline text': fontcolor=white: fontsize=50: x=(w-text_w)/2: y=(h-text_h)/2[v1], drawbox; [0][v1]vstack" -s 1080:1920 output.mp4"



I also want to zoom slowly in the images (not the box or the text). Anyone can help me connect things ?


I am able to zoom, drawbox, write text etc, but not able to combine them together.