
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (61)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
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 ) (...)
Sur d’autres sites (6530)
-
Android - 360 video metadata
11 mai 2017, par XysSo with ffmpeg I’ve concatenated two 360 videos into one. The problem is that I lost all the 360 video metadata in the final video (so it’s not recognized as a 360 video anymore). If I use exiftool on the final video, I lack those metadatas :
- Spherical : true
- Stitched : true
- Stitching Software : Spherical Metadata Tool
- Projection Type : equirectangular
I’ve tried to inject those metadatas with ffmpeg, like this for example :
ffmpeg -i -metadata Spherical="true" -codec copy
I don’t get any errors doing that, but exiftool still doesn’t show the metadatas.
I know Google has a Python script that does this well, here .
But I would like to inject metadatas in my app as well, any help would be much appreciated,
thanks !
-
Using ffmpeg to remove green screen from video
27 mai 2024, par CYADI have a video : https://drive.google.com/file/d/1tiP2fX0Xfc6YjIymcHyEXP8-JqEJrlgG/view


I'm trying to use ffmpeg to remove the green screen but none of the commands I use work. I saved a frame as a png and was able to remove the green from it :


ffmpeg -i green.png -vf chromakey=green:0.1 out.png


but the video edit does nothing.


ffmpeg -i video.mp4 -vf chromakey=DarkGreen:similarity=0.2:blend=0.3 output4.mov


I'm on a windows machine and need to output a format iOS and Android can use, though multiple formats are fine. Any thoughts ?


-
Html page for displaying video in mobile
11 décembre 2012, par ViswaI am developing php pages for mobile, in one page i have to display video,
now i am testing the php page in google chrome, but in Google chrome not playing mp4,avi,etc. chrome playing only ogg and ogv format.I heard about ffmpeg, i installed in my Ubuntu 12.4 environment,
but it is also not converting to videos to ogg and ogv fromat.
it converting other format like mp4,avi,ect.Displaying video using
<video width="320" height="240" controls="controls" autoplay="true">
<source src="/SeeSayDo/<?php echo $model->av;?>"></source>
</video>user may uploads any video format like avi,mp4,flv,etc, so i have to display any format they uploaded.