Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (72)

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

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

Sur d’autres sites (10335)

  • laravel ffmpeg Video not resizing

    9 octobre 2018, par JayJay123

    I’m using laravel ffmpeg and I am trying to resize the video but it’s unable to probe. Any suggestions ? here is my code

    $d= FFMpeg::open($filename)
    ->addFilter(function ($filters) {
       $filters->resize(new \FFMpeg\Coordinate\Dimension(640, 480));
    })
    ->save('newvideo.mp4');

    Thanks in advance

  • Add text or draw lines on video

    19 février 2015, par Hayk Nahapetyan

    I’m searching for some library or tool for android for editing videos(e.g. drawing lines, adding text on some part of it). I tried to get frames of the video and add the text on some of them but it took a lot of time (8 seconds for video with 20 seconds length). So is there any way for editing video in a short time ?

    thanks in advance

  • How to scale watermark with FFMPEG ?

    25 avril 2022, par Eduardo

    I am using ffmpeg to change the resolution and type(mp4) of my videos but I also want to add a watermark on them, but the problem is that the size of the watermark is different in every video I upload (on some videos the watermark becomes small and on other videos become bigger).

    


    Is there a way to add a watermark with a proportional scale to the videos so I don't have different sizes of the watermark ?

    


    Here's my code :

    


    ffmpeg -i input_video.avi -i watermark.png -s 1280x720 -filter_complex overlay=x=(main_w-overlay_w):y=(main_h-overlay_h) output_video.mp4

    


    Thanks in advance :)