
Recherche avancée
Médias (3)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (93)
-
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...) -
Pas question de marché, de cloud etc...
10 avril 2011Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
sur le web 2.0 et dans les entreprises qui en vivent.
Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...) -
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation"
Sur d’autres sites (9504)
-
How can I convert an FFmpeg AVFrame with pixel format AV_PIX_FMT_CUDA to a new AVFrame with pixel format AV_PIX_FMT_RGB
28 mars 2019, par costefI have a simple C++ application that uses FFmpeg 3.2 to receive an H264 RTP stream. In order to save CPU, I’m doing the decoding part with the codec h264_cuvid. My FFmpeg 3.2 is compiled with hw acceleration enabled. In fact, if I do the command :
ffmpeg -hwaccels
I get
cuvid
This means that my FFmpeg setup has everything OK to "speak" with my NVIDIA card.
The frames that the functionavcodec_decode_video2
provides me have the pixel formatAV_PIX_FMT_CUDA
. I need to convert those frames to new ones withAV_PIX_FMT_RGB
. Unfortunately, I can’t do the conversion using the well knwon functionssws_getContext
andsws_scale
because the pixel formatAV_PIX_FMT_CUDA
is not supported. If I try with swscale I get the error :"cuda is not supported as input pixel format"
Do you know how to convert an FFmpeg
AVFrame
fromAV_PIX_FMT_CUDA
toAV_PIX_FMT_RGB
?
(pieces of code would be very appreciated) -
avcodec/nvenc : set correct error code
27 novembre 2017, par Pan Bianavcodec/nvenc : set correct error code
In function process_output_surface(), the return value is 0 on the path
that av_mallocz() returns a NULL pointer. 0 indicates success, which
deviates from the fact. Return "AVERROR(ENOMEM)" instead of "0".Signed-off-by : Pan Bian <bianpan2016@163.com>
Signed-off-by : Timo Rothenpieler <timo@rothenpieler.org> -
avformat/aadec : Avoid copying data around
5 décembre 2021, par Andreas Rheinhardtavformat/aadec : Avoid copying data around
Up until now, the packets have been read in blocks of at most
eight bytes at a time ; then these blocks have been decrypted
and copied into a buffer on the stack (that was double the size
needed...). From there they have been copied to the dst packet.This commit changes this : The data is read in one go ; and
the decryption avoids temporary buffers, too, by making
use of the fact that src and dst of av_tea_crypt() can coincide.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>