Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (43)

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

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

  • Linux Gif Generating Issue Video To Animated Gif Generating Using FFMPEG

    15 octobre 2019, par Muhammad Asif

    I’m trying to create Animated Gif from video.

    My code works on Windows OS but when I put it on Linux/ Ubuntu hosting then it is not Working well.

    <?php
    $ffmpeg = "include/ffmpeg";                            
    $Get_From_duration = 3.0;                              
    $Duration_of_anime = 3.0;      
    $InputvideoFile = "test.mp4";
    $thumbname = "testgif";
    $size = "320:180";      
    $filter = "\"[0:v] fps=12,\"scale=$size:force_original_aspect_ratio=decrease,pad=$size:(ow-iw)/2:(oh-ih)/2\",split [a][b];[a] palettegen [p];[b][p] paletteuse\"";
    $outimageFileG = "/".$thumbname.".gif";
    $cmd = "$ffmpeg -ss $Get_From_duration -t $Duration_of_anime -i $InputvideoFile -filter_complex $filter $outimageFileG";
    shell_exec($cmd);  
    ?>

    I’m using FFMPEG https://ffbinaries.com/downloads Using ffmpeg 4.2 binaries Linux-64.

    I have not found any error log ! I’m confused.

  • Animated watermark moving on the edges of the movie - ffmpeg

    25 février, par saeid ezzati

    I wanna overlay a picture on a video, as a watermark. How do I insert an animated watermark that randomly moves from side to side.

    



    For example, 
A watermark, placed on top/ upper-left corner, moves randomly to the top/upper-right corner and freezes there for five seconds before moving down to the lower- right corner.

    



    I don't want the watermark to have a cross movement and move from the upper-right corner to the lower-left corner.

    



    Here is an example of my code, using which the watermark randomly jumps to a corner each 200 frames without animate :

    



    ffmpeg -i "source.mp4" -i "watermark.png" -filter_complex "[1:v]scale=50:-1[a]; [0:v][a]overlay=x='st(0,floor(random(n)*2)+1);if(eq(mod(n-1,200),0), if(eq(ld(0),1),0,  main_w-overlay_w   ) ,x)':y='st(0,floor(random(n)*2)+1);if(eq(mod(n-1,200),0),if(eq(ld(0),1),0,  main_h-overlay_h   ),y)'" -codec:a copy "out.mp4"


    


  • How to create an animated seekbar on top of video using ffmpeg [duplicate]

    13 décembre 2019, par Rehan

    I want to create an animated seekbar or use an image as seekbar on video using drawbox and overly filters of ffmpeg how it can be done. Please provide an example command either using ffmpeg or node-fluent-ffmpeg. In simple words any stylish seekbar those are used these days in social media videos.

    I found an example here but that is a :
    very simple and plain seekbar