Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (31)

  • 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

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

  • Création définitive du canal

    12 mars 2010, par

    Lorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
    A la validation, vous recevez un email vous invitant donc à créer votre canal.
    Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
    A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)

Sur d’autres sites (2905)

  • Youtube dl for python : set mp3 last modif date date

    24 janvier 2021, par Vladimir Tarasov

    I'm using Youtube-dl (and ffmpeg) in a python project.

    


    The problem I have is that, on download, the downloaded file takes as default the youtube's release date of the video instead of the download date.

    


    My youtube-dl options

    


    ydl_opts = {
    'format': 'bestaudio/best',
    'outtmpl': path + urlToTitleYT(link) + '.mp3',
    'postprocessors': [{
        'key': 'FFmpegExtractAudio',
        'preferredcodec': 'mp3',
        'preferredquality': '320',
    }],
}


    


    Which opt could i use in order to change the file last modification date to the download date ?
(Or do i have to edit it manually ?)

    


  • Live stream videos on YouTube with ffmpeg ?

    30 janvier 2021, par Manuservus

    What the program should do :

    


    It should download a video from an URL.

    


    Then put the video into a streaming interface (on the right side there should be the live chat from YouTube, in the middle, there should be the downloaded video).

    


    Next stream it live to YouTube.

    


    The process should repeat endless times.

    


    Download video from URL —> Stream it live to YouTube in a streaming interface -> repeat the whole process.

    


    Is this even possible in Python ? If yes how ?

    


    I would appreciate any help !

    


    PS : The stream should run smoothly without a break. That means : As soon as a video is finished, the next comes straight away.

    


  • FFMpeg - PhantomJS to Youtube Live

    7 février 2021, par Victor P.

    I'm trying to stream a webpage captured with PhantomJS to Youtube using FMMpeg.
This is the command I use :

    



    xvfb-run phantomjs --web-security=no render.js | ffmpeg -threads 0 -y -v verbose -c:v png -r 30 -f image2pipe -i - -f lavfi -i anullsrc -strict -2 -acodec aac -ac 1 -ar 44100 -b:a 128k -c:v libx264 -s 1280x720 -pix_fmt yuv420p -f flv "rtmp://a.rtmp.youtube.com/live2/key";


    



    And the render.js code :
http://pastebin.com/raw/X9gv8iGH

    



    It looks like it's streaming, but no feed is received by YouTube, and I can't see where the problem is.
Outpout from my console