
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 (23)
-
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 ) (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (2587)
-
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.


-
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.


-
FFMPEG - chaining - Video, audio, ASS subtitle, then overlay logo ?
24 novembre 2020, par Flip BoothI have this to use a video, replace audio, and add subtitles :




ffmpeg -vsync 0 -hwaccel cuda -an -i "E :\video.mp4" -vn -i
"E :\audio.mp3" -vf "subtitles=E~:\sub.txt" -map 0:v -map 1:a -b:v
4M -maxrate 4M "E :\output.mp4" -y




I could not figure out how to add one more to the chain, such as adding a logo at the bottom right


What I've tried so far, after hours (still not working)




ffmpeg -vsync 0 -hwaccel cuda -an -i "E :\video.mp4" -vn -i
"E :\audio.mp3" -i "E :\logo.png" -vf "subtitles=E~:\sub.txt" -map
0:v -map 1:a -preset ultrafast -filter_complex
"[1]format=rgba,colorchannelmixer=aa=0.5[logo] ;[0][logo]overlay=(W-w)/2 :(H-h)/2:format=auto,format=yuv420p" "E :\output.mp4" -y