
Recherche avancée
Médias (2)
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
Autres articles (28)
-
Publier sur MédiaSpip
13 juin 2013Puis-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, parPour 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, parLe 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 bevanbI'm trying to apply filters to audio using
fluent-ffmpeg
. It's mostly working. But when adding certain filters (such asasubcut
ortreble
) 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
 throw er; // Unhandled 'error' event
 ^

 Error: ffmpeg exited with code 1: Error reinitializing filters!
 Failed to inject frame into filter network: Invalid argument
 Error while processing the decoded data for stream #0:0
 Conversion failed!

 at ChildProcess.<anonymous> (/Users/me/project/node_modules/fluent-ffmpeg/lib/processor.js:182:22)
 at ChildProcess.emit (node:events:390:28)
 at Process.ChildProcess._handle.onexit (node:internal/child_process:290:12)
 Emitted 'error' event on FfmpegCommand instance at:
 at emitEnd (/Users/me/project/node_modules/fluent-ffmpeg/lib/processor.js:424:16)
 at endCB (/Users/me/project/node_modules/fluent-ffmpeg/lib/processor.js:544:13)
 at handleExit (/Users/me/project/node_modules/fluent-ffmpeg/lib/processor.js:170:11)
 at Socket.<anonymous> (/Users/me/project/node_modules/fluent-ffmpeg/lib/processor.js:209:9)
 at Socket.emit (node:events:402:35)
 at Pipe.<anonymous> (node:net:687:12)
</anonymous></anonymous></anonymous>


-
What are the advtanages of live555 over ffserver vv
28 décembre 2014, par user1767754what 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.exeSo 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'NeilFollowing this guide :
https://trac.ffmpeg.org/wiki/CompilationGuide/WinRTCan anyone tell me if it’s possible to build and include libvpx into this ?