Recherche avancée

Médias (1)

Mot : - Tags -/swfupload

Autres articles (32)

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

  • how to create a radio or video "station" continuous TS stream with ffmpeg

    25 février 2020, par Zibri

    I can’t find any answer to this scenarios :

    Produce a continuous ts file that initially contains silence (or blank video), and as I add files to a text file I wish them to be queued in the output ts stream.
    Think of it as a radio or tv station.
    I found everything on how to stream anything to anything,
    but not a tv/radio broadcast like stream.

    A good start seems to be this :

    ffmpeg -re -y -nostats -nostdin -hide_banner -loglevel quiet -fflags +genpts -f concat -i list.txt -map 0:a? -map 0:v? -map 0:s? -strict -2 -dn -c copy -hls_flags delete_segments -hls_time 10 -hls_list_size 6 /var/www/html/showname_.m3u8

    list.txt example

    file '/mnt/vusolo-tv/show/Season 1/S01E01.mp4'
    file '/mnt/vusolo-tv/show/Season 1/S01E02.mp4'

    But i think there can be better ways...

    This is not a good answer either : From multiple video files to single output
    because "All files must have streams with identical encoding. Timebase for streams should be the same. Duration of all streams within a file should be the same, in order to maintain sync."
    And I want to be able to add arbitrary files and produce a TS stream playable by any TV (once broadcasted in dvb).

  • Find the streaming url source of an online streaming tv station to record with ffmepg

    20 mars 2016, par AHC

    I am trying to look into the javascript streaming source of the following site http://www.aztv.az/canli/aztv-canli.htm to capture the url and to record it using ffmpeg.

    My goal is to get something like this running :

    ffmpeg -i rtsp://XXX.XXX.XXX.XXX:XXX/live.sdp -acodec copy -vcodec copy c:/test_recording.mp4

    I don’t know what protocol this website uses, rtsp, rtmp, http, etc.
    Could you please help me to resolve this ?
    I tried to look into the .js file in the source of the page, but it is a bit complicated to figure it out. here is the js script.

  • How to Install ffmpeg on aws lambda machine ?

    25 avril, par Martin Blaustein

    I'm trying to run a node js script on AWS lambda that uses ffmpeg. To do this, I need to install ffmpeg on the machine itself.

    


    I have looked through the documentation but I could not find how to connect to the machine that runs the lambda.