
Recherche avancée
Autres articles (59)
-
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 ;
-
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 (...) -
Soumettre améliorations et plugins supplémentaires
10 avril 2011Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)
Sur d’autres sites (10709)
-
vmr9 surface with ffmpeg codec
7 janvier 2013, par VipulI am a multimedia newbie, so pardon me if I am asking a stupid question.
I want to use VMR9 surface while using the codec's from FFMPEG library.
So far my search result tells that VMR9 has it's own codec. And I am not able to find any VMR9 related API change the codec to use to one of those provided by FFMPEG library.Can anyone tell if there is some way to do that ?
Maybe an exaplme will help me understand better.Thanks
-
Changelog : Add VDPAU HEVC to the list
28 août 2015, par Philip Langdale -
FFDEC_H264 dropping non-key frames
15 avril 2013, par KrantiI am working on a sample GStreamer application to play MPEG2TS Video.
My pipeline is :
appsrc ! h264parse ! ffdec_h264 ! ffmpegcolorspace ! ximagesink
If I pump the data without setting any timestamp, all the frames are getting played
videoBuffer = gst_app_buffer_new (rawVideo, bufSize, test_free_video, rawVideo);
But if I set the timestamp to the buffer, only I-frames are getting played :
videoBuffer = gst_app_buffer_new (rawVideo, bufSize, test_free_video, rawVideo);
GST_BUFFER_TIMESTAMP(videoBuffer) = calc_timestamp(rawVideo);calc_timestamp()
is a function to calculate timestamp based on PES header infoFrom the GST_LOGS :
Dropping non-keyframe (seek/init)
Dropping non-keyframe (seek/init)
Dropping non-keyframe (seek/init)The above logs are getting repeated. I don't have any clue, why is this happening ? Any input would be appreciated.
Thanks in advance,
Kranti