Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (52)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

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

Sur d’autres sites (6549)

  • ffmpeg - read imagefolder and add Watermark

    31 juillet 2015, par dazzafact

    Rightnow iam using successful this command to read an imagefolder and create a videofile

    ffmpeg -f image2 -pattern_type glob -i 'image2/in*.png'
    -vf fps=25/1 -s 720x576 -b 1000k out.flv -timeout 3

    But i also wanna add a Watermark to the Video, but it will not work with this :

    ffmpeg -f image2 -pattern_type glob -i 'image2/in*.png'
    -vf fps=25/1 -s 720x576 -i logo_fff.png -filter_complex
    "overlay=10:main_h-overlay_h-10"-b 1000k out.flv

    The command to create the watermark separtly 100% works with a Videofile but not with an imagefolder ?

    ffmpeg -i in.flv -s 720x576 -i logo_fff.png -b 1000k
    -filter_complex "overlay=10:main_h-overlay_h-10" out.flv

    Where is the mistake ?

  • how to speed up video and add watermark using ffmpeg

    30 octobre 2017, par 1234567

    How can we speed up video and add watermark using ffmpeg

    for speed up video we have this command

    ffmpeg -i input.mp4 -filter_complex "[0:v]setpts=0.5*PTS[v];[0:a]atempo=2.0[a]" -map "[v]" -map "[a]" output.mp4

    for water mark we use

    "-y", "-i", j, "-i", image1, "-i", image2, "-i", image3, "-filter_complex",
                  "[0:v][1:v] overlay=0:0:enable='between(t,1,2)'[tmp];" +
                          "[tmp][2:v] overlay=0:0:enable='between(t,5,7)'[tmp];"+
                          "[tmp][3:v] overlay=0:0:enable='between(t,9,11)'",
                   "-c:v","libx264",  "-preset", "ultrafast", out;

    how can we merge bot commands I have various commands
    like this

       ""-y", "-i", j, "-i", image2, "-i", image2, "-i", image2, "-filter_complex",
        "[0:v]setpts=0.5*PTS[v];[0:a]atempo=2.0[a]" +
                "[1:v] overlay=0:0:enable='between(t,1,2)'[tmp];" +
                     "[tmp][2:v] overlay=0:0:enable='between(t,5,7)'[tmp];"+
                       "[tmp][3:v] overlay=0:0:enable='between(t,9,11)'",
               "-map", "[v]", "-map", "[a]", "-b:v", "2097k", "-r", "60", "-vcodec", "mpeg4",
                 "-preset", "ultrafast", out"

    how can we speed video and add watermark

    the error that i get is

    [AVFilterGraph @ 0xac59c530] No output pad can be associated to link label '1:v'.
    Error initializing complex filters.
  • ffmpeg error At least one output file must be specified

    29 novembre 2022, par cedricx

    my code :
ffmpeg -i "C :\Users\xxxxxxx\Desktop\aaaaaa\a.mp4" -frames 1 -vf "drawtext="fontsize=60:fontcolor=yellow select=not(mod(n,18)),scale=200:100,tile=15x48" "C :\Users\xxxxxxx\Desktop\aaaaaa\a.png"

    


    i got this error :
At least one output file must be specified

    


    where is the problem ?

    


    command is get error and i need fix