Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (56)

  • 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

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

Sur d’autres sites (9713)

  • how to use ffmpeg filter_complex left to right transition

    23 octobre 2016, par Sylvie Shamir

    I’m trying to use ffmpeg filter_complex left to right transition so I have used this code :

    ffmpeg  -loop 1 -t 3.3333333333333 -i /tmp/img_580cb3cc39080_0.png
           -loop 1 -t 5 -i /tmp/img_580cb3cc39080_0.png
           -loop 1 -t 3.3333333333333 -i /tmp/img_580cb3cc39080_1.png
           -loop 1 -t 5 -i /tmp/img_580cb3cc39080_1.png
           -loop 1 -t 3.3333333333333 -i /tmp/img_580cb3cc39080_2.png
           -loop 1 -t 5 -i /tmp/img_580cb3cc39080_2.png
           -filter_complex "
           [1:v][3:v] overlay=x='(-w+(t)*((1/5)*(w)))':y=0[b1v];
           [3:v][5:v] overlay=x='(-w+(t)*((1/5)*(w)))':y=0[b3v];
           [0:v][b1v][2:v][b3v][4:v]concat=n=5:v=1:a=0,format=yuv420p[v]" -map "[v]" /var/zelda/public_dyn/tmp/video_580cb3cc39080.mp4

    and it works fine for the first transition but for the rest it gets stack on the middle and then changes to the next image.
    anyway, if I’m switching between the videos : [1:v][3:v] to be : [3:v][1:v] it works fine.

    Am I using it wrong ? or is it just a bug ?

    here are the two videos to demonstrate :
    video 1 (doesn’t work),
    video 2 (works but images switched)

  • configure : instruct MSVC 2015 to properly process UTF-8 string literals

    3 février 2017, par Hendrik Leppkes
    configure : instruct MSVC 2015 to properly process UTF-8 string literals
    

    Without the /UTF-8 switch, the MSVC compiler treats all files as in the
    system codepage, instead of in UTF-8, which causes UTF-8 string literals
    to be interpreted wrong.

    This switch was only introduced in VS2015 Update 2, and any earlier
    versions do not have an equivalent solution.

    Fixes fate-sub-scc on MSVC 2015+

    • [DH] configure
  • avcodec/wavpacl : Fix runtime error : left shift of negative value -1

    19 février 2017, par Michael Niedermayer
    avcodec/wavpacl : Fix runtime error : left shift of negative value -1
    

    Fixes : 607/clusterfuzz-testcase-5108792465293312

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/wavpack.c