Recherche avancée

Médias (91)

Autres articles (74)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, 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 (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (11641)

  • FFMPEG Subtitle Burning - Make Them Look Like Youtube Captions

    21 septembre 2016, par Spencer

    I want to burn subtitles into videos and make them look as close to the YouTube captions as possible. I’ve gotten pretty close with the following :

    ffmpeg -i VIDEOFILE.mkv -vf subtitles="f=SUBSFILE.vtt:force_style='FontName=Arial,FontSize=14,OutlineColour=&H55000000,BorderStyle=3,WrapStyle=2'" -y ENCODED-WITH-SUBS.mp4

    1. The major thing I want to fix in the above command is that when there are multiple lines, the backgrounds overlap.

    enter image description here

    If you look at captions on YouTube there is always a nice small amount of space between the backgrounds.

    enter image description here

    2. The second thing I’d like to do is make the corners of the backgrounds rounded if possible.

    I’ve looked through the documentation but I’m hoping I missed something. Thanks for any suggestions !

  • add thumbnail and metadata to mp3 file on converting using youtube-dl by python script

    18 septembre 2015, par arun pal

    I want to add metadata as well as thumbnail image to my mp3 file. How to do that , can anybody help me ?

    from __future__ import unicode_literals
    import youtube_dl

    n="cwHzy7ftLyI"

    ydl_opts = {
       'format': 'bestaudio/best',

       'verbose':True,

       'postprocessors': [{
           'key': 'FFmpegExtractAudio',
           'preferredcodec': 'mp3',
           'preferredquality': '192',
           }],
           'addmetadata':True,
           'embedthumbnail':True,
           'writethumbnail':True,
       }
    with youtube_dl.YoutubeDL(ydl_opts) as ydl:
       ydl.add_default_info_extractors()
       ydl.download(['http://www.youtube.com/watch?v='+n])
  • Youtube DASH stream through to iOS format

    29 juillet 2014, par viperfx

    I have a stream link of a DASH codec format audio file using youtube-dl. It plays fine in the browser but on iOS the DASH codec is not supported. I am wondering how I can use ffmpeg to transcode the HTTPS stream live and then resend it out an AAC encoded m4a file or something that the iOS SDK supports through streaming - mp3 also works. I think using something such as nginx as the middleware inbetween would be a good idea. I can use python app to receive the request /videoID, it would grab the stream link and transcode it live feed it to nginx which would serve the correctly transcoded format back to the iOS app.

    Does anyone have any suggestions/ideas on how to achieve this ? I am stuck on the details on the ffmpeg bit.