
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 (112)
-
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...) -
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...) -
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)
Sur d’autres sites (12380)
-
(FFMPEG) Make areas transparent before overlaying a vid with perspective
7 octobre 2020, par aaeimI'm trying to add perspective to a small video then overlay it on top of an other.



So far I can make the video small, add perspective to it and overlay it to an other video. but after applying the perspective filter, the excess areas don't turn transparent, they just stretch out the pixels.



the perspective filter doesn't have much documentation but as far as i could find out there was no way of setting the extra pixels to transparent.



So I'm guessing ill need to apply some kind of alpha mask, to the desired area ?



this is the command I'm using for perspective :



ffmpeg -i /synced_folder/testvid.mp4 -vf perspective=0:0:W:H/4:0:H:W:3*H/4:0:1:0 /synced_folder/output5.mp4




Don't think it matters but I'm running ffmpeg on a VM with centOS.



This is a SS of how the result looks like :


-
(FFMPEG) Make areas transparent before overlaying a vid with perspective
3 août 2016, par aaeimI’m trying to add perspective to a small video then overlay it on top of an other.
So far I can make the video small, add perspective to it and overlay it to an other video. but after applying the perspective filter, the excess areas don’t turn transparent, they just stretch out the pixels.
the perspective filter doesn’t have much documentation but as far as i could find out there was no way of setting the extra pixels to transparent.
So I’m guessing ill need to apply some kind of alpha mask, to the desired area ?
this is the command I’m using for perspective :
ffmpeg -i /synced_folder/testvid.mp4 -vf perspective=0:0:W:H/4:0:H:W:3*H/4:0:1:0 /synced_folder/output5.mp4
Don’t think it matters but I’m running ffmpeg on a VM with centOS.
-
Converting alpha channel of PNG sequence to Y channel of H265
31 mai 2018, par KrumelurI have a video renderer that expects two H265 streams (YUV420) and I need to bake them to have one of them form an alpha mask to the other one. This is all solved and works well, however if I follow the instructions here :
ffmpeg splitting RGB and Alpha channels using filter
the alpha channel is slighly off. My hypothesis is that this is due to the alpha channel being scaled through the RGB->YUV matrix.The input is a sequence of PNG files, the output is two MKV files.
The question is then : How can I tell FFmpeg to “reinterpret” the alpha channel as the Y channel without touching the pixel data ? Ideally by producing both MKV:s in one command line as shown in the other question, but at least without rewriting the source files.