Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (104)

  • 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

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (8080)

  • Revision d82eb9d195 : Match unsigned types Fixes build warning in MSVC : vp9\vp9_dx_iface.c(420) : war

    29 avril 2013, par Johann

    Changed Paths :
     Modify /vp9/vp9_dx_iface.c



    Match unsigned types

    Fixes build warning in MSVC :
    vp9\vp9_dx_iface.c(420) : warning C4018 : '<' : signed/unsigned mismatch
    vp9\vp9_dx_iface.c(423) : warning C4018 : '<' : signed/unsigned mismatch

    Change-Id : Ia238071aee94b2f882c1e74c380adc3df506dfb6

  • ffmpeg Loop the short video so it can match the duration of the a long audio [closed]

    16 avril 2024, par andrew cummins

    I have a list of mp4 files and mp3 files in a directory. I need the following

    &#xA;

      &#xA;
    1. loop the short mp4 so it can match the duration of the mp3 file
    2. &#xA;

    3. export mp4 file with new audio.
    4. &#xA;

    5. But we want the mp4 in portrait mode.
    6. &#xA;

    &#xA;

    ffmpeg -stream_loop -1 -i video.mp4 -i audio.mp3 -map 0:v -map 1:a -preset slow -shortest -movflags &#x2B;faststart output.mp4&#xA;

    &#xA;

    I have this code in ffmpeg, but i would need to have output in portrait mode.

    &#xA;

    the code works, but the issue is having the video output in portrait mode without stretching the video.

    &#xA;

  • FFmpeg : animate image size to match music loudness

    22 juillet 2019, par skitzo

    This is for a script to generate Instagram video content. I have a script that merges an audio clip, video clip, and a logo centered throughout the whole output video’s duration.

    Goal : make the logo change size to match the audio waveform. The logo should look like it’s reacting to the beat.

    How can I achieve this using FFmpeg ? I don’t know if FFmpeg has this capability. Perhaps I could

    1. Use another library to get a volume array of the audio clip

    2. Generate an array of image sizes for the logo based on that volume array

    3. Read that array with FFmpeg ?

    1 and 2 are definitely possible but I don’t know how to approach step 3.

    Here’s the current command in my script that merges audio, video, logo, and crops the video into a square.

    ffmpeg -i video_path -i logo_path -i audio_path -filter_complex "[0:v]scale=-2:720,crop=500:500[bg];[bg][1:v] overlay=(W-w)/2:(H-h)/2" -      pix_fmt yuv420p -map 0:v -map 2:a -shortest out_path