Recherche avancée

Médias (91)

Autres articles (45)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

Sur d’autres sites (8159)

  • mid-roll ads in HLS or mpeg-dash [on hold]

    15 août 2018, par evan

    I’m encoding my videos with ffmpeg and transcoding them into HLS videos. I want to add mid-roll ads to my converted videos.

    I was wondering what is the best way to do it ? should I just add the ads to my video and make a big video stream and then do the HLS thing ? or I should break the HLs video and put the ads in the middle while playing ?

    My content is live streaming and I want to add mid-roll ads in the middle of my video while playing.

    ffmpeg -i main720.MTS -movflags faststart -s 640*360 -r 24 -vcodec libx264 -preset slow -tune zerolatency -tune fastdecode -b:v 300k -maxrate 300k -bufsize 400k -g 96 -an hls3/main720_300.mp4 -s 1280*720 -r 24 -vcodec libx264 -preset slow -tune zerolatency -tune fastdecode -b:v 700k -maxrate 700k -bufsize 1000k -g 96 -an hls3/main720_700.mp4 -hls_time 4 -hls_segment_filename 'hls3/file%03d.ts' -hls_list_size 0 hls3/out.m3u8
  • set ffprobe timeout for streaming protocols (srt,dash,hls,rtmp)

    1er avril 2024, par tester11

    I am trying to write a test where ffprobe after network stream was disconnected will try to open it only for a specified number of seconds, then return with nothing, which would signal that the stream is no more.
I tried to use

    


    


    -timeout 5

    


    


    key but ffprobe did not understand it. I will need such timeout for the 4 protocols as listed in the subject. Example

    


    ffprobe -show_format -show_streams rtmp://my_rtmp_link


    


    Edit :
By trying every single kind of timeout keys listed in ffprobe help I found that this one, one only, accomplishes what I need (in microseconds).

    


    ffprobe -show_format -show_streams rtmp://my_rtmp_link -rw_timeout 5000000


    


    So now I just wonder if it's actually the correct way to do it.

    


  • Why is PowerShell Eating my Dash

    11 novembre 2017, par gvkv

    In a directory vidtemp with files : G*53.mp4 (a series of GoPro videos) using PowerShell 5.0 :

    PS C:\Users\gvkv\vidtemp $sources = Get-ChildItem -Filter *53*
    PS C:\Users\gvkv\vidtemp $vin = [String]::Join(" ", $($sources | %{"-i $($_.Name)"}))
    PS C:\Users\gvkv\vidtemp $vin
    -i GOPR0053.MP4 -i GP010053.MP4 -i GP020053.MP4 -i GP030053.MP4 -i GP040053.MP4 -i GP050053.MP4

    PS C:\Users\gvkv\Videos\hockeytemp\tt\trw> $concat = [String]::Join(" ", `
    >> $(0..$($sources.count-1) | `
    >> %{"[$($_):v:0] [$($_):a:0]"}) + "concat=n=$($sources.count):v=1:a=1 [v] [a]" `
    >> )
    PS C:\Users\gvkv\vidtemp $concat
    PS C:\Users\gvkv\vidtemp [0:v:0] [0:a:0] [1:v:0] [1:a:0] [2:v:0] [2:a:0] [3:v:0] [3:a:0] [4:v:0] [4:a:0] [5:v:0] [5:a:0] concat=n=6:v=1:a=1 [v] [a]
    PS C:\Users\gvkv\vidtemp ffmpeg $vin `
    >> -filter_complex $concat -map '[v]' -map '[a]' `
    >> -c:v -crf 21 -preset slow
    >> out.53.mp4
    ...
    Unrecognized option 'i GOPR0053.MP4 -i GP010053.MP4 -i GP020053.MP4 -i GP030053.MP4 -i GP040053.MP4 -i GP050053.MP4'.
    ndError splitting the argument list: Option not found

    Note there’s no "-" on the first i. What’s happening and what do I do about it ?