Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (90)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (10963)

  • lavfi/testsrc : extend logic in request_frame, support static image output

    31 juillet 2012, par Stefano Sabatini

    lavfi/testsrc : extend logic in request_frame, support static image output

  • FFMPEG video to image batch conversion

    2 août 2012, par Adey
    @echo off
    setlocal enabledelayedexpansion
    set EXE_FILE=E:\ffmpeg.exe
    set INPUT_PATH=C:\folder\
    set OUTPUT_PATH=C:\Images\
    set COUNT=0
    for %%F in (*) do %EXE_FILE% -i %INPUT_PATH% %OUTPUT_PATH%/%%F.jpg
    popd

    I want to save 1 sec videos to jpg images with this code. This doesnt work. Any solutions ?

  • How can i add cover image on mp3 file using ffmpeg ?

    30 juillet 2012, par user1562502

    I'm trying to convert audio file to mp3 and I want to add cover image into mp3 file.
    I tried this :

    ffmpeg.exe -i "input audio file" -i image.png out.mp3

    When conversion completes there is no cover image into mp3.
    I tried and this which is from the official documentation of ffmpeg. The result is the same mp3 file without cover image.

    ffmpeg -i input.mp3 -i cover.png -c copy -metadata:s:v title="Album cover"-metadata:s:v comment="Cover (Front)" out.mp3

    Thank you in advance !