Recherche avancée

Médias (3)

Mot : - Tags -/pdf

Autres articles (54)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (4286)

  • avdevice/dshow : list_devices : show media type(s) per device

    21 décembre 2021, par Diederick Niehorster
    avdevice/dshow : list_devices : show media type(s) per device
    

    the list_devices option of dshow didn't indicate whether a specific
    device provides audio or video output. This patch iterates through all
    media formats of all pins exposed by the device to see what types it
    provides for capture, and prints this to the console for each device.
    Importantly, this now allows to find devices that provide both audio and
    video, and devices that provide neither.

    Signed-off-by : Diederick Niehorster <dcnieho@gmail.com>
    Reviewed-by : Roger Pack <rogerdpack2@gmail.com>

    • [DH] libavdevice/dshow.c
  • In ffmpeg command-line, how to show all filter settings and their parameters before encoding ?

    7 décembre 2023, par F.X.

    Is there a way to force the ffmpeg command-line to display a comprehensive list of all filters and their parameters, even those that are applied automatically like -vf scale ?

    &#xA;

    (EDIT : To clarify, I do not mean filter documentation, but rather displaying filters that are instantiated at runtime for a particular command-line, just before transcoding starts. The goal of this is mostly checking that ffmpeg is indeed doing the right thing and not inserting/changing filters when I do not intend it to.)

    &#xA;

    There are a few options available, but none are comprehensive enough. For example :

    &#xA;

      &#xA;
    • The lavfi module has a dumpgraph option (here) but only if you're using lavfi.
    • &#xA;

    • The -sws_flags print_info option (here) can be used to determine if -vf scale is applied automatically and shows a subset of its parameters, but not all of them.
    • &#xA;

    &#xA;

    Additionally, this question appears related the answer doesn't answer what I'm looking for.

    &#xA;

    Are there better ways to achieve that ?

    &#xA;

  • FFMPEG show an Image with specific duration in filter_complex chain

    26 juin 2021, par Digerkam

    I have trouble with showing images with a specific duration in filter_complex.

    &#xA;

    I have to use filter_complex, and getting error : "No such filter : 'duration'"

    &#xA;

    So which filter do I need to use ?

    &#xA;

    ffmpeg \&#xA;    -i "music.mp3" \&#xA;    -i "01.mp4" \&#xA;    -i "02.jpg" \&#xA;    -i "03.mp4" \&#xA;    -i "04.jpg" \&#xA;    -i "05.mp4" \&#xA;    -filter_complex " \&#xA;        [1:v]scale=300:400,trim=0:2,setpts=PTS-STARTPTS[v1]; \&#xA;        // Correct filter needed here: \&#xA;        [2:v]scale=300:400,duration=2,setpts=PTS-STARTPTS[v2]; \&#xA;        [3:v]scale=300:400,trim=4:6,setpts=PTS-STARTPTS[v3]; \&#xA;        // And here:&#xA;        [4:v]scale=300:400,duration=2,setpts=PTS-STARTPTS[v4]; \&#xA;        [5:v]scale=300:400,trim=8:10,setpts=PTS-STARTPTS[v5]; \&#xA;        [v1][v2][v3][v4][v5]concat=n=5:v=1:a=0[out] \&#xA;    " \&#xA;    -map "[out]" -map "0:a" -t "12" -c:v "libx264" -pix_fmt "yuv420p" -s "300x400" output.mp4&#xA;

    &#xA;