Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

Autres articles (28)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (7257)

  • fluent-ffmpeg audio filter not working, but works on CLI

    24 avril 2022, par bevanb

    I'm trying to apply filters to audio using fluent-ffmpeg. It's mostly working. But when adding certain filters (such as asubcut or treble) it produces the error below.

    


    It seems like fluent-ffmpeg can't find those filters (when I try a bogus filter name, it gives me the exact same error message).

    


    Any idea what's going on ?

    


    const ffmpegPath = require('@ffmpeg-installer/ffmpeg').path;
const ffmpeg = require('fluent-ffmpeg');
ffmpeg.setFfmpegPath(ffmpegPath);

async function test() {
  const command = ffmpeg();
  command.addInput("./tmp/test.mp3");
  command.withAudioFilters(['asubcut=cutoff=35:order=10:level=1']); // Other filters like "equalizer" work just fine.

  const fileOutputPath = "./tmp/mastered.mp3";
  await new Promise((resolve, reject) => {
    command
    .on('end', resolve)
    .save(fileOutputPath)
  });
}
test();


    


    The CLI version works :
ffmpeg -i ./tmp/test.mp3 -af 'asubcut=cutoff=35:order=10:level=1' ./tmp/mastered.mp3

    


    However, the fluent-ffmpeg version produces this error :

    


      node:events:368&#xA;      throw er; // Unhandled &#x27;error&#x27; event&#xA;      ^&#xA;&#xA;      Error: ffmpeg exited with code 1: Error reinitializing filters!&#xA;      Failed to inject frame into filter network: Invalid argument&#xA;      Error while processing the decoded data for stream #0:0&#xA;      Conversion failed!&#xA;&#xA;          at ChildProcess.<anonymous> (/Users/me/project/node_modules/fluent-ffmpeg/lib/processor.js:182:22)&#xA;          at ChildProcess.emit (node:events:390:28)&#xA;          at Process.ChildProcess._handle.onexit (node:internal/child_process:290:12)&#xA;      Emitted &#x27;error&#x27; event on FfmpegCommand instance at:&#xA;          at emitEnd (/Users/me/project/node_modules/fluent-ffmpeg/lib/processor.js:424:16)&#xA;          at endCB (/Users/me/project/node_modules/fluent-ffmpeg/lib/processor.js:544:13)&#xA;          at handleExit (/Users/me/project/node_modules/fluent-ffmpeg/lib/processor.js:170:11)&#xA;          at Socket.<anonymous> (/Users/me/project/node_modules/fluent-ffmpeg/lib/processor.js:209:9)&#xA;          at Socket.emit (node:events:402:35)&#xA;          at Pipe.<anonymous> (node:net:687:12)&#xA;</anonymous></anonymous></anonymous>

    &#xA;

  • What are the advtanages of live555 over ffserver vv

    28 décembre 2014, par user1767754

    what are the big differences between live555 and ffserver :

    FFSERVER : ffserver is a streaming server for both audio and video. It supports several live feeds, streaming from files and time shifting on live feeds. You can seek to positions in the past on each live feed, provided you specify a big enough feed storage.

    Live555 : Source-code libraries for standards-based RTP/RTCP/RTSP/SIP multimedia streaming, suitable for embedded and/or low-cost streaming applications

    So those are the synopsis of both libraries. Both of them have an out of the box Server.
    live555MediaServer.exe and ffserver.exe

    So if someone is planning to stream in a local Network live Inputs or VOD, what are the main differences and culprits ?

  • Compile ffmpeg for WinRT with libvpx ?

    7 janvier 2018, par Sean O'Neil

    Following this guide :
    https://trac.ffmpeg.org/wiki/CompilationGuide/WinRT

    Can anyone tell me if it’s possible to build and include libvpx into this ?