Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (75)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

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

Sur d’autres sites (11679)

  • How can I stream an image to YouTube using FFmpeg ?

    3 mai 2021, par Vladimir Putin

    I have an image that changes every few seconds. How can I stream it to YouTube using FFmpeg ?

    


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

    


  • How to get the information of bit-rate from YouTube videos ?

    21 janvier, par Ashutosh Singla

    I was using YouTube videos for my test and I was wondering how can I get the information of bit-rate of the played video ?

    



    I used 2 methods to know the information about the bit-rate but didn't get any information.

    



    1. Right-click on a video and choose "Stats for nerds".
2. ffmpeg -i input_video -f ffmetadata metadata.txt


    



    I don't know if by doing the right click on the video and then properties, then details would give me the correct way of showing the bit-rate.

    



    Any suggestions ?