Recherche avancée

Médias (91)

Autres articles (105)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

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

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

Sur d’autres sites (12358)

  • +new logo sprite

    24 avril 2011, par Scott Schiller

    + demo/_image/logo-sprite.png +new logo sprite

  • Is it possible to run ffmpeg from inside a AMS installation ?

    6 septembre 2013, par Jose Quiroz

    I've searching way to run ffmpeg from inside a AMS installation but can't find any good info on how to do it. Is this even possible ? Any help would be greatly appreciated.

  • Batch overlay logo to directory of video files

    30 mars 2016, par AHC

    I am using this command in windows 8 to overlay a logo (mywatermark.png , 400x200) to a video file :

    ffmpeg -i E:\source\video01.mp4 -i E:\logo\mywatermark.png -filter_complex "[1:v]scale=100:50 [ovrl], [0:v][ovrl
    ]overlay=W-w-10:H-h-10[watermark]" -map "[watermark]" -map 0:a -codec:v libx264 -preset veryfast -crf 18 -codec:a copy E:\output\video01.mp4

    as you can see I am first rescaling my logo to 100:50 pixels, and then overlaying it to the bottom right corner.
    This is working for me.

    My question is :

    How can I repeat this to all of the videos in the same directory, adding the same logo to all ?

    I want to save the output video files same as the original, of course in different folder. However, not to forget that my source video files are of different quality and resolution.
    How can I add a parameter to the command line to proportionnally scale the logo in regard to the video file resolution ?

    I am afraid that if I don’t do this, the logo will be small in one file and bigger in another.
    thanks a lot