Recherche avancée

Médias (91)

Autres articles (18)

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

  • 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

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

Sur d’autres sites (3254)

  • FFMpeg - Adding Timecode track messes with video output

    19 octobre 2022, par Muindor

    I'm using FFMpeg to setup some automation.

    


    I want to pull in a PNG, repeat it for 5 seconds, then add on an mov file to the end. I have that working great. The problem comes when I add a timecode to the output. The output video remains the correct length, but the PNG only repeats for 24 frames instead of 120, then the mov gets added, then black frames fill the rest.

    


    This is the command I'm using. Without the timecode flag it works perfectly.

    


    ./ffmpeg  -loop 1 -t 5 -r 24 -i 'image.png' -i 'end.mov' -filter_complex "[0]setdar=16/9[a];[1]setdar=16/9[b];[a][b]concat=n=2:v=1" -vsync 2  -r 24 -vcodec prores -timecode 00:59:53:00 output.mov


    


    Just a note, I don't want any any audio track.

    


    Thanks in advance !

    


  • FFMPEG drawbox filter. Hex color result not matching input values

    31 juillet 2018, par Leon Digz

    I’m trying to create a border using the drawbox filter using a specific HEX color input, however the result I am getting does not match the value I set.

    Consider the following code which produces a 600x600 swatch ;

    ffmpeg -i 0.jpg -vf drawbox=x=0:y=0:w=600:h=600:color=#E4E8F3@1:t=fill _border.png

    E4E8F3 is supposed to translate to RGB 228,232,243

    When I run the above code, however, and re-import into photoshop the actual color, is "sort of close", but not close enough.

    The color I end up getting is ;

    Hex d2d7df, which is RGB 210,215,223

    Any ideas why I’m not getting the result I expect ?

  • How can I loop one frame with ffmpeg ? All the other frames should point to the first with no changes, maybe like a recusion

    15 avril 2022, par zodrob

    I want to make a long video from a single image in ffmpeg.

    



    I need it to be fastly encodeable and at the end the video should have a small file size.

    



    Is it possible to fill the video with frames that point to the preivous(or the first) frame with no changes ?

    



    I tried with this code, but it was slow and made a big file :

    



    ffmpeg -loop 1 -i image.jpg -c:v libx264 -tune stillimage -shortest -preset ultrafast -t 3600 output.mp4