Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (59)

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

  • Evolution #3179 : Pouvoir désactiver l’héritage de logo entre les rubriques (via une constante)

    13 mars 2014, par b b

    Ça me semble être une bonne idée, sans ça on est obligé de fourber à coup de :

    [(#LOGO_RUBRIQUE|matchrubon#ID_RUBRIQUE\.|oui)[(#LOGO_RUBRIQUE|image_reduire150,150)]]

    Reste à voir si le nom de la constante convient à tout le monde et hop commit :)

  • How do i overlay logo & transcode with low Bandwidth/CPU ? [on hold]

    30 janvier 2017, par S Xhaferaj

    I’m transcoding a 1GB .mp4 movie with overlay and saving it as output.mp4
    But when it saves it doubles or triples the size of GB’s 1GB = 2.5/3GB.

    Anyway to transcode and save the output with similiar bandwidth or atleast if its 1GB TO 1.5 but triple, its alot...

    This is my code i use....

    ffmpeg -i A2016.mp4 -i http://example.png -filter_complex "[1:v]format=argb,geq=r='r(X,Y)':a='0.6*alpha(X,Y)'[zork];[0:v][zork]overlay" -vcodec h264 -acodec aac -strict -2 -ac 2 -dn -preset ultrafast -aspect 16:9 -r 25 -g 50 -threads 0 trA.mp4

    Any help, Greatly appreciated !

  • Add logo in a specific time interval relative to the end

    14 novembre 2014, par Kåre Brøgger Sørensen

    Is there a way - in a one liner - where I do not have to use ffmpeg to calculate the duration of the whole video before i render ..

    I would like something like :

    ffmpeg -i ny_video_no_logo.mp4 -i ~/Pictures/home_logo_roed_new.png -filter_complex "[0:v][1:v]overlay=main_w-overlay_w-10:main_h-overlay_h-10:enable='between(t,5.50,FULl_LENGTH - 10)'" -codec:a copy out.mp4

    I there a simple way like the "main_w" to get the video length inserted - I am using a non existing variable FULL_LENGTH in the above ?

    Or do i have to make a ffmpeg -i and extract the time from this ?