Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (12)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

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

  • La gestion des forums

    3 novembre 2011, par

    Si les forums sont activés sur le site, les administrateurs ont la possibilité de les gérer depuis l’interface d’administration ou depuis l’article même dans le bloc de modification de l’article qui se trouve dans la navigation de la page.
    Accès à l’interface de modération des messages
    Lorsqu’il est identifié sur le site, l’administrateur peut procéder de deux manières pour gérer les forums.
    S’il souhaite modifier (modérer, déclarer comme SPAM un message) les forums d’un article particulier, il a à sa (...)

Sur d’autres sites (3158)

  • avformat : add format_probesize to allow tuning the maximum amount of bytes to identif...

    27 janvier 2014, par Michael Niedermayer
    avformat : add format_probesize to allow tuning the maximum amount of bytes to identify the filetype
    

    Currently probesize is cliped at 1mb before being used for format detection.
    Alternatively this cliping could be removed but this would then tie various
    things like stream analysis to the file detection.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/avformat.h
    • [DH] libavformat/options_table.h
    • [DH] libavformat/utils.c
  • Rendering video by ffmpeg.wasm in browser occured an error

    15 septembre 2022, par James Bor

    When a local video renderer uses the ffmpeg.wasm library in the Chrome browser, very often an error with the SBOX_FATAL_MEMORY_EXCEEDED code occurs during the rendering process. The standard command set is used. The code below is half fake because it is very long, but describes an approximate action algorithm. Computer performance and RAM capacity do not affect the video, files used - minimal size. Has anyone experienced this and how can we solve it ?&#xA;Error screen

    &#xA;

    const videoGenerate = async (project) => {&#xA;  const ffmpeg = createFFmpeg({&#xA;      corePath: &#x27;ffmpeg/ffmpeg-core.js&#x27;,&#xA;      workerPath: &#x27;ffmpeg/ffmpeg-core.worker.js&#x27;&#xA;  });&#xA;  await loadFfmpeg(ffmpeg);&#xA;  project.projectName = "Default";&#xA;  project.fileType = "video/mp4";&#xA;&#xA;  const resultVideo = {&#xA;    title: `${project.projectName}ConcatenatedVideo.mp4`,&#xA;  };&#xA;  // *For fetchFile method and ffmpeg.FS(&#x27;writeFile&#x27;, title, file);&#xA;  await uploadObjects(project.projectName, ffmpeg);&#xA;  // *&#xA;  const command = [&#x27;-i&#x27;, project.video, resultVideo.title];&#xA;  await ffmpeg.run(...command);&#xA;  await ffmpeg.FS("unlink", resultVideo.title);&#xA;  resultVideo["blob"] = ffmpeg.FS(&#x27;readFile&#x27;, title);&#xA;  return resultVideo.blob;&#xA;};&#xA;

    &#xA;

    These dependencies are used : "@ffmpeg/core" : " 0.8.5", "@ffmpeg/ffmpeg" : " 0.9.7". Upgrading the library to the latest version does not work either.

    &#xA;

  • avpacket : properly reset data/size in av_packet_move_ref()

    25 février 2016, par Anton Khirnov
    avpacket : properly reset data/size in av_packet_move_ref()
    

    It currently just calls av_init_packet(), which does not touch those
    fields.

    • [DBH] libavcodec/avpacket.c