
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (63)
-
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. -
Les statuts des instances de mutualisation
13 mars 2010, parPour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...) -
MediaSPIP Init et Diogène : types de publications de MediaSPIP
11 novembre 2010, parÀ l’installation d’un site MediaSPIP, le plugin MediaSPIP Init réalise certaines opérations dont la principale consiste à créer quatre rubriques principales dans le site et de créer cinq templates de formulaire pour Diogène.
Ces quatre rubriques principales (aussi appelées secteurs) sont : Medias ; Sites ; Editos ; Actualités ;
Pour chacune de ces rubriques est créé un template de formulaire spécifique éponyme. Pour la rubrique "Medias" un second template "catégorie" est créé permettant d’ajouter (...)
Sur d’autres sites (7566)
-
Extract motion vectors from x265 (HEVC) encoded video with ffmpeg/libavcodec ?
3 juillet, par John AllardI know that one can extract the motion vectors from an h264 encoded via by first setting the flag



av_dict_set(&opts, "flags2", "+export_mvs", 0);




then you can query the side-data for the motion vectors by doing this



sd = av_frame_get_side_data(frame, AV_FRAME_DATA_MOTION_VECTORS);




When I looked online to see if you can do something similar with HEVC encoded videos, I wasn't able to find any information. All I found was this by the definition of "AV_FRAME_DATA_MOTION_VECTORS"





Motion vectors exported by some codecs (on demand through the
 export_mvs flag set in the libavcodec AVCodecContext flags2 option).

 

The data is the AVMotionVector struct defined in
 libavutil/motion_vector.h.





but there was no information on exactly which codecs export this motion vector information. How would I go about finding this out ?


-
Extract motion vectors from x265 (HVEC) encoded video with ffmepg/libavcodec ?
16 novembre 2017, par John AllardI know that one can extract the motion vectors from an h264 encoded via by first setting the flag
av_dict_set(&opts, "flags2", "+export_mvs", 0);
then you can query the side-data for the motion vectors by doing this
sd = av_frame_get_side_data(frame, AV_FRAME_DATA_MOTION_VECTORS);
When I looked online to see if you can do something similar with HVEC encoded videos, I wasn’t able to find any information. All I found was this by the definition of "AV_FRAME_DATA_MOTION_VECTORS"
Motion vectors exported by some codecs (on demand through the
export_mvs flag set in the libavcodec AVCodecContext flags2 option).The data is the AVMotionVector struct defined in
libavutil/motion_vector.h.but there was no information on exactly which codecs export this motion vector information. How would I go about finding this out ?
-
Problems loading G.729 decoder with FFmpeg API
20 juillet 2015, par gapcI built a class with the use of the FFmpeg API to decode several audio files (mp3, ogg, G.729, etc) and load them into a data structure as raw audio data. Now for example when I run the following code :
codec = avcodec_find_decoder(AV_CODEC_ID_G729);
if (codec == NULL){
printf("Codec not found");
exit(1);
}The program will indeed output the error message, but if I load mp3 or ogg codecs there’s no issue.
So to double check I executed in the terminal
ffmpeg -decoders
to see if the decoder is supported (which I also checked online) and outputs :A....D g729 G.729
I need the decoder for G.729. Is there anything I’m missing or doing something wrong ? Is there a different way to load this decoder ? Any suggestions would be greatly appreciated.
The FFmpeg version installed is 2.7.1 on a Debian system
API use example : https://www.ffmpeg.org/doxygen/2.7/decoding_encoding_8c-example.html