Recherche avancée

Médias (0)

Mot : - Tags -/organisation

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (99)

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

  • Activation de l’inscription des visiteurs

    12 avril 2011, par

    Il est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
    Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
    Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (10732)

  • lossless video to h.265 - [error] : main10 profile not compatible with i422 input chroma subsampling

    24 février 2021, par spierce7

    I have a lossless .mov video and I'm trying to encode using h.265 for firetv and some other android tv devices. The spec that they support is :

    


    Based on their native H.265 support, I'm trying to export a Main 10 Profile with level 4.1.

    


    The command I'm running is :

    


    ffmpeg -i 001_lossless.mov -c:v libx265 -preset slow -profile:v main10 -level:v 4.1 -c:a aac -b:a 128k output.mp4


    


    Which yields the following error :

    


    x265 [error]: main10 profile not compatible with i422 input chroma subsampling.


    


    What is the best way to work around this ? I can request the lossless video in different formats also, but I'm not exactly sure what to ask for.

    


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