
Recherche avancée
Médias (1)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (30)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
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 (4295)
-
How ffmpeg efficiently compare a png logo with video except png's transparent background pixels ?
17 décembre 2022, par Thm LeeI want to find frames with the logo image from video, and to concat theses frames without commercials for getting ad-free video.
I tried this first by using ffmpeg & jpg logo image.


ffmpeg -i input.mp4 -loop 1 -i logo.jpg -an -filter_complex crop=47:25:639:24,"blend=difference:shortest=1,blackframe=95:60" -f null -



And it works, but in the case by case, less accurate with blackframe setting number.
So I tried png logo image with transeparent background.


ffmpeg -i input.mp4 -loop 1 -i logo.png -an -filter_complex crop=47:25:639:24,"blend=difference:shortest=1,blackframe=95:60" -f null -



But on the contrary of my idea, the results came out worse than jpg logo. It seems that the cause is why ffmpeg compare the png's transparent background part pixels too with video.


Is there a way to compare png logo with video except png logo's transparent part pixels, and efficiently find frames with logo in the position of video ?


I'd appreciate your advice, thank you.


-
Need To add Logo as a Watermark on Video in Python 2.7 [closed]
13 avril 2021, par Piyush BaduleI need to add a watermark on video and make new video file. The Watermark will be the logo that is png file. I am using python 2.7 as project is built in Python 2.7 and Django. I need to process the video further and then need to upload on the youtube. So for that I need to attached the logo of the company as the watermark. I need to do it in python 2.7 specific. I am now getting anything I googled up and tried many solutions.


-
Is there is any Free/Open source libraries for compressing the video file /reducing file size of video file in android ?
18 février 2015, par ManuMy application deals video sharing. Here i need to reduce the size of videos/ compress the video, so that i can minimize the data upload/download. I went through many threads and most of the threads suggesting FFMPEG. I could integrate it with my application and it is working exactly how i want it to be. But now i came to know that it’s a commercial library, and i just have 15 days of trial period. :(
Any other alternatives ? Free/open source libraries which satisfies my requirements ?