Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (77)

  • 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 tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • 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

Sur d’autres sites (7190)

  • RTMPDUMP watermark is possible ?

    21 novembre 2014, par sword1st

    Hey first of all sorry for my bad english. I’m trying to record some rtmp content with rtmpdump and it works great but I want to ask : Can I add a watermark when it’s recording ? - If it’s not possible - How can I add a watermark (bottom left) with ffmpeg ? When I try this one :

    ffmpeg –i inputvideo.avi -vf "movie=watermarklogo.png [watermark];
    [in][watermark] overlay=10:main_h-overlay_h-10 [out]" outputvideo.flv

    it fails with error :

    "[NULL @ 00000000043c6e00] Unable to find a suitable output format for 'ΓÇôi'ΓÇôi: Invalid argument"

    Any ideas how to fix ?

  • How to add watermark in a video in Android Application ? [on hold]

    20 décembre 2014, par user3581447

    I am developing an Android app in which I have to include a function to watermark in an existing video file. I searched more but didn’t get any perfect solution. Can anyone help me ?

  • Text watermark on video in php

    22 décembre 2014, par APURV PATEL

    I want to add custom watermark on selected video using ffmpeg in php

    I have getting no result in following code :

    $vid = 'store/'.$_FILES['vid']['name'];

    if(isset($_POST['submit']))
    {
       exec("ffmpeg -i '$vid' -i store/left.png -filter_complex overlay store/output.mp4");
    }

    Neither I got output nor error or warning using this. Please help me...OR suggest something new code for this...Thanks