Recherche avancée

Médias (1)

Mot : - Tags -/swfupload

Autres articles (63)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • 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

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (8770)

  • add ffmpeg.exe, ffprobe.exe, D3DCompiler_43.dll to exe file by using pyinstaller

    21 janvier 2020, par 임수진

    Execution Environment : Windows10, Anaconda, Python3.6

    My program use ffmpeg.exe, ffprobe.exe, D3DCompiler_43.dll in execution.

    I must make .exe file including them all.

    I try

    pyinstaller setup.spec

    It completed successfully.
    But, .exe file doesn’t work properly.

    setup.spec
    outcome of exe file

  • HTML5 Video FFMPEG Shell Script

    18 novembre 2011, par Schermy

    I wrote this quick and dirty shell script to run ffmpeg over a bunch of files to generate webm/ogg/h.264 videos for a HTML5 site.

    #!/bin/bash

    ext=$1
    enc=$2

    #!/bin/bash
    for file in *.$ext; do
           while pidof /usr/local/bin/ffmpeg; do sleep 10; done >/dev/null

           ffmpeg -i "$file" -s 1280x720 -b 500k  "${file/%$ext/$enc}"  
    done

    It works great for my purposes but I've noticed that each video now takes a lot longe to convert and ffmpeg is not taking advantage of my multi-core setup.

    I would like to improve this script when I have some time and make it available for use by others but I'd like to solve this issue first.

    Thanks in advance for all of your help.

    P.S. This is setup to use the ffmpeg installation from brew on the Mac (and yes I would like to make this script more platform agnostic later on).

  • Fade in image on existing video [closed]

    2 décembre 2024, par csphmay

    I'm currently trying to create a video which has a background image and a mp3 set for background audio and now I want to achieve to add a second image which fades in over 5 seconds. The result should be a video where the background image is shown and the second image is laying over it (The second image is basically a logo which I would like to place in the bottom right corner).

    


    To this point I wasn't able to achieve the result described above with a single FFMPEG command.
With the following two commands I generate the video with the first background image and with the second command I try to add the overlay which should fade in from 0-5 seconds. Unfortunately the second video will be black for the first 5 seconds and afterwards just the background image fades in from 5-10 seconds and the overlay is not even shown.

    


    ffmpeg -framerate 25 -loop 1 -t 00:04:52 -i background.jpg -i wedding.mp3 -c:v libx264 -c:a aac -pix_fmt yuv420p -shortest -y part1.mp4


    


    ffmpeg -i part1.mp4 -framerate 25 -loop 1 -t 00:04:52 -i overlay.png -filter_complex "[0:v][1:v]overlay=enable='between(t,5,4.52)':shortest=1,fade=t=in:st=5:d=5[v]" -map "[v]" -map 0:a -c:v libx264 -c:a aac -pix_fmt yuv420p -y output.mp4


    


    Is there a way to make this work with FFMPEG (at best only with one command) ?