
Recherche avancée
Autres articles (59)
-
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 ;
-
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 -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...)
Sur d’autres sites (7261)
-
qsv : Make the hevc idr_interval consistent with the h264 one
17 octobre 2017, par Luca Barbatoqsv : Make the hevc idr_interval consistent with the h264 one
According to the MediaSDK documentation the idr_interval value has
a different meaning depending on the codec :0 in H264 means make every I-frame IDR, in HEVC it means to have
it only at the beginning.1 in H264 means every other I-frame is not-IDR, in HEVC it means
that every I-frame is IDR.Keep the behaviour consistent between the two encoders by increasing
by 1 internally the idr_interval value for HEVC. -
Revision 109827 : Ajout d’options sur les saisies, et y++ - checkboxes et radios : pouvoir ...
6 avril 2018, par nicolas.dorigny@… — LogAjout d’options sur les saisies, et y++
checkboxes et radios : pouvoir désactiver certains choix (disable_choix)
checkboxes : nombre maximal de choix possibles (maximum_choix)
textarea : nombre maximal de caractères (longueur_max)
avec une vérification côté client (navigateur) en JS
TODO :vérifications en PHP
traduire la chaine en JS dans saisies/textarea.html, ligne 34 (chaine de texte avec une variable), pour l’instant en français "en dur"
-
FFMPEG : using filters for adding transparent watermark
13 mai 2022, par Sar sinuahow can i combine these two lines of code for adding transparent watermark (with Dynamic size)


ffmpeg -i 1.gif -i logo.png -filter_complex "[1]format=rgba,colorchannelmixer=aa=0.5[logo];[0][logo]overlay=(W-w)/2:H-h-5" -c:a copy output.gif

ffmpeg -i 1.gif -i logo.png -filter_complex "[1][0]scale2ref=w=oh*mdar:h=ih*0.1[logo][video];[video][logo]overlay=(W-w)/2:H-h-5" -c:a copy output.gif



i have tried the following code :


ffmpeg -i 1.gif -i logo.png -filter_complex "[1][0]scale2ref=w=oh*mdar:h=ih*0.1[logo][video];[1]format=rgba,colorchannelmixer=aa=0.5[logo];[0][logo]overlay=(W-w)/2:H-h-5" -c:a copy output.gif



i got the following Error :
Filter scale2ref has an unconnected output