Recherche avancée

Médias (0)

Mot : - Tags -/tags

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

Autres articles (17)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Soumettre bugs et patchs

    10 avril 2011

    Un logiciel n’est malheureusement jamais parfait...
    Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
    Si vous pensez avoir résolu vous même le bug (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (3025)

  • Get mime type for MediaSource.isTypeSupported

    6 mars 2016, par Guig

    How do I get the Mime type I need to pass to MediaSource.isTypeSupported with ffprobe/ffmpeg ?

    For instance, on my computer, that returns true :

    MediaSource.isTypeSupported('video/mp4; codecs="avc1.64000d,mp4a.40.2"')

    while that doesn’t

    MediaSource.isTypeSupported('video/mp4')

    I’m not sure how to get what would correspond to the avc1.64000d,mp4a.40.2 part for a given video. Here is a larger list of what this part may look like.

    ffprobe -show_streams -i video.mp4 returns a number of interesting informations, including

    codec_type=video
    codec_time_base=1/40
    codec_tag_string=avc1
    codec_tag=0x31637661

    and

    codec_type=audio
    codec_time_base=1/48000
    codec_tag_string=mp4a
    codec_tag=0x6134706d

    I’m not sure I should go with 'video/mp4; codecs="avc1.0x31637661,mp4a.0x6134706d"' since this returns false and I don’t know if it’s because it’s not the excepted argument or because the video is indeed not supported.

  • Get mime type for MediaSource.isTypeSupported

    11 mars 2024, par Guig

    How do I get the Mime type I need to pass to MediaSource.isTypeSupported with ffprobe/ffmpeg ?

    



    For instance, on my computer, that returns true :

    



    MediaSource.isTypeSupported('video/mp4; codecs="avc1.64000d,mp4a.40.2"')


    



    while that doesn't

    



    MediaSource.isTypeSupported('video/mp4')


    



    I'm not sure how to get what would correspond to the avc1.64000d,mp4a.40.2 part for a given video. Here is a larger list of what this part may look like.

    



    ffprobe -show_streams -i video.mp4 returns a number of interesting informations, including

    



    codec_type=video
codec_time_base=1/40
codec_tag_string=avc1
codec_tag=0x31637661 


    



    and

    



    codec_type=audio
codec_time_base=1/48000
codec_tag_string=mp4a
codec_tag=0x6134706d


    



    I'm not sure I should go with 'video/mp4; codecs="avc1.0x31637661,mp4a.0x6134706d"' since this returns false and I don't know if it's because it's not the excepted argument or because the video is indeed not supported.

    


  • hls : skip to next segment if the current is unavailable

    16 avril 2015, par wm4
    hls : skip to next segment if the current is unavailable
    

    Apparently, some live streams can delete segments too early, maybe
    because the client is too far behind. In this case, it’s better to skip
    the segment, instead of returning EOF. (Yes, the HLS demuxer actually
    returns AVERROR_EOF if opening the segment returns a 404 HTTP error.)

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/hls.c