Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (24)

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (4507)

  • Convert chapters from xml to ffmetadata ?

    3 février 2021, par Soul Spark

    I wanted to add chapters to my encoded mkvs, but I get *.xml files when I download it from online. So is there any way to convert it to FFMETADATAFILE so that when I encode it using ffmpeg I can add chapters to my mkv ??

    



    Sample Input

    



    &lt;?xml version="1.0"?>&#xA;&#xA;&#xA;&#xA;-<chapters>&#xA;&#xA;&#xA;-<editionentry>&#xA;&#xA;<editionflagdefault>1</editionflagdefault>&#xA;&#xA;<editionflaghidden>0</editionflaghidden>&#xA;&#xA;&#xA;-<chapteratom>&#xA;&#xA;<chapteruid>95534594</chapteruid>&#xA;&#xA;<chaptertimestart>00:00:00.000000000</chaptertimestart>&#xA;&#xA;<chaptertimeend>00:01:30.000000000</chaptertimeend>&#xA;&#xA;<chapterflaghidden>0</chapterflaghidden>&#xA;&#xA;<chapterflagenabled>1</chapterflagenabled>&#xA;&#xA;&#xA;-<chapterdisplay>&#xA;&#xA;<chapterstring>Chapter 1</chapterstring>&#xA;&#xA;<chapterlanguage>und</chapterlanguage>&#xA;&#xA;</chapterdisplay>&#xA;&#xA;</chapteratom>&#xA;&#xA;&#xA;&#xA;</editionentry>&#xA;&#xA;</chapters>&#xA;

    &#xA;&#xA;

    Sample Output

    &#xA;&#xA;

    ;FFMETADATA1&#xA;title=bike\\shed&#xA;;this is a comment&#xA;artist=FFmpeg troll team&#xA;&#xA;[CHAPTER]&#xA;TIMEBASE=1/1000&#xA;START=0&#xA;#chapter ends at 0:01:00&#xA;END=60000&#xA;title=chapter \#1&#xA;[STREAM]&#xA;title=multi\&#xA;line&#xA;

    &#xA;&#xA;

    By the way I use ffmpeg in cli mode only.

    &#xA;

  • Downloading video & audio segment simultaneously with youtube-dl and ffmpeg

    7 décembre 2020, par Mtaly

    For an online streaming video that I would like to download I have two m3u8 files.

    &#xA;

    One for the video itself with segment-0.ts to segment-250.ts :

    &#xA;

    #EXTINF:6.000000,&#xA;segment-0.ts&#xA;#EXTINF:6.000000,&#xA;segment-1.ts&#xA;#EXTINF:6.000000,&#xA;segment-2.ts&#xA;#EXTINF:6.000000,&#xA;segment-3.ts&#xA;#EXTINF:6.000000,&#xA;segment-4.ts&#xA;

    &#xA;

    and another m3u8 for the audio segments :

    &#xA;

    #EXTINF:6.016000,&#xA;segment-0.aac&#xA;#EXTINF:6.016000,&#xA;segment-1.aac&#xA;#EXTINF:6.016000,&#xA;segment-2.aac&#xA;#EXTINF:6.016000,&#xA;segment-3.aac&#xA;#EXTINF:6.016000,&#xA;

    &#xA;

    So, I use youtube-dl and ffmpeg to download the both m3u8 separately then merge them to get the final mp4 (audio+video).

    &#xA;

    Is there a way to merge the files or use a combined command in the Terminal to automatically download both and merge them ?

    &#xA;

  • Facebook LIVE with ffmpeg error - av_interleaved_write_frame() : Connection reset by peer

    22 décembre 2016, par above14

    I’m trying to stream to Facebook a Live Video from an Amazon EC2 instance (c4.xlarge). I installed ffmpeg and stream with a command like the following

    ffmpeg -re -f concat -i /home/ec2-user/playlist.txt -f lavfi -re -i anullsrc=channel_layout=stereo:sample_rate=44100 -s 854x480 -c:a aac -strict -2 -ar 44100 -vcodec libx264 -f flv "{rtmp_link}"

    Everything works fine. I had LIVE videos that worked for up to 2 days in a row. Sometimes, without a reason, I got one of these videos interrupted with this error message :

    av_interleaved_write_frame(): Connection reset by peer

    I haven’t been able to figure out a reason for this error yet. The funny thing is that maybe I have 3 streaming going on in the same machine at the same time, and just one of them get stopped by this message. Other times this error happens where there’s just one streaming on the EC2 instance.

    Any ideas about how to find a solution ?

    EDIT

    We have installed a newer version of FFMPEG and the error now is more detailed. We have this message

    RTMP send error 104

    I haven’t found a lot about this issue online. Does someone know what error 104 means ?