Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (91)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

Sur d’autres sites (22432)

  • FFmpeg iOS RTSP Player compile issue

    15 décembre 2016, par Julien

    I’m trying to compile a project which use FFmpeg libraries in iOS : https://github.com/hackacam/ios_rtsp_player

    This project successfully compile for armv7 architecture but I can’t compile it for arm64 cause FFmpegDecoder.framework has :

    "Undefined symbols for architecture arm64"

    So I tried to recompile the FFmpegDecoder.framework from this project : https://github.com/mooncatventures-group/ffmpegDecoder with the latest build of FFmpeg library : https://downloads.sourceforge.net/project/ffmpeg-ios/ffmpeg-ios-master.tar.bz2

    But I have some headers issues like you can see in my project : https://wetransfer.com/downloads/b1a3fc1438d2464ebeb86f38b08e1dff20161215093957/9b4211

    I don’t know if I use the good way to compile the framework.

    Can you help me to fix this issue ?

    Thanks in advance.

    My configuration :

    macOS 10.12.2
    Xcode 8.1
    FFmpeg 3.2.2
  • FFMpeg Text Animation

    26 mai 2019, par Alexia1990

    How to add text with animation on video in ffmpeg ?
    Now I am trying to add video management function on android app.
    If you have a experiences on it, please help me.

  • 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 ?
Error screen

    


    const videoGenerate = async (project) => {
  const ffmpeg = createFFmpeg({
      corePath: 'ffmpeg/ffmpeg-core.js',
      workerPath: 'ffmpeg/ffmpeg-core.worker.js'
  });
  await loadFfmpeg(ffmpeg);
  project.projectName = "Default";
  project.fileType = "video/mp4";

  const resultVideo = {
    title: `${project.projectName}ConcatenatedVideo.mp4`,
  };
  // *For fetchFile method and ffmpeg.FS('writeFile', title, file);
  await uploadObjects(project.projectName, ffmpeg);
  // *
  const command = ['-i', project.video, resultVideo.title];
  await ffmpeg.run(...command);
  await ffmpeg.FS("unlink", resultVideo.title);
  resultVideo["blob"] = ffmpeg.FS('readFile', title);
  return resultVideo.blob;
};


    


    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.