
Recherche avancée
Autres articles (46)
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
MediaSPIP Player : problèmes potentiels
22 février 2011, parLe lecteur ne fonctionne pas sur Internet Explorer
Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...) -
MediaSPIP Player : les contrôles
26 mai 2010, parLes contrôles à la souris du lecteur
En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...)
Sur d’autres sites (5311)
-
Create a pipeline between two programs C code [on hold]
18 janvier 2017, par Ahmed MkademI’m using ubuntu OS, my goal is to record a video using ffmpeg and encrypt the frames recorded in paralell and in the same time, so i’m trying to avoid many calls of ffmeg and openssl, my idea is to create a pipeline between the two programs : record frames, pose them in the pipeline and encrypt them with openssl to finally record write them on disk.
I don’t know how two start, any idea ? -
Decode audio stream channels to multiple wavs using ffmpeg ?
18 mai 2015, par get8pMy goal is to decode an ac3 from avi to multiple wavs - one for each channel, using ffmpeg.
Using
ffmpeg.exe -i the.avi -c:a copy the.ac3 the.wav
would decode it to a single wav, and typing
the.wavs
won’t help...
I know it can be done with other tools, but I want to know how it’s achievable with ffmpeg. -
Concat audio files then call create file
11 mai 2020, par bleepbloopbleepI am new and am trying to concat a folder of audio files and then stream the create file with ffmpeg in node.js.



I thought I could call the function that creates the file with await and then when it's done the code would continue allowing me to call the created file. However thats not whats happening. I am getting a "file undefined"



Main function



//CONCATS THE FILES
 await concatAudio(supportedFileTypes.supportedAudioTypes, `${path}${config[typeKey].audio_directory}`);

 // CALLS THE FILE CREATED FROM concatAudio
 const randomSong = await getRandomFileWithExtensionFromPath(
 supportedFileTypes.supportedAudioTypes,
 `${path}${config[typeKey].audio_final}`
 );




concatAudio function



var audioconcat = require('audioconcat');
const getRandomFileWithExtensionFromPath = require('./randomFile');
const find = require('find');

// Async Function to get a random file from a path
module.exports = async (extensions, path) => {
 // Find al of our files with the extensions
 let allFiles = [];

 extensions.forEach(extension => {
 allFiles = [...allFiles, ...find.fileSync(extension, path)];
 });

 await audioconcat(allFiles)
 .concat('./live-stream-radio/final/all.mp3')
 .on('start', function(command) {
 console.log('ffmpeg process started:', command);
 })
 .on('error', function(err, stdout, stderr) {
 console.error('Error:', err);
 console.error('ffmpeg stderr:', stderr);
 })
 .on('end', function(output) {
 console.error('Audio created in:', output);
 });

 // Return a random file

 // return '/Users/Semmes/Downloads/live-stream-radio-ffmpeg-builds/live-stream-radio/final/all.mp3';
};