Recherche avancée

Médias (0)

Mot : - Tags -/clipboard

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

Autres articles (12)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

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

  • OpenCv and FFmpeg [on hold]

    28 juillet 2014, par user987743

    I am new to OpenCV. I working with OpenCV and java.
    I would like to send the processed frames from OpenCV to the client.
    I searched online and Was not able to find anything that works.
    I Could write a java TCP socket to send frames one by one but I feel it is inefficient.
    Please help me on some tool/packages to send processed frames from OpenCv to client

  • How do I play an audio clip from a https URL in Qt6 on Windows ?

    20 mai 2023, par wiktort1

    I keep getting the following error :

    


    https protocol not found, recompile FFmpeg with openssl, gnutls or securetransport enabled


    


    I link OpenSSL in my project, I also have OpenSSL Toolkit installed through the Qt Maintenance Tool, however that doesn't seem to fix it.

    


    I have also found an answer online, that said that I need to copy the OpenSSL DLLs to my build folder, but that didn't work either.

    


    I use Qt 6.5.0.

    


    Do I have to compile Qt on my own ? or is there a different approach ?

    


  • How to put a png onto an mp4/gif using imagemagick ?

    24 juillet 2022, par Harrison

    TLDR : How do I convert an MP4 to GIF without sacrificing quality ? How can I lay a PNG on a GIF without sacrificing quality ? And how to get rid of the flicker from combining them ?

    


    So I have an MP4 that is 3000x3000 and a PNG that is 1000x1000.

    


    The end result that I want is a GIF that is 1000x1000 where the PNG is layered on top of the MP4 as a background.

    


    These are the step I tried and the issues I am running into. Mainly the issues I am running into are a loss in quality.

    


    MP4 to GIF :

    


      

    1. I have converted the MP4 to a gif with ffmpeg -i background.mp4 background.gif. Result : A major loss of quality in the gif.

      


    2. 


    3. Instead of that - I tried an online converter. Works better but would like to do it on my own. But I will use this GIF from the online converter in the next examples. Still a slight loss of quality but not near as bad.

      


    4. 


    5. I have sized down my gif using convert temporary.gif -coalesce -resize 1000x1000 smaller.gif. (Have also tried with specifying the -size 3000x3000 but no difference really.) Another minor loss of quality there.

      


    6. 


    


    PNG ontop of GIF - Trial 1

    


      

    1. I have converted my PNG to a single page GIF with convert front.png front.gif (Along with some other options). Loses quality, anything that fades or is semi see through gets turned into a solid pixel.
    2. 


    3. Duplicated this page a bunch of times to match number of pages in my background gif using convert front.gif front.gif front.gif multiple times.
    4. 


    5. Merged background and front together with convert background.gif -coalesce null: front.gif -layers composite both.gif. Little more lose of quality and some flickering on the foreground..? Tried some other variations but thats the best I got.
    6. 


    


    PNG on GIF - Trial 2

    


      

    1. Instead of making a GIF of the PNG, I am just using the original PNG with the background.gif like this convert smaller.gif -coalesce null: front.png -layers composite -layers optimize both.gif. This one comes out weird. The from image is very different looking in color and flickery. Not gonna work.
    2. 


    3. Tried without optimization. convert smaller.gif -coalesce null: front.png -layers composite test.gif. This on is closer. The foreground looks great, but is just flickery still ! Again the background is not great but it doesn't seem to have much more impact from after the original mp4 conversion. Did this without -coalesce and still get the same output.
    4. 


    


    The best I can get is a decent front image with details preserved - but flickery. On top of a lossy background.

    


    How can I go about doing this with imagemagick or some other library ?