Recherche avancée

Médias (0)

Mot : - Tags -/navigation

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

Autres articles (91)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

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

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

    24 mars 2014, par - Equipement

    Je vote pour _LOGO_RUBRIQUE_DESACTIVER_HERITAGE

  • Revision 872b207b78 : Moves transform type defines to vp9_common Moves transform type defines to vp9_

    30 septembre 2014, par Deb Mukherjee

    Changed Paths :
     Modify /vp9/common/vp9_common.h


     Modify /vp9/common/vp9_idct.h


     Modify /vp9/common/vp9_rtcd_defs.pl



    Moves transform type defines to vp9_common

    Moves transform type defines to vp9_common.h from vp9_idct.h
    so that they can be included in vp9_rtcd_defs.pl safely.

    Change-Id : Id5106227bee5934f7ce8b06f2eb9fa8a9a2e0ddb

  • Problems building Image slideshow with sliding transition using ffmpeg

    23 juin 2016, par nanestev

    I’m trying to create image slideshow with slide transition using ffmpeg and the following command :

    ffmpeg -loop 1 -i img1.jpg -loop 1 -i img2.jpg -loop 1 -i img3.jpg ^
    -filter_complex ^
    "nullsrc=size=800x600[v0]; ^
    [0:v]trim=duration=5,scale=800x600,setpts=PTS-STARTPTS[v1]; ^
    [1:v]trim=duration=5,scale=800x600,setpts=PTS-STARTPTS[v2]; ^
    [2:v]trim=duration=5,scale=800x600,setpts=PTS-STARTPTS[v3]; ^
    [v0][v1]overlay=x='min(-w+(t*w/0.5)\,0)':shortest=1[vv0]; ^
    [v1][v2]overlay=x='min(-w+(t*w/0.5)\,0)':shortest=1[vv1]; ^
    [v2][v3]overlay=x='min(-w+(t*w/0.5)\,0)':shortest=1[vv2]; ^
    [vv0][vv1][vv2]concat=n=3:v=1:a=0 [video]" -map "[video]" output.mp4

    I want every image to slide in from left for 0.5 seconds and stay for further 4.5 seconds, before it’s being overlapped by the next one and so on.

    First problem is that it takes 2-3 minutes to build video with just 3 images and I want to add more images which will result in extremely long build time.

    Second problem is that video should be 15 seconds long, but it’s only 8 as first image is shown for 5 seconds, second is shown for 2 and the last one just for 1 second.

    Your help will be greatly appreciated.