Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (76)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

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

  • ffmpeg watermark

    7 avril 2016, par tomi

    I am using a static compiled lib of FFMPEG gotten from BAMBUSER for android.
    The problem I am facing now is that FFMPEG version gotten from BAMBUSER does not support watermarking.

    ffmpeg -sameq -i mirror_watermark.mp4 -vf "movie=mirror_watermark.png [logo]; [in][logo] overlay=main_w-overlay_w:main_h-overlay_h [out]" output.mp4
    No such filter: 'movie'

    ./configure --list-filters | grep movie
    returns nothing

    So I guess I have to use a newer version of FFMPEG but I do not know how to get started since with the BAMBUSER everything was already set I just added certain encoders and decoders to their script.

  • ffmpeg quality with watermark

    17 juin 2012, par trialgod

    i want to add a watermark to a video with ffmpeg. At this time nearly all things are computing properly, except the quality of the new video is massively lower than in the one of the original video.

    I also use ffmpeg-php and tried to set the minrate to the Bitrate of the original, but then i get an Error. Code seems like this at the moment.

    $video     = new ffmpeg_movie('hot_wheels_for_adults.flv');
    $watermark = 'path/to/watermark.png';
    $width     = $video->getFrameWidth();
    $height    = $video->getFrameHeight();
    $exec = 'ffmpeg -i hot_wheels_for_adults.flv ' .
           '-y -vf "movie=' . $watermark . ' ' .
           '[watermark]; [in][watermark] overlay=main_w-overlay_w-10:main_h-overlay_h-10 [out]" ' .
           '-f flv -s ' . $width . 'x' . $height . ' ' .
           '-minrate ' . $video->getBitRate() . ' ' .
           'bla2.flv';

    Thats it. Without the '-minrate' line the quality isnt good.
    Originalrate = 630615,
    Rate of new Video = 328000.

    With the '-sameq' flag i got a good quality, but it is raised from 6,5MB to nearly 30MB...

    What can i do now ?

  • how to do marquee type watermark in videos [closed]

    1er février 2013, par KRUNAL DOSHI

    I have seen videos which have marquee type watermark. i search about this in google and other forums but didn't get anything.
    How to add watermark like marquee in video ?