Recherche avancée

Médias (0)

Mot : - Tags -/flash

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

Autres articles (35)

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

  • 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 : (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (8037)

  • ffmpeg - put video atop of second and center it while keeping aspect ratio

    25 août 2022, par artolini

    I'm trying to put 16:9 video atop of same blurred 1:1 video just like on the photos.
I'm looking a wise guy with ffmpeg knowledge to help me with think of about the command which will :

    


      

    1. rescale 16:9 (sharp video) accordingly to blurred one height (keeping the width automatically to ratio)
    2. 


    3. center the 16:9 (sharp video) to x position = (blurredVideoWidth / 2) - (sharpVideoWidth / 2)
    4. 


    


    My current comment looks like this :

    


    ffmpeg -y -i ${squareBlurredVideoUri} -i ${square169VideoUri} -filter_complex "[1:v]scale=620:-1[v2];[0:v][v2]overlay=0:0" -codec:a copy ${squareFinalVideoUri}

    


    As you can see scale is hardcoded to 620 which is wrong because we should rescale it accordingly to blurred video height.

    


    Overlay is set to 0:0 which places sharp video to x = 0 and y = 0 and should center it

    


    Thank you in advance.

    


    Current result :
current
Desired result :
desired

    


  • Anomalie #3473 : Dépassement du nombre de redirections du navigateur

    12 février 2017, par b b

    Grande classe marcimat, "tu es bon comme le pain" :)

  • Compling ffmpeg with libwebp error(s)

    30 avril 2018, par Madao

    So I’m trying to compile ffmpeg with —enable-libwebp. But I am getting the following errors :

    In file included from libavcodec/libwebpenc_animencoder.c:30:0:
    /usr/include/webp/mux.h:101:13: error: expected identifier or ‘(’ before ‘int’
    WEBP_EXTERN(int) WebPGetMuxVersion(void);
                ^~~
    /usr/include/webp/mux.h:107:13: error: expected identifier or ‘(’ before ‘WebPMux’
    WEBP_EXTERN(WebPMux*) WebPNewInternal(int);
                ^~~~~~~
    /usr/include/webp/mux.h:120:13: error: expected identifier or ‘(’ before ‘void’
    WEBP_EXTERN(void) WebPMuxDelete(WebPMux* mux);
                ^~~~
    /usr/include/webp/mux.h:126:13: error: expected identifier or ‘(’ before ‘WebPMux’
    WEBP_EXTERN(WebPMux*) WebPMuxCreateInternal(const WebPData*, int, int);
                ^~~~~~~
    /usr/include/webp/mux.h:163:13: error: expected identifier or ‘(’ before ‘WebPMuxError’
    WEBP_EXTERN(WebPMuxError) WebPMuxSetChunk(
                ^~~~~~~~~~~~
    /usr/include/webp/mux.h:179:13: error: expected identifier or ‘(’ before ‘WebPMuxError’
    WEBP_EXTERN(WebPMuxError) WebPMuxGetChunk(
                ^~~~~~~~~~~~
    /usr/include/webp/mux.h:192:13: error: expected identifier or ‘(’ before ‘WebPMuxError’
    WEBP_EXTERN(WebPMuxError) WebPMuxDeleteChunk(
                ^~~~~~~~~~~~
    /usr/include/webp/mux.h:225:13: error: expected identifier or ‘(’ before ‘WebPMuxError’
    WEBP_EXTERN(WebPMuxError) WebPMuxSetImage(
                ^~~~~~~~~~~~
    /usr/include/webp/mux.h:245:13: error: expected identifier or ‘(’ before ‘WebPMuxError’
    WEBP_EXTERN(WebPMuxError) WebPMuxPushFrame(
                ^~~~~~~~~~~~
    /usr/include/webp/mux.h:263:13: error: expected identifier or ‘(’ before ‘WebPMuxError’
    WEBP_EXTERN(WebPMuxError) WebPMuxGetFrame(
                ^~~~~~~~~~~~
    ...

    Is there a certain version of libwebp I need to be using ? Any help would be greatly appreciated.