
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (81)
-
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...) -
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 (4661)
-
How to stack 2 raw videos ( YUV ) horizontally, using ffplay & lavfi ?
1er juillet 2024, par Pranav SodhaniI know how to stack 2 videos horizontally when they are in a container format using the following ffplay command :


ffplay -f lavfi “movie=movie1.mov[v0];movie=movie2.mov[v1];[v0][v1]hstack"



If my videos, however, are in YUV-format where can I specify the
pix_fmt
&video_size
flags ?

-
Embedding pure python(Cpython) on android
13 août 2020, par KiYugadgeterI want to create movie download app for android for learn.
To make develop easily, I would like to use youtube-dl for downloader backend.


So I want to embed Cpython runtime and ffmpeg (for convert movie format) to Android app.
Is it able to do with android NDK ?


Note that I know more better ways are exist.(like use java-friend python runtime or downloader implement as online server)


But I want to try to embed python and ffmpeg in app for learn.


Can it with Android NDK ?


-
How to add transparent watermark in center of a video with ffmpeg ?
5 novembre 2020, par mirzaI am currently using these commands :



Top left corner
ffmpeg –i inputvideo.avi -vf "movie=watermarklogo.png [watermark]; [in][watermark] overlay=10:10 [out]" outputvideo.flv

Top right corner
ffmpeg –i inputvideo.avi -vf "movie=watermarklogo.png [watermark]; [in][watermark] overlay=main_w-overlay_w-10:10 [out]" outputvideo.flv

Bottom left corner
ffmpeg –i inputvideo.avi -vf "movie=watermarklogo.png [watermark]; [in][watermark] overlay=10:main_h-overlay_h-10 [out]" outputvideo.flv

Bottom right corner
ffmpeg –i inputvideo.avi -vf "movie=watermarklogo.png [watermark]; [in][watermark] overlay=(main_w-overlay_w-10)/2:(main_h-overlay_h-10)/2 [out]" outputvideo.flv




How to place watermark center of the video ?