Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (77)

  • Qualité du média après traitement

    21 juin 2013, par

    Le bon réglage du logiciel qui traite les média est important pour un équilibre entre les partis ( bande passante de l’hébergeur, qualité du média pour le rédacteur et le visiteur, accessibilité pour le visiteur ). Comment régler la qualité de son média ?
    Plus la qualité du média est importante, plus la bande passante sera utilisée. Le visiteur avec une connexion internet à petit débit devra attendre plus longtemps. Inversement plus, la qualité du média est pauvre et donc le média devient dégradé voire (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

Sur d’autres sites (8326)

  • How to generate light weight videos with ffmpeg for Power Point in OS X ?

    25 septembre 2014, par Pablo

    I want to make some movies with ffmpeg to use them on a Powerpoint in Mac OS X. I am using this command, which works well but generates large movies (about 100 MB) without losing too much quality.

    ffmpeg -f image2 -r 100 -pattern_type glob -i 'img*.png' -c:v mjpeg -qscale:v 20 test.avi

    I have also tried using other codecs like mpeg4 and libx264 to generate lighter movies (about 10 MB) but they don’t work correctly in the Powerpoint presentation.

    Does anyone know how to use them correctly or how to create a light weight movie with ffmpeg that works well on Powerpoint for OS X ?

  • Questions Tags Users How do I use ffmpeg to record a video clip with 20 seconds before and 20 seconds after motion happened ?

    18 avril 2020, par user2661357

    I am using an IP camera with rtsp stream to do motion detection. When a motion happens, I want to use ffmpeg to record a video clip with 20 seconds before and 20 seconds after motion happened. Please show me how I should do that use ffmpeg. Thanks.

    


  • ffmpeg unrecognized file type

    1er février 2019, par user892134

    I’m using Mac OS and ffmpeg. I’m attempting to convert mp3 to mp4 with image background and overlay audio visualization.
    The below works when converting mp3 to mp4 with image :

    $mp3 = "/Users/vanessa/Downloads/test/Marco.mp3";
       $image = "/Users/vanessa/Downloads/test/maxresdefault.jpg";
       $video = "/Users/vanessa/Downloads/test/videos/test2.mp4";

     exec("/usr/local/Cellar/ffmpeg/4.1_3/bin/ffmpeg -loop 1 -i $image -i $mp3 -c:v libx264 -c:a aac -strict experimental -b:a 192k -shortest $video 2>&1",$output);

    I can successfully play test2.mp4. When i attempt to do add an overlay of audio visualization. I can see in get info how it looks in the preview section but when i click on the file it says : File open error:Unrecognized file type

    exec("/usr/local/Cellar/ffmpeg/4.1_3/bin/ffmpeg -y -i $mp3 -loop 1 -i $image -filter_complex '[0:a]showwaves=s=1280x175:colors=White:mode=line,format=yuv420p[v];[1:v][v]overlay=0:200[outv]' -map '[outv]' -pix_fmt yuv420p -map 0:a -c:v libx264 -c:a copy -shortest $video 2>&1",$output);

    Where did i go wrong ? The player i’m using is Quicktime.