Recherche avancée

Médias (0)

Mot : - Tags -/formulaire

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (77)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (7070)

  • 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 ?

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

    


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

    


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


    


    and another m3u8 for the audio segments :

    


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


    


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

    


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

    


  • 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;