Recherche avancée

Médias (3)

Mot : - Tags -/pdf

Autres articles (93)

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

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (6123)

  • log : Unbreak windows support

    3 avril 2014, par Luca Barbato
    log : Unbreak windows support
    

    Add the missing define.

    • [DH] libavutil/log.c
  • libavformat/dashdec : Fix issue with dash on Windows

    8 octobre 2020, par Christopher Degawa
    libavformat/dashdec : Fix issue with dash on Windows
    

    Use xmlFree instead of av_freep

    snip from libxml2 :

    * xmlGetProp :
    ...
    * Returns the attribute value or NULL if not found.
    * It's up to the caller to free the memory with xmlFree().

    According to libxml2, you are supposed to use xmlFree instead of free
    on the pointer returned by it, and also using av_freep on Windows will
    call _aligned_free instead of normal free, causing _aligned_free to raise
    SIGTRAP and crashing ffmpeg and ffplay.

    Signed-off-by : Christopher Degawa <ccom@randomderp.com>

    • [DH] libavformat/dashdec.c
  • Fragmented MP4 has wrong duration in Windows Media Player

    3 février 2020, par Expressingx

    I’m streaming video from a camera to a file using ffmpeg. The case to use Fragmented MP4 is that there can be sudden power off and lose the video. I’ve configured the fragments to be at least 30 secs and this is how much the Windows Media Player reports for the duration even if its 2 hours long, after that it keeps streaming the video but is not seekable after the 30th second. How can be that fixed ?

    ffmpeg -c copy -movflags frag_keyframe+separate_moof+omit_tfhd_offset -min_frag_duration 30000000 -bsf:a aac_adtstoasc \ out.mp4

    If I use -movflags frag_keyframe+empty_moov then the video is not seekable at all and no duration reported.

    I aim for seekable video with correct duration both on VLC/Windows Media Player

    Version of ffmpeg : 3.3.4