Recherche avancée

Médias (91)

Autres articles (62)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (5548)

  • Merge commit ’582d4211e00015b68626f77ce4af53161e2b1713’

    14 novembre 2016, par Hendrik Leppkes
    Merge commit ’582d4211e00015b68626f77ce4af53161e2b1713’
    

    * commit ’582d4211e00015b68626f77ce4af53161e2b1713’ :
    vf_scale_vaapi : Respect driver quirks around buffer destruction

    Merged-by : Hendrik Leppkes <h.leppkes@gmail.com>

  • AWS Lambda and Fluent FFMPEG error "cannot read property "isStream" of undefined"

    29 mai 2021, par Travis Lee

    so here's the goal : convert a .webm file hosted in an S3 into a gif and upload that to a new bucket. This all works fine when run locally, but when trying to translate it into a lambda, fluent-ffmpeg throws errors when it runs the command.

    &#xA;

    Here's the code snippet :

    &#xA;

    ffmpeg(new URL(vid))&#xA;  .outputOptions("-vf", "scale=320:-1:flags=lanczos,fps=14")&#xA;  .on(&#x27;progress&#x27;, () => {&#xA;      console.log(&#x27;progress&#x27;);&#xA;  })&#xA;  .on(&#x27;end&#x27;, () => {&#xA;     //Do stuff with the result when it is done&#xA;  })&#xA;  .output(newKey)&#xA;  .run(newKey);&#xA;

    &#xA;

    in this snippet, "vid" is a presigned GET url for an S3 bucket containing the .webm video file, and "newKey" is the name of the new bucket (and a temporary writeStream/File that is created in the lambda to store the new .gif file until we upload it to S3 - not super relevant to this issue).

    &#xA;

    What should happen (and does locally) is that a new output is created containing the converted .gif file

    &#xA;

    What happens when it is deployed in a lambda is that it reaches the .outputOptions call and throws a type error saying that it cannot read property isStream of undefined.

    &#xA;

    At first glance, this seems like I simply don't have FFMPEG installed in the lambda, but I do. I have tried with the prebuilt layer using NodeJS 10 found here : https://serverlessrepo.aws.amazon.com/applications/us-east-1/145266761615/ffmpeg-lambda-layer ,&#xA;with a NodeJS 12 layer that was built by some engineers here previously, and tried building a NodeJS 14 FFMPEG layer myself and using that. I tried for all three using no configuration and letting it call the PATH ffmpeg, using the FFMPEG_PATH and FFPROBE_PATH environment variables set to either what was specified in the previous layers, or what I made it in the newly built one, and even manually setting the path to the executables using the setFfmpegPath and setFfprobePath functions found on the fluent-ffmpeg object.

    &#xA;

    Lastly, I even tried bundling the executables in with the actual lambda code itself and uploading it through an S3, trying all three above methods of getting it to point to the correct paths once again to no avail.

    &#xA;

    I'm seriously in need of help if anyone else has encountered something similar or just might know what is going on. I'm at wit's end here trying to figure this out.

    &#xA;

  • How to send ffmpeg based HTTP stream to CloudFront [on hold]

    5 octobre 2017, par Tarun Maheshwari

    I have a live streaming server, where media is available as HTTP / RTMP / HLS format.
    I am able to access it and play from my desktop using following links.

    rtmp://52.xx.xx.192/live/tarun1 (RTMP)
    http://52.xx.xx.192:8080/hls/movie.m3u8 (HLS)
    http://52.xx.xx.190:7090/stream (HTTP)

    I want to forward any of the above streams to CloudFront with these steps.