
Recherche avancée
Autres articles (54)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
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 (10602)
-
avformat/hlsenc : Use HLS version 2 if rounded durations are enabled
29 juin 2022, par Lucyavformat/hlsenc : Use HLS version 2 if rounded durations are enabled
This allows for wider compatibility with older devices, such as those
running iOS 3. The only difference between HLS version 2 and version 3 is
that version 3 supports non-integer EXTINF values, and as such, we can
default to version 2 if we're using whole-integer EXTINFs anyways, when
`-hls_flags round_durations` is set.As this code seems to otherwise consistently use the lowest compatible
version, this seems to fit in properly with existing behavior.Testing confirms with that this patch, HLS output can work all the way back
to iOS 3.Reviewed-by : Steven Liu <liuqi05@kuaishou.com>
Signed-off-by : Lucy <lucy@absolucy.moe> -
Creating an FFMPEG rounded corners filter with anti-aliasing
22 août 2022, par vstrom coderI am using an ffmpeg filter that rounds the corners of a video as described in the answer to this question which works as expected.


Is it possible to add anti-aliasing so that the corners do not look pixelated ?
I was thinking about these probable solutions :


- 

- Extend the mathematical function in a way that would create semi-luminant pixels at the edges.
- Instead of calculating the luminance of each pixel, round the corners using an image and then apply transparency using an "alphamerge" filter.






Any other suggestions are welcome.


-
How to draw text on a rectangle with rounded corners using ffmpeg ?
2 mars 2023, par eugene_prgI'm trying to draw text on a rectangle with rounded corners using ffmpeg, but my current command is not working.




Here's what I've tried :


ffmpeg -y -i ./video-ready-all.mp4 -filter_complex "drawbox=y=0:color=white@0.5:width=iw:height=40:t=max, drawbox=y=0.5*(ih-40):color=black@0.5:width=iw:height=40:t=max:round=20, drawtext=text=\'My Text Here\':fontcolor=white:fontsize=24:x=(w-tw)/2:y=(h-40-th)/2" -c:a copy ./output.mp4



Unfortunately, this gives me an error "Option 'round' not found". Does anyone have any ideas on how to draw a rectangle with rounded corners using ffmpeg and overlay text on it ? Thanks in advance !


Any ideas are welcomed !