Recherche avancée

Médias (2)

Mot : - Tags -/media

Autres articles (111)

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

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (12161)

  • avcodec/texturedsp : add TextureDSPThreadContext for common decode/encode function

    19 mars 2022, par Marton Balint
    avcodec/texturedsp : add TextureDSPThreadContext for common decode/encode function
    

    This will allow using a common threaded decode or encode function from most
    codecs using texture DSP functions.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavcodec/texturedsp.c
    • [DH] libavcodec/texturedsp.h
    • [DH] libavcodec/texturedsp_template.c
    • [DH] libavcodec/texturedspenc.c
  • AWS Lambda function (node.js) can't find installed ffmpeg

    7 janvier, par coding_delight

    thanx in advance !

    &#xA;

    My lambda function shall transcode videos.&#xA;I install the function via a Docker image and ECR.

    &#xA;

    Inside the lambda function ffmpeg cant be executed/ found.

    &#xA;

    Dockerfile : As base image I use the AWS node base image. I install ffmpeg on that image and execute it successfully after installation "RUN ffmpeg -version" (works) I then copy the ffmpeg to /usr/local/bin.

    &#xA;

    Inside the lambda function I try to run the same command "ffmpeg -version" via exec() but there I get "command not found".

    &#xA;

    the command "pwd" returns the path "/var/task"

    &#xA;

    Any idea ?

    &#xA;

    Dockerfile (excerpt) :

    &#xA;

    FROM public.ecr.aws/lambda/nodejs:18&#xA;

    &#xA;

    RUN yum install -y tar gzip xz&#xA;

    &#xA;

    RUN curl -O https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-amd64-static.tar.xzRUN tar xvf ffmpeg-release-amd64-static.tar.xzRUN ls ffmpeg-6.1-amd64-staticRUN cp ffmpeg-6.1-amd64-static/ffmpeg /usr/local/bin/RUN cp ffmpeg-6.1-amd64-static/ffprobe /usr/local/bin/RUN rm -rf ffmpeg-6.1-amd64-static&#xA;

    &#xA;

    RUN ffmpeg -version&#xA;

    &#xA;

    COPY --from=lambda-builder /apps/lambda-video-processor ${LAMBDA_TASK_ROOT}&#xA;

    &#xA;

    CMD ["index.handler"]&#xA;

    &#xA;

    inside lambda function :

    &#xA;

    exec("ffmpeg -version", (error, stdout, stderr) => {&#xA;if (error)&#xA;    {console.log(error: ${error.message})&#xA;    return&#xA;}&#xA;if (stderr)&#xA;    {console.log(stderr: ${stderr})&#xA;    return&#xA;}&#xA;console.log(stdout ffmpeg version: ${stdout})&#xA;})&#xA;

    &#xA;

  • avcodec/ac3enc : Use common encode_frame function

    7 avril 2024, par Andreas Rheinhardt
    avcodec/ac3enc : Use common encode_frame function
    

    This is in preparation for sharing even more stuff
    common to the fixed and floating-point encoders.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/ac3enc.c
    • [DH] libavcodec/ac3enc.h
    • [DH] libavcodec/ac3enc_fixed.c
    • [DH] libavcodec/ac3enc_float.c
    • [DH] libavcodec/ac3enc_template.c
    • [DH] libavcodec/eac3enc.c