Recherche avancée

Médias (91)

Autres articles (85)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • 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 ) (...)

Sur d’autres sites (5855)

  • x86/float_dsp : add missing femms

    8 juin 2014, par James Almer
    x86/float_dsp : add missing femms
    

    It was lost during the port.
    Should fix fate on 3dnowext machines.

    Signed-off-by : James Almer <jamrial@gmail.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavutil/x86/float_dsp.asm
  • How to discard context reinits during H264 video decoding from GStreamer webrtcbin

    20 mars 2019, par Szymon Piechaczek

    Gstreamer pipeline is receiving video this way :

    webrtcbin -> rtph264depay -> avdec_h264 -> ...

    I’ve enabled do_nack on rtpbin inside webrtcbin to make video quality better but the problem is that lost buffers from RTP cause ’sometimes’ h264 decoder to Reinit context to ... which makes the whole output video grey (with only movement visible) until the next keyframe is received (but this can happen many seconds later).

    I’ve noticed that EVENT_GAP is emitted right before context reinit but dropping them doesn’t help.

    How to make decoding artifacts acting ’as always’ on the corrupted video, not to fill the whole video with grey ?

  • avformat_write_header() changes my stream's time_base

    12 avril 2023, par greken

    I have a high framerate camera which can capture >2000 fps. My plan was to assign actual capture timestamps with µs resolution to the frames and encode with H.264 in a matroska file.

    &#xA;

    So I set the time_base of both the AVStream and the AVCodecContext to {1, 1&#x27;000&#x27;000}. But after calling avformat_write_header(avFormatContext, nullptr) I notice that the stream's time_base is {1, 1&#x27;000}. Now, since my framerate is double this resolution, I get identical consecutive timestamps and half my frames get lost when I extract them from the video file.

    &#xA;

    Does anyone have an idea why this is happening and what I can do about it ? Preferably in a way that preserves the correct timestamps.

    &#xA;