Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (21)

  • 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

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

Sur d’autres sites (5191)

  • c# - WAV file trimming and adding silence

    2 janvier 2017, par Piotr C

    I have two recordings of same event, different lengths, started at different times. I want to synchronize them, time offset is known. I want to achieve the following :

    1. Align second one in time by the time offset.
    2. Trim second one to match the length of the first one
    3. When there is nothing to trim, add silence to match the length of the first one.

      I found the way to trim the audio, but I couldn’t find solution for adding silence. Is there any way to do this with NAudio, ffmpeg or Aurio ?

  • c# - WAV file trimming and adding silence

    16 mai 2018, par Piotr C

    I have two recordings of same event, different lengths, started at different times. I want to synchronize them, time offset is known. I want to achieve the following :

    1. Align second one in time by the time offset.
    2. Trim second one to match the length of the first one
    3. When there is nothing to trim, add silence to match the length of the first one.

      I found the way to trim the audio, but I couldn’t find solution for adding silence. Is there any way to do this with NAudio, ffmpeg or Aurio ?

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