
Recherche avancée
Médias (91)
-
Spoon - Revenge !
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
My Morning Jacket - One Big Holiday
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Zap Mama - Wadidyusay ?
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
David Byrne - My Fair Lady
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Beastie Boys - Now Get Busy
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (16)
-
Prérequis à l’installation
31 janvier 2010, parPréambule
Cet article n’a pas pour but de détailler les installations de ces logiciels mais plutôt de donner des informations sur leur configuration spécifique.
Avant toute chose SPIPMotion tout comme MediaSPIP est fait pour tourner sur des distributions Linux de type Debian ou dérivées (Ubuntu...). Les documentations de ce site se réfèrent donc à ces distributions. Il est également possible de l’utiliser sur d’autres distributions Linux mais aucune garantie de bon fonctionnement n’est possible.
Il (...)
Sur d’autres sites (3486)
-
How to make overlay not hidden under pad area
26 juin 2023, par Yousuf Essai have the following command where i want overlay two images above image


String command = '-y -i $backgroundImage1 -i $overlayImage1 -i $overlayImage2 -filter_complex '
 '"[1]scale=600:600[i1];'
 '[2]scale=600:600[i2];'
 '[0][i1]overlay=1200:1200[01];'
 '[01][i2]overlay=800:800'
 ',pad=width=iw:height=ih+1000:x=0:y=0:color=black'
 '" $outPutPath';



Now i notice if i position one of the overlay to be within the black pad area that i made so it be hidden behind it , how to solve, so the overlay on top pad ?


if anyone could help so kindly edit my full command because i just start to learn
ffmpeg
, thanks

-
Make sure templates with fade class are hidden before the transition is applied. Closes #2654
11 octobre 2013, par blueimpMake sure templates with fade class are hidden before the transition is applied. Closes #2654
-
Convert and download m3u8 to mp3 in Android [on hold]
27 novembre 2017, par GuruI wanted to download mp3 and mp4 file from an available m3u8 file in Android. So I used the ffmpeg library to do the work.Thanks to AmirHadifar
Using the ffmpeg method I am able to download the mp4 file
ffmpeg -i in.m3u8 -acodec copy -bsf:a aac_adtstoasc -vcodec copy out.mp4
Using this same code I am unable to download the mp3 from m3u8 file. Can someone point me to the proper way to download the mp3 file from m3u8 using ffmpeg