Recherche avancée

Médias (2)

Mot : - Tags -/media

Autres articles (107)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Le plugin : Gestion de la mutualisation

    2 mars 2010, par

    Le plugin de Gestion de mutualisation permet de gérer les différents canaux de mediaspip depuis un site maître. Il a pour but de fournir une solution pure SPIP afin de remplacer cette ancienne solution.
    Installation basique
    On installe les fichiers de SPIP sur le serveur.
    On ajoute ensuite le plugin "mutualisation" à la racine du site comme décrit ici.
    On customise le fichier mes_options.php central comme on le souhaite. Voilà pour l’exemple celui de la plateforme mediaspip.net :
    < ?php (...)

Sur d’autres sites (9256)

  • ffmpeg - How to antialias webp/gif

    19 août 2019, par theParanoidAndroid

    I am trying to use ffmpeg to produce an animated GIF/WEBP from a set of pngs. However, the output images have jagged edges that I would like to smooth out somehow.

    The set of PNGs are of a rotating sphere, outputted from Blender. Here is one of the images (cropped to the edge to hide a company logo)

    sphere edge before processing - no aliasing

    However, when using the following commands :

    ffmpeg -i frames/%%4d.png -vf palettegen -y palette.png
    ffmpeg -v warning -i frames/%%4d.png -i palette.png -lavfi "paletteuse,setpts=PTS" -y out.gif
    ffmpeg -v warning -i frames/%%4d.png -y out.webp

    to generate .gif and .webp animations, the edges becomes jagged :

    sphere edge after processing - jagged edges

    I can’t convert to .mkv and back or something, as transparency has to be preserved.

    Can anyone help ?

  • What does "dash" - mean as ffmpeg output filename

    26 août 2020, par DDS

    I'm trying to use ffmpeg with gnuplot to draw some audio spectra, I'm following this ffmpeg doc link.

    &#xA;

    Now I'm asking what "dash" - means on this line right after -f data, it should be a filename : the last element of ffmpeg command should the output file but I have no files named - in the directory after running the command.

    &#xA;

    ffmpeg -y -i in.wav -ac 1 -filter:a aresample=8000 -map 0:a -c:a pcm_s16le -f data - | gnuplot -p -e "plot &#x27;code>

    &#xA;

    I looked on ffmpeg docs but I didn't find anything.

    &#xA;

  • Applescript to batch convert videos with ffmpeg

    13 mai 2022, par Thad_Supersperm

    I'm trying to add padding to a large amount of videos in their folders. I created an app with AppleScriptEditor so I can drag and drop files and they're automatically converted. I found a script on the web, I edited it with the ffmpeg command I need, but it won't work because it wants to overwrite the source file.

    &#xA;

    on open argv&#xA;    set paths to ""&#xA;    repeat with f in argv&#xA;        set paths to paths &amp; quoted form of POSIX path of f &amp; " "&#xA;    end repeat&#xA;    tell application "Terminal"&#xA;        do script "for f in " &amp; paths &amp; "; do ffmpeg -i \"$f\"  -vf pad=\"9/8*iw:ih:(ow-iw)/2:0:color=black\" \"$f\"; done"&#xA;        activate&#xA;    end tell&#xA;end open&#xA;

    &#xA;

    Note that I want to keep the filename, filetype and put the new file next to the old one but just add an underscore at the end of the new file, before the extension ; e.g. : file.ext. > file_.ext

    &#xA;