Recherche avancée

Médias (0)

Mot : - Tags -/serveur

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

Autres articles (28)

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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

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

  • Which decoder does ffmpeg actually use ? [closed]

    8 décembre 2024, par LTR

    How can I get ffmpeg to show exactly which decoder it uses ?

    


    Example 1

    


    In this example, I request Intel QuickSync decoding. However, QuickSync is not available because it's running on an AMD CPU. ffmpeg seems to fall back to CPU decoding, but doesn't say anything about that :

    


    > ffmpeg -hwaccel qsv -i "file.mp4" -f null -
...
(nothing in the output refers to choice of decoder)


    


    Example 2

    


    In this example, we request "auto" hardware acceleration.

    


    > ffmpeg -hwaccel auto -i "file.mp4" -f null -
...
[h264 @ 000001ed37d7a040] Using auto hwaccel type dxva2 with new default device.


    


    Ffmpeg says that it uses the DXVA2 API with the default device. This is better than nothing, but it would be helpful if it said the name of the device chosen.

    


    How can I instruct ffmpeg to always output this information ? I tried "-v verbose" but did not find anything in the output regarding the choice of decoder.

    


    Related : How do I know if ffmpeg is using a hardware decoder ?

    


  • ismindex : Use the individual stream duration instead of the global one

    3 octobre 2013, par Martin Storsjö
    ismindex : Use the individual stream duration instead of the global one
    

    The stream duration is used for calculating the duration of the
    last fragment easily without manually parsing anything else than
    the mfra/tfra atoms. When the global file duration was used
    previously, the duration of the last fragment could end up wrong
    if the streams weren’t equally long.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] tools/ismindex.c
  • Dump individual segment links of m3u8 file from FFFPEG/FFPROBE ?

    22 janvier 2023, par Hemant patel

    I am working on android app, in which i need to read individual segments of remote M3U8 file and downlnlad each segment locally and create local m3u8 file. For thati want to parse m3u8 file and get download links for each segment. I saw that FFMPEG can eaisly download m3u8 file, and while downloading it prints each segment url.

    &#xA;

    enter image description here

    &#xA;

    I want to print ts file links in json format, and then dump thaose links to my download manager.

    &#xA;

    Please help.

    &#xA;

    I tried all answers from stackoverflow/google but did not find any thing working

    &#xA;