Recherche avancée

Médias (91)

Autres articles (85)

  • 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 ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (8313)

  • avfilter/drawtext : present 'hms' formatted 'pts' in 24h format

    7 mai 2018, par Vishwanath Dixit
    avfilter/drawtext : present 'hms' formatted 'pts' in 24h format
    

    HMS is formatted as HH:MM:SS.mmm, but, HH part is not limited to
    24 hours. For example, the the drawn text may look like this :
    243029:20:30.342. To present the timestamp in more readable and
    user friendly format, this patch provides an additional option
    to limit the hour part in the range 0-23.

    Note : Actually the above required format can be obtained with
    format options 'localtime' and 'gmtime', but, milliseconds part
    is not supported in those formats.

    • [DH] doc/filters.texi
    • [DH] libavfilter/vf_drawtext.c
  • decode raw buffer with ffmpeg av_codec_video_2

    19 décembre 2015, par will.I4M

    I’m trying to write a decoder for a webrtc app in C. I receive a RTP stream, I parse every packet, reorder them, and put the payload in a AVPacket, as described here (FFmpeg decode raw buffer with avcodec_decode_video2).
    The reordering part is not described in this link but I’m pretty sure this part is OK.

    The question is, I dont know how to give the decoder information about resolution, pix_fmt etc. Do I need to create an AVstream* and fill it with all information I took from rtp header ?

    Do someone have a piece of running code that decode a VP8 packet depacketized without the use of rtp_dec etc.?

    In this link, no more information seems to be sent to the decoder, is it able to decode without knowing resolution and without any header ?

  • Free and open-source lib to decode x.265 (HEVC) stream in a C project ?

    10 octobre 2020, par Ashkan Kh. Nazary

    I'm doing a project in C which requires playing an incoming stream of HEVC content to the user. My understanding is that I need a library that gives me an API to a HEVC decoder (not and encoder, but a decoder). Here are my options so far :

    


      

    • The x265 looks perfect but it's all about the encoding part (and nothing about decoding it !). I'm not interested in an API to a HEVC encoder, what I want is the decoder part.
    • 


    • There is libde265 and OpenHEVC but I'm not sure they have what I want. Couldn't find it anywhere in their docs that there is an API that I can use to decode the content but since there are players out there using those libs, I'm assuming it must be there somewhere ... couldn't find it though !
    • 


    • There is ffmpeg project with its own decoders (HEVC included) but I'm not sure this is the right thing since I only want the hevc decoder and nothing else.
    • 


    


    Cheers