Recherche avancée

Médias (0)

Mot : - Tags -/alertes

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (57)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

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

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (11080)

  • add image to mov using ffmpeg

    23 juin 2012, par knishua

    i have seen this code on this link

    http://www.catswhocode.com/blog/19-ffmpeg-commands-for-all-needs

    " Mix a video with a sound file

    ffmpeg -i son.wav -i video_origine.avi video_finale.mpg "

    is it possible to add a seperate image ( created using ffmpeg and ) to a mov , say

    ffmpeg -threads 8 -i D:\imagesequence\dpx\brn_055.%04d.dpx  D:\imagesequence\dpx\test2.mov

    makes a movie, then is it possible to add an image (D:/imagesequence/dpx/final_with_text_mod_04.jpg) to the beginning of this mov using one ffmpeg command

    ffmpeg -i D:/imagesequence/background.jpg -vf "movie='D\:/imagesequence/dpx/thumbnail.jpg' [watermark]; [in][watermark] overlay=(main_w-overlay_w)/2:(main_h-overlay_h)/3 [out]" D:/imagesequence/dpx/final_with_text_mod_04.jpg

  • Unable to join silent at the beginning of still image with ffmpeg

    6 juillet 2022, par LXG

    I like to create a still image video for youtube this way

    


    [image]

    


    [1 sec silent ] [1.wav] [1 sec silent]

    


    ffmpeg -i ".\imported\1.png" -i ".\imported\1.wav" -f lavfi -i anullsrc=cl=stereo:r=44100:d=1 -c:v libx264 -tune stillimage -ac 2 -c:a aac -b:a 192k -pix_fmt yuv420p -filter_complex "[0:v][1:a] [2:a] concat=n=3:a=1 [a]" out.mp4


    


    I've tried in several ways but doesn't work, I get this error maybe because I don't understand how to use "concat" sources the error is :

    


    Stream specifier ':v' in filtergraph description [0:v][1:a][2:a] concat=n=3:a=1 [a] matches no streams.


    


  • ffmpeg - detect frames that have a given image/logo

    13 juillet 2012, par sofia

    I'm trying to split a video by detecting the presence of a marker (an image) in the frames. I've gone over the documentation and I see removelogo but not detectlogo ;)

    Does anyone know how this could be achieved ? I know what the logo is and the region it will be on.

    I'm thinking i can extract all frames to png's and then analyse them one by one (or n by n) but it might be a lengthy process..

    Any pointers ?

    Thanks :)