
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (74)
-
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 (6166)
-
FFMPEG rotate command show black color on edges
11 décembre 2022, par Najih Zidani am using command
ffmpeg -i NoAudio.mp4 -i cat-face-emoji.png -filter_complex "[1]rotate=a=140[ov1];[0][ov1]overlay=480:270" -c:a copy output.mp4 -y
to rotate image 140 degree but black background show on edges.

Here output video : https://app.dadan.io/video/share/nmmU8uiyCl2YVYm4


I am expecting to rotate image without any additional edges as the image in png.


-
FFmpeg - merge videos with different rotation
1er octobre 2019, par sir.zaquanI work with FFmpeg on Android. I have 2+ videos - from front-camera and main-camera. And I want to merge them into one video.
But videos from front-camera are upside-down. Rotation of video from fr.camera - 270, from main - 90.
How can I merge them properly ?
Now I use this :val inputCommand = arrayListOf<string>()
inputCommand.add("-noautorotate")
inputCommand.add("-i")
inputCommand.add(videoPath)
inputCommand.add("-map_metadata")
inputCommand.add("0")
if (angle.equals("270", true)) {
inputCommand.add("-metadata:s:v:0")
inputCommand.add("rotate=180")
}
inputCommand.add("-codec")
inputCommand.add("copy")
inputCommand.add("-preset")
inputCommand.add("ultrafast")
inputCommand.add("-b:v")
inputCommand.add("1500k")
inputCommand.add(outputFile.path)
inputCommand.add("-y")
</string>But it doesn’t work. -metadata:s:v:0 rotate=180 doesn’t do anything.
I also tried to use -vf transpose=1,transpose=1 but it doesn’t have effect too.What to do ?
ffmpeg version n4.0-39-gda39990
Input and Output metadata doesn’t change.
Metadata:
rotate : 270 -
ffmpeg : Make letters appear one at the time, like a typewriter
10 octobre 2020, par Davide Vitiello