Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (35)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (6449)

  • avcodec/vvcdec : fix seeking for open GOP

    3 février 2024, par Nuo Mi
    avcodec/vvcdec : fix seeking for open GOP
    

    how to reproduce :
    wget https://media.xiph.org/video/derf/y4m/students_cif.y4m
    vvencapp —input students_cif.y4m —preset faster —output students.266
    MP4Box -add students.266:fps=30000/1001:par=12:11 -new students.mp4
    ffplay students.mp4

    • [DH] libavcodec/vvc/vvc_refs.c
    • [DH] libavcodec/vvc/vvc_refs.h
    • [DH] libavcodec/vvc/vvcdec.c
  • avformat/mov_chan : do not assume channels are in native order

    29 janvier 2024, par Marton Balint
    avformat/mov_chan : do not assume channels are in native order
    

    Existing code could have caused wrong channel order signalling or reduced
    channel count if a channel designation appeared multiple times. This is
    actually an old bug, but the conversion to the new channel layout API made it
    visible, because now the code overrides the proper channel count with the one
    calculated from the mask.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/mov_chan.c
  • how to download sample-aes m3u8 with ffmpeg ? [hls prompts : Unable to open key file skd:xxxxxxx]

    18 octobre 2024, par Mam Ghagh

    I am newbie in programming and need help.
    &#xA;Story and Question -> I have a m3u8 manifest like :

    &#xA;

    #EXTM3U&#xA;#EXT-X-VERSION:5&#xA;#EXT-X-TARGETDURATION:7&#xA;#EXT-X-PLAYLIST-TYPE:VOD&#xA;#EXT-X-KEY:METHOD=SAMPLE-AES,URI="skd://xxxxxx",IV=yyyyyyy,KEYFORMAT="com.apple.streamingkeydelivery",KEYFORMATVERSIONS="1"&#xA;#EXTINF:6,&#xA;https://someurl.com/index_1_0.ts&#xA;#EXTINF:6,&#xA;https://someurl.com/index_2_0.ts&#xA;...&#xA;

    &#xA;

    which is available on https://someurl.com/my.m3u8
    &#xA;So, When I executed ffmpeg command
    &#xA;ffmpeg -i "https://someurl.com/my.m3u8" -c copy out.mp4
    &#xA;the following message appeared
    &#xA;[hls @ 000002de75f89bc0] Unable to open key file skd://xxxxxx
    &#xA;Now the question is, How should I address the key ? Should I save the key into a file and address it in the m3u8 manifest ? or any other answer ?

    &#xA;