Recherche avancée

Médias (91)

Autres articles (30)

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

  • avformat/hls : Try to implement RFC8216 playlist refusal

    14 mai 2023, par Michael Niedermayer
    avformat/hls : Try to implement RFC8216 playlist refusal
    

    This should fix the regression since 6b1f68ccb04d791f0250e05687c346a99ff47ea1

    Should fix Ticket10353 (please test and report cases that still fail)

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/hls.c
  • ffmpeg sometimes only creating one segment for the entire HLS playlist regardless which -hls_time i use [closed]

    10 mai 2023, par kusti420

    can someone explain why it works as it should with certain FLACs and with other ones it only creates one m4s segment and how to fix it where it would actually create one segment every 6 seconds for any flac, as it should with "-hls_time 6".

    &#xA;

    ffmpeg -i .\audio4.flac -c:a flac -vf pad="width=ceil(iw/2)*2:height=ceil(ih/2)*2" -ar 96000 -f hls -hls_time 6 -hls_playlist_type vod -strict -2 -hls_segment_type fmp4 -hls_segment_filename "idk%d.m4s" playlist.m3u8

    &#xA;

    when it doesnt work then logs print out like over thousand lines of :&#xA;[hls @ 0000026653933a00] Delay between the first packet and last packet in the muxing queue is 10069334 > 10000000: forcing output

    &#xA;

    i tried different versions of ffmpeg, running it on different devices and on different operating systems&#xA;was obviously expecting it to work the same for all flacs, but more than half the time it just isnt working as it should

    &#xA;

  • How to add srt embedded subtitles from source video, to ouput hls playlist video ?

    2 mars 2023, par iarwain8a

    I have a source video "video.mkv" that has srt embedded subtitles, and I want to encode that file into an HLS playlist that is compatible with html5 video player.

    &#xA;

    So far I got this :&#xA;ffmpeg -i <path> -map 0:s:1 -c:s:1 srt -f webvtt <hlsdir>/1subs.vtt -c:a aac_mf -b:a 128k -c:v copy -hls_time 7 -hls_list_size 0 -hls_segment_filename <hlsdir>/segment%d.ts <hlsdir>/playlist.m3u8 -loglevel debug</hlsdir></hlsdir></hlsdir></path>&#xA;What this line does, is extract and encode the subtitles at the same time, leaving them in the output folder, also it encodes the audio of the video to aac, and leaves the codec of the video as is.

    &#xA;

    I tried a bunch of different commands with ffmpeg to no avail, a bunch of different errors came up.&#xA;I want to, in the same line, instead of just extracting the subtitles, to also be able to add them to the hls playlist, which I couldn't do.

    &#xA;