Recherche avancée

Médias (91)

Autres articles (62)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (10737)

  • Why the Captured Frame Height and Width is Common in Android FFmpeg

    10 octobre 2019, par Priya M

    I want to get the entire frame size ( height and width) using FFmpegmediaretriver in android. Anyone, please help me. Thanks

  • How to install PHP FFMPEG on windows 10 64 Bit

    7 septembre 2017, par PlanetHackers

    I want to install the PHP FFMPEG on my system. My system configuration is :

    OS : Windows 10 64 Bit
    XAMPP v3.2.2
    PHP v7.0.15

    I found many tutorial but nothing found working. May be due to 64 bit system. I wanted to add a watermark to a video through PHP. That’s why I need the ffmpeg extension. I also tried through Composer but did not get success.

  • Loseless FFMPEG compression that supports windows media player

    12 juin 2018, par nmr

    I am trying to create a movie file (avi, mp4, etc as long as it support windows media player) from a sequence of png files using ffmpeg.I am using C++ "System("ffmpeg command")" to create the movie files once I create the png files (this shouldn’t effect movie creation). I was able to create a .avi file using the following command,

    ffmpeg.exe -r 30 -i frame_%7d.png test1.avi

    Once you create the file it runs in windows media player but does not run in VLC. I have realized, it does lossy compression and the movie is not that high quality (quality decreases with frame rate). I want to have lossless compression (or no compression at all) but needs to be able to play in windows media player. So I tried the following commands,

    ffmpeg.exe -framerate 30 -i frame_%7d.png -codec copy test2.avi

    This file ran in VLC but didn’t run in windows media player. Then I tried put in "-pix_fmt yuv420p" but still couldn’t get it to run in windows media player.

    ffmpeg.exe -framerate 30 -pix_fmt yuv420p -i frame_%7d.png -codec copy test2.avi

    I have also tried using "ffv1" codec and it ran in VLC but not in windows media player

    ffmpeg.exe -i frame_%7d.png -c:v ffv1 -qscale:v 0 test4.avi

    So, how do I create a lossless movie file from a sequence of png files using ffmpeg that will run in windows media player ?