Recherche avancée

Médias (0)

Mot : - Tags -/presse-papier

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (63)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

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

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

  • FFMPEG Command to format videos to TikTok's specs ?

    8 juin 2021, par Christopher Sparks

    I'm trying upload a video exported by windows video editor to tiktok. It's a .mp4 file, and while it does upload, it isn't "TikTok'd", meaning, it only takes up the middle of screen. I was wondering what the ffmpeg command would be to output a video to TikToks specs.

    


    Here's how it currently looks.

    


    TikTok bad format

    


    And here's how I want it to look.

    


    enter image description here

    


  • Use palette when using FFMpeg overlay

    16 avril 2017, par nbrogi

    I’m trying to add an overlay to an animated GIF with FFMpeg.

    It works, but the quality is pretty dismal. Basically, I’m unable to use the palette that I generate, and that leads to a lot of dither. The main GIF (meaning, not the overlay) is also very low resolution.

    I would also like to apply opacity to the watermark (and at one point that worked, too), but that’s a plus.

    This is what I have :

    ffmpeg -v error -i image.gif -vf 'palettegen' palette.png -y;
    ffmpeg -v error -i image.gif -i watermark.gif -i palette.png -filter_complex '[1:v]scale=80:30, [0:v]overlay=(main_w-overlay_w) - main_h/30:(main_h-overlay_h) - main_h/30, paletteuse' -an image-watermark.gif -y

    At one point I was able to use the palette for the main GIF, so its quality improved. However, the watermark looked pretty bad. It’s pretty obvious that I have to do the overlay, and then the palette, so that the palette include the colors present in the watermark. However, I have no idea how to do that.

    Can someone point me in the right direction ?

  • Issues grabbing frames from an mp4 video using ffmpeg on java

    31 mars 2015, par TamirW

    I am trying to grab a few frames from an mp4 video files using the ffmpeg library (java). Code snippet below.
    The issues I’m facing are :

    • In some (but not all) the videos I’m testing, I am getting the following warning when grabbing the frames : [swscaler @ 0x7fa642a53600] bad src image pointers
    • Sometimes, the frames I get are just blanks (black), sometimes they contain the last frame in the video (meaning that ALL the frames show the same image). Interestingly, when I’m not getting the above warning, the frames are just fine.

    Any clue or direction about how to debug/solve this issue would be greatly appreciated.

       FFmpegFrameGrabber g = new FFmpegFrameGrabber(video);
       List<bufferedimage> frames = new ArrayList<bufferedimage>();
       try {
           g.start();

           int i = 1, noOfFrames = g.getLengthInFrames();
           long FR = Math.round(g.getFrameRate());

           while (i &lt; noOfFrames) {
               g.setFrameNumber(i);
               IplImage img = g.grab();
               BufferedImage bimg = img.getBufferedImage();
               frames.add(bimg);

               i += FR;
           }
    </bufferedimage></bufferedimage>