Recherche avancée

Médias (0)

Mot : - Tags -/presse-papier

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

Autres articles (56)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (7773)

  • Why does ffmpeg generate a mpeg-dash mpd with long timeShiftBufferDepth even with window_size of one minute ? [closed]

    1er février 2024, par igorblima

    I'm having a problem with ffmpeg when i try to create a dynamic mpd from rtmp livestream. The vídeo integrity its ok and works fine, but the only problem is with the timeShiftBufferDepth. The command specifies how much window_size to have, but for some reason the timeShiftBufferDepth generated by ffmpeg doesn't respect that. I specified 1 minute of window_size, but for some reason unknown to me, the timeShiftBufferDepth is generated as 8 minutes

    


    the command :

    


    ffmpeg -i rtmp://localhost:1935/live/stream -c:v libx264 -b:v 1000k -c:a aac -b:a 128k -strict experimental -f dash -window_size 60 -utc_timing_url https://time.akamai.com/?ms -seg_duration 5 -remove_at_exit 1 -dash_segment_type mp4 h264.mpd


    


    result :

    


    timeShiftBufferDepth="PT8M19.9S"


    


    how i say previously, the mpd works fine in the player. The only issue is with that incorrect timeShiftBufferDepth

    


    i read the ffmpeg documentation https://ffmpeg.org/ffmpeg-formats.html#Options-19

    


  • avformat/matroskaenc : Don't check twice whether to write tags

    15 juin 2022, par Andreas Rheinhardt
    avformat/matroskaenc : Don't check twice whether to write tags
    

    Because not all metadata is written as tags, the Matroska muxer
    filters out the tags that are not written as tags.
    Therefore the code first checks whether a Tag master element
    needs to be opened for a given stream/chapter/attachment/global
    metadata. If the answer turns out to be yes, it is checked again
    whether a given AVDictionaryEntry is written as a tag.
    This commit changes this : The Tag element is opened unconditionally
    and in case it turns out that it was unneeded, it is discarded again.
    This is possible because the Tag element is written into its own
    dynamic buffer.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavformat/matroskaenc.c
  • How to convert image sequence to video using C ? [closed]

    29 mars 2021, par user13899543

    I would like to know a way(s) to convert an image sequence (.bmp) to a video file using C. The video may be compressed or not. The code is to be included in a cross-platform commercial app, so the suggestions need to have permissive licenses.

    &#xA;

    What I have tried :

    &#xA;

    I tried openCV (apache license), but this library seems to be C++ only and should not be used from C.

    &#xA;

    I tried using systems calls from inside the C app to ffmpeg and python-openCV, but of course, this is inconvenient as it forces the client to install extra software.

    &#xA;

    I cannot do dynamic linking to ffmpeg (LGPL) because we cannot fullfill all the EULA requirements (the reverse engineer one, for example).

    &#xA;

    ...

    &#xA;

    So any suggestions ?

    &#xA;

    Thanks !

    &#xA;