Recherche avancée

Médias (1)

Mot : - Tags -/blender

Autres articles (43)

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

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

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

Sur d’autres sites (8425)

  • avformat/mxfenc : Store locally whether DNXHD profile is interlaced

    9 novembre 2021, par Andreas Rheinhardt
    avformat/mxfenc : Store locally whether DNXHD profile is interlaced
    

    It is just a flag per supported CID. So there is no reason to use
    an avpriv function for this purpose.

    Reviewed-by : Tomas Härdin <tjoppen@acc.umu.se>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavformat/mxfenc.c
  • Getting error "WebAssembly.Memory() : could not allocate memory" when running ffmpeg.wasm on android chrome browser

    27 juin 2022, par Ravi Kundu

    Error in detail :

    &#xA;

    WebAssembly.Memory(): could not allocate memory&#xA;at https://*******/ffmpeg-core.js:22:82&#xA;at https://*******/ffmpeg.min.js:1:6506&#xA;at f (https://*******/ffmpeg.min.js:1:11322)&#xA;at Generator._invoke (https://*******/ffmpeg.min.js:1:11110)&#xA;at Generator.next (https://*******/ffmpeg.min.js:1:11747)&#xA;at i (https://*******/ffmpeg.min.js:1:4295)&#xA;at c (https://*******/ffmpeg.min.js:1:4498)&#xA;

    &#xA;

    Code for ffmpeg :

    &#xA;

    const downloadWithFFMPEG = async () =>{&#xA;  const sourceBuffer = await fetch(recordingURL).then(r => r.arrayBuffer());&#xA;  await ffmpeg.load();&#xA;  await ffmpeg.FS(&#xA;    "writeFile",&#xA;    "input.webm",&#xA;    new Uint8Array(sourceBuffer, 0, sourceBuffer.byteLength)&#xA;  );&#xA;  await ffmpeg.run("-i", "input.webm", "-c", "copy", "output.mp4")&#xA;  const output = ffmpeg.FS("readFile", "output.mp4");&#xA;  var link = document.createElement(&#x27;a&#x27;)&#xA;  link.href = URL.createObjectURL(new Blob([output.buffer], { type: &#x27;video/mp4;codecs=H264&#x27; }));&#xA;  link.download = this.data;&#xA;  link.click();&#xA;  recording = false;&#xA;}&#xA;

    &#xA;

    Brief about problem :&#xA;The error only comes for android chrome browser. The same code works fine on pc/laptop chrome.&#xA;Have also enabled Webassembly-thread on chrome ://flags for android browser as someone suggested me to do it but still same error. Can someone help me ?

    &#xA;

  • avcodec/mpeg12enc : Perform size/level/profile checks earlier

    6 avril 2021, par Andreas Rheinhardt
    avcodec/mpeg12enc : Perform size/level/profile checks earlier
    

    This has the advantage that one does not waste some allocations
    if one errors out because of these checks.

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

    • [DH] libavcodec/mpeg12enc.c