Recherche avancée

Médias (1)

Mot : - Tags -/intégration

Autres articles (104)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (12385)

  • HTML5Rocks tag tutorial

    24 août 2010, par noreply@blogger.com (JL)

    The HTML5Rocks team has published a tutorial on the HTML5

  • Evolution #3274 (Fermé) : Pipeline post_action

    22 octobre 2014, par cedric -

    Cela parait difficile de faire un pipeline post-action generique car on ne pourra pas y passer les arguments de la fonction appelée, on ne peut pas distinguer les cas où l’action est appeler par ?action= et les cas ou l’action est appelée par un appel direct à la fonction par charger_fonction() etc.
    De plus certaines actions redirigent et ne permettent pas de prendre la main à leur sortie.
    Quand c’est ncessaire c’est à l’action de definir ses points d’entrée et d’appeler un pipeline si besoin.

  • FFMPEG how to edit the existing code to get video scaled and then overlay an image ?

    4 décembre 2017, par amperial

    I’m using a website script that has been created by someone who unfortunately doesn’t provide any help on this subject.

    Here is the piece of code :

    $com=$global_settings["ffmpeg_path"]." -i \"".$apath."\" -vcodec libx264 -strict -2 -t ".$duration." -vf ’movie=".$_SERVER["DOCUMENT_ROOT"].site_root."/content/watermark-video.png [wm] ;[in][wm] overlay=(main_w-overlay_w)/2 :(main_h-overlay_h)/2 [out]’ -vf scale=498 :-1 ".$flv_path ;

    It’s supposed to do what I need which is described in title of this post, but it doesn’t. It scales video, but doesn’t apply a png watermark. Any help will be appreciated.