
Recherche avancée
Autres articles (91)
-
L’utiliser, en parler, le critiquer
10 avril 2011La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
Une liste de discussion est disponible pour tout échange entre utilisateurs. -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur
8 février 2011, parLa visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
Configuration de la boite multimédia
Dès (...)
Sur d’autres sites (10378)
-
ffmpeg AAC audio encoding with libfdk_aac : difference between -q:a and -vbr quality parameters ?
16 juin 2020, par RocketNutsI want to encode an audio file to AAC, using libfdk_aac, and I'm wondering about the quality parameters. I want to use variable bitrate encoding, not constant bitrate.



It seems I can specify the quality either with the
-vbr N
parameter (withN
=1..5) like this :


ffmpeg -i input.flac -acodec libfdk_aac -vbr 4 output.m4a




Or using the
-q:a N
parameter (hereN
=0..9) like this :


ffmpeg -i input.flac -acodec libfdk_aac -q:a 7 output.m4a




How are these two related, is there a substantial difference ? Do specific
-q:a
values correspond to certain-vbr
values, or is it a different encoding approach altogether ?

-
ffmpeg difference when using -lavfi or -filter_complex
25 mai 2020, par Luiz CieslakI've started to use ffmpeg recently. I have been using only the -filter_complex flag to apply filters. I stumbled upon this SO question :






A ffmpeg maintainer answers it using the -lavfi flag :



ffmpeg -i input.mp4 -lavfi "[0:v]scale=iw:2*trunc(iw*16/18),boxblur=luma_radius=min(h\,w)/20:luma_power=1:chroma_radius=min(cw\,ch)/20:chroma_power=1[bg];[bg][0:v]overlay=(W-w)/2:(H-h)/2,setsar=1" output.mp4



I tried to change -lavfi flag to -filter_complex :



ffmpeg -i input.mp4 -filter_complex "[0:v]scale=iw:2*trunc(iw*16/18),boxblur=luma_radius=min(h\,w)/20:luma_power=1:chroma_radius=min(cw\,ch)/20:chroma_power=1[bg];[bg][0:v]overlay=(W-w)/2:(H-h)/2,setsar=1" output.mp4



The result is the same and didn't notice a perf change.



Is there a difference when using either flags ?


-
avfilter/vf_colorkey : fix formula for calculation of difference
16 mai 2020, par Paul B Mahol