
Recherche avancée
Autres articles (106)
-
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 (...) -
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)
Sur d’autres sites (10906)
-
FFmpeg AVFilter overlay/watermark programmatically
22 avril 2015, par KageI’m trying to programmatically overlay either images or a video on the top of another video using FFmpeg. It seems that AVFilter can do this.
There are lots of examples of how to do this or similar things with the command line however, I have found no examples of using AVFilter programmatically apart from doc/examples/filtering.c which helps me but not really enough.
I can already decode and encode a video, I just need to learn how to filter the decoded frames and add a watermark.Are there any examples of using libavfilter programmatically ?
Are there examples of using the overlay or movie filters ?
-
FFMPEG - colorkey [closed]
17 mai 2024, par Acnologlai am using the following command to remove chroma key :


ffmpeg -i black.png -i video.mp4 -filter_complex '[1:v]colorkey=0x70d021:0.35:0.15[ckout];[0:v][ckout]overlay[out]' -map '[out]' video-.mp4


but it results in these strange things around her






-
Ffmpeg 2 mp4 combining
17 novembre 2014, par Fatih Uçarclass Program
{
static void Main(string[] args)
{
ProcessStartInfo startInfo = new ProcessStartInfo(@"C:\ffmpeg\bin\ffmpeg.exe");
Process.Start(startInfo);//ffmpeg open and close
startInfo = new ProcessStartInfo(@"C:\ffmpeg\bin\ffmpeg.exe", @"cat C:\1.mp4 C:\2.mp4 | ffmpeg -f mpeg -i - -vcodec copy -acodec copy C:\merged.mp4");
//this close:(
}
}2mp4 combining for windows form application ?
2 things I want to combine video
All I want to combine 2 mp4