
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (50)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
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 -
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 ;
Sur d’autres sites (8992)
-
ffmpeg masks more than one overlay, how can I mask only one ?
6 juin 2020, par Jonathan Winger-LangI am trying to use an alpha mask to mask the corners of a video, it works. But then I try to add another image on top of them and it is also masked.



How can I mask only the one video, not subsequent layers ?






Here you can see that the phone frame is also masked, since it does not goo beyond the (x-axis) edges of the phone.



My script :



ffmpeg -i input.mp4 \
 -loop 1 -i mask.png \
 -i background.png \
 -loop 1 -i frame2.png \
-filter_complex \
 "[0][1] alphamerge [masked_video]; \
 [masked_video][3] overlay=(main_w-overlay_w)/2:(main_h-overlay_h)/2 [phone]; \
 [phone] scale=(iw*0.5):(ih*0.5) [scaled_phone]; \
 [2][scaled_phone] overlay=100:100" \
-shortest out.mp4




Thank you


-
what is audio PCM's frame sync word to identify the beginning position
12 décembre 2019, par chang jcAs title ; for some compressed format such as EAC3, AC3 frame starts as a sync word.
So what’s PCM (raw audio)’s sync word ? How to identify the beginning of a PCM frame ?
I met a problem where audio is concatenated by several audio segments and each of them has different frame size. I need to identify the start position.
Thanks in advance.
-
avformat/dtsdec : Extend DTS core sync word
28 avril 2015, par foo86avformat/dtsdec : Extend DTS core sync word
Check extended sync word for 16-bit LE and BE core streams to reduce
probability of alias sync detection. Previously sync word extension was
checked only for 14-bit streams.This follows up the similar change in avcodec/dca_parser.
Signed-off-by : Michael Niedermayer <michaelni@gmx.at>