Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (25)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • MediaSPIP Player : les contrôles

    26 mai 2010, par

    Les contrôles à la souris du lecteur
    En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...)

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

Sur d’autres sites (4879)

  • How to read remote video on Amazon S3 using ffmpeg

    19 septembre 2012, par virtualize

    I need to create poster frames from videos hosted on Amazon S3 via ffmpeg.

    So is there a way to use the remote video file directly in ffmpeg command line like this :
    ffmpeg -i "http://bucket.s3.amazonaws.com/video.mp4" -ss 00:00:10 -vframes 1 -f image2 "image%03d.jpg"

    ffmpeg just returns :

    http://bucket.s3.amazonaws.com/video.mp4: I/O error occurred<br />
    Usually that means that input file is truncated and/or corrupted.

    I also tried forcing ffmpeg to use the videos mp4 container for reading :
    ffmpeg -f mp4 -i "http://bucket.s3.amazonaws.com/video.mp4" ...
    But no luck.

    Wget this video from S3 and processing it locally works fine of course,
    as well as reading the file remotely from other 'standard' http servers.
    So I know that ffmpeg supports remote file reading, but why not on S3 ?

  • How to read remote video on Amazon S3 using ffmpeg

    9 septembre 2024, par virtualize

    I need to create poster frames from videos hosted on Amazon S3 via ffmpeg.

    &#xA;&#xA;

    So is there a way to use the remote video file directly in ffmpeg command line like this :
    &#xA;ffmpeg -i "http://bucket.s3.amazonaws.com/video.mp4" -ss 00:00:10 -vframes 1 -f image2 "image%03d.jpg"

    &#xA;&#xA;

    ffmpeg just returns :
    &#xA;http://bucket.s3.amazonaws.com/video.mp4: I/O error occurred<br />&#xA;Usually that means that input file is truncated and/or corrupted.

    &#xA;&#xA;

    I also tried forcing ffmpeg to use the videos mp4 container for reading :
    &#xA;ffmpeg -f mp4 -i "http://bucket.s3.amazonaws.com/video.mp4" ...
    &#xA;But no luck.

    &#xA;&#xA;

    Wget this video from S3 and processing it locally works fine of course,
    &#xA;as well as reading the file remotely from other 'standard' http servers.
    &#xA;So I know that ffmpeg supports remote file reading, but why not on S3 ?

    &#xA;

  • How to run FFMPEG with —enable-libfontconfig on Amazon Lambda

    20 avril 2024, par Adrien Kaczmarek

    Problem

    &#xA;

    I want to run FFmpeg on AWS Lambda (Amazon Linux 2) with the configuration --enable-libfontconfig enable.

    &#xA;

    Situation

    &#xA;

    I already have FFmpeg running on AWS Lambda without the configuration --enable-libfontconfig.

    &#xA;

    Here is the step I took to run FFmpeg on AWS Lambda (see official guide) :

    &#xA;

      &#xA;
    • Connect to Amazon EC2 running on AL2 (environment used by Lambda for Python 3.11)
    • &#xA;

    • Download and package FFmpeg from John Van Sickle
    • &#xA;

    • Create a Lambda Layer with FFmpeg
    • &#xA;

    &#xA;

    Unfortunately, the version built by John Van Sickle doesn't have the configuration --enable-libfontconfig enabled.

    &#xA;

    Unsuccessful Trials

    &#xA;

    I tried to rebuilt it from scratch following the installation guide but without success (and the guide doesn't install font related dependencies)

    &#xA;

    I tried to install it with brew but the command brew install ffmpeg didn't succeed on AL2.

    &#xA;

    I tried to install ffmpeg from ffmpeg-master-latest-linux64-gpl.tar.xz. Unfortunately, this build of ffmpeg doesn't run on AL2 :

    &#xA;

    ffmpeg: /lib64/libm.so.6: version `GLIBC_2.27&#x27; not found (required by ffmpeg)&#xA;ffmpeg: /lib64/libpthread.so.0: version `GLIBC_2.28&#x27; not found (required by ffmpeg)&#xA;ffmpeg: /lib64/libc.so.6: version `GLIBC_2.27&#x27; not found (required by ffmpeg)&#xA;ffmpeg: /lib64/libc.so.6: version `GLIBC_2.28&#x27; not found (required by ffmpeg)&#xA;

    &#xA;

    Any help would be greatly appreciated,

    &#xA;

    Please make sure your answer is up to date and tested. Too many answers out there are auto-generated, too generic, or simple redirect without context.

    &#xA;

    Thank you

    &#xA;