Recherche avancée

Médias (1)

Mot : - Tags -/punk

Autres articles (27)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (4352)

  • avcodec/hevc_ps : fix storage type for some PPS multilayer extension fields

    17 avril 2023, par James Almer
    avcodec/hevc_ps : fix storage type for some PPS multilayer extension fields
    

    The spec states that the range of values for them is −2^14 to 2^14 − 1, inclusive.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/hevc_ps.h
  • "Output stream closed" when streaming PassThrough stream to AWS using @aws-sdk/lib-storage

    5 avril 2023, par cjd

    I am attempting to stream a PassThrough stream directly to S3 using @aws-sdk/lib-storage.

    &#xA;

    My upload function is :

    &#xA;

    const uploadStreamToS3 = () => {&#xA;    const Key = &#x27;test.mp4&#x27;;&#xA;    const Bucket = &#x27;bucket-name&#x27;;&#xA;    const stream = new PassThrough();&#xA;    const upload = new Upload({&#xA;        client: s3Client,&#xA;        params: { Bucket, Key, Body: stream },&#xA;        tags: [], // optional tags&#xA;        queueSize: 4, // optional concurrency configuration&#xA;        partSize: 1024 * 1024 * 5, // optional size of each part, in bytes, at least 5MB&#xA;        leavePartsOnError: false // optional manually handle dropped parts&#xA;    });&#xA;    return {&#xA;        stream,&#xA;        uploadComplete: upload.done(),&#xA;        upload&#xA;    };&#xA;};&#xA;

    &#xA;

    I am piping from ffmpeg directly to the PassThrough stream :

    &#xA;

            ffmpegInstance&#xA;            .addOutputOptions(&#xA;                &#x27;-movflags &#x2B;frag_keyframe&#x2B;separate_moof&#x2B;omit_tfhd_offset&#x2B;empty_moov&#x27;&#xA;            )&#xA;            .format(&#x27;mp4&#x27;)&#xA;            .pipe(stream, { end: true });&#xA;

    &#xA;

    When I run this locally, everything works.

    &#xA;

    I am using a container lambda function with Docker.

    &#xA;

    If I run the Docker container locally, everything works as expected. If I run the same code on Lambda, I get the following error Output stream is closed.

    &#xA;

    One work around is to write the file to the Lambda tmp folder using a writeStream and once the file is written I can stream the file to S3 using a readStream as the Body of new Upload. However, I would like to stream directly to S3 and not create this temporary file in Lambda.

    &#xA;

    Is this possible ? Is the issue with using a PassThrough stream in the Body for S3 ?

    &#xA;

  • fftools/ffmpeg_mux_init : stop using OptionsContext as storage in copy_metadata()

    18 octobre 2022, par Anton Khirnov
    fftools/ffmpeg_mux_init : stop using OptionsContext as storage in copy_metadata()
    

    It should be input-only to this code. Will allow making it const in
    future commits.

    • [DH] fftools/ffmpeg.h
    • [DH] fftools/ffmpeg_mux_init.c