Recherche avancée

Médias (91)

Autres articles (42)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Création définitive du canal

    12 mars 2010, par

    Lorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
    A la validation, vous recevez un email vous invitant donc à créer votre canal.
    Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
    A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)

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

Sur d’autres sites (5127)

  • How to use FFMPEG to add different pictures into one video

    24 juillet 2012, par user1546926

    What I want to do is to display different pictures on specific time periods of the video.

    I have got a solution which is using FFMPEG to split the video into several components and then adding pictures as watermark into those components, and finally join them together.

    However, I don't think it is very efficient when tackling with large videos.

    Any idea ? doesn't need to be done in a single command, could even be a script. thanks in advance.

    this is what I did :

    Codes for adding watermark

    ffmpeg -ss 00:00:00 -t 00:01:30 -i test.mpg -vf "movie=logo1.png [watermark];[in]
    [watermark] overlay= main_w-overlay_w-10:main_h-overlay_h-10 [out]" -vcodec flv -sameq out1.avi

    ffmpeg -ss 00:01:30 -t 00:03:00 -i test.mpg -vf "movie=logo2.png [watermark];[in]
    [watermark] overlay= main_w-overlay_w-10:main_h-overlay_h-10 [out]" -vcodec flv -sameq out2.avi

    Codes for joining avi(running on Windows)

    copy out1.avi /b + out2.avi /b output.avi /b
  • How to setting pictures and audio to mp4 ffmpeg ?

    25 juin 2015, par Jhon Lemmon

    I’m trying to set some pictures and audio to mp4 using ffmpeg

    I tried with these commands :

    -i %02.png -pix_fmt yub420p -vcodec mjpeg -qmin 1 -qmax 1 -r 25 -i loop.pm3 -ar 22050 -ab 192k -aframes 25 -shortest out.mp4

    -r 60 -f image2 -i %02.png -i loop.mp3 -vcodec libx264 -b:c -vpre -acodec copy out.mp4

    -r 60 -f image2 -i %02.png -i loop.mp3 -vcodec libx264 -b:c -vpre -acodec copy -strict -experimental out.mp4

    -r 60 -f image2 -i %02.png -i loop.mp3 -map 0 -c:v libx264 -vpre -acodec copy -strict -2 out.mp4

    Some commands create the out.mp4 file, but I can’t seem to reproduce them in Android
    I just want to know the correct command to set a pictures group and an audio to a video

  • avformat/matroskadec : Don't copy attached pictures

    17 mai 2019, par Andreas Rheinhardt
    avformat/matroskadec : Don't copy attached pictures
    

    This commit replaces copying attached pictures by using references to
    the already existing buffers.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/matroskadec.c