Recherche avancée

Médias (0)

Mot : - Tags -/flash

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (59)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains 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, par

    Explications 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 2011

    Si 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 Vipul

    I 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
    Changelog : Add VDPAU HEVC to the list
    

    Signed-off-by : Philip Langdale <philipl@overt.org>

    • [DH] Changelog
  • FFDEC_H264 dropping non-key frames

    15 avril 2013, par Kranti

    I 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 info

    From 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