Recherche avancée

Médias (0)

Mot : - Tags -/masques

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

Autres articles (111)

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

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

  • ffmpeg : How to map mp3 input file list metadata to HLS output segments ?

    3 février 2017, par eagspoo

    I am trying to encode a list of mp3s into an HLS stream. This is basically working except that the output stream does not have the id3 metadata from the input mp3s encoded as timed metadata for HLS.

    Here is the command I am currently using :

    ffmpeg -y -f concat -re -i list.txt -vn -hls_flags delete_segments -hls_wrap 0 -hls_time 7 -map_metadata 0:g:0 ./hls/out.m3u8

    Using the map_metadata option was my attempt at copying this information but it did not work.

    Thanks for any help !

  • Get the list of I-Frames in a video using Python

    1er mars 2021, par Tina J

    I'm trying to get the list of indexes for all I-frames in a video in Python (and later save a portion of them as JPEG). Right now, I can traverse all frames using FFProbe in terminal, and see which one is I-frame :

    



    ffprobe -select_streams v -show_frames -show_entries frame=pict_type -of csv 18s.mp4


    



    which gives me something like this :

    



    frame,I
frame,B
frame,P
frame,B
frame,P
frame,B


    



    But how can I do that in Python (I'm in Windows) and get a list of all their indexes ?

    


  • ffmpeg - set pts for vfr video from list of values

    3 mars 2023, par DanWheeler

    I have a list of timestamps in milliseconds that I want to apply as the PTS values of a video stream. The video is a h264 stream without a container and I want to stream copy into an MKV with the PTS values from a text file.

    


    The video has a variable frame rate that I want to maintain precisely. Is this possible ?