
Recherche avancée
Médias (91)
-
Valkaama DVD Cover Outside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (36)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains 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 ;
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)
Sur d’autres sites (3950)
-
Revision 80094 : Ajout d’une classe significative autour du choix "tout_selectionner" : ...
17 janvier 2014, par rastapopoulos@… — LogAjout d’une classe significative autour du choix "tout_selectionner" : choix_tout_selectionner.
Celui ou celle qui s’amuse à mettre comme clé d’un des vrais choix la chaine "tout_selectionner", c’est qu’ille cherche vraiment la merde. -
Test how many users can see video on my server
22 février 2016, par Oferta Për PunëI stream a m3u8 and rtmp link from my server and i want to see how many users the server can handle at same time. (I’m monitoring RAM, CPU with the itop command and bandwidth with the nload command)
I tried to test opening lot of connections in ssh but with no success
cvlc http://example.com/video.m3u8 & cvlc http://example.com/video.m3u8 & cvlc http://example.com/video.m3u8
so I think it is not working like this, i also tried
rtmpdump -r rtmp://example.com/video & rtmpdump -r rtmp://example.com/video & rtmpdump -r rtmp://example.com/video
-
Uncaught Error : spawn D :\Users\...\ffmpeg.exe ENOENT at Process.ChildProcess._handle.onexit
15 avril 2020, par yasgur99I am trying to use ffmpeg in an electron project
I did :
yarn add ffmpeg-static
yarn add fluent-ffmpeg



In the file where I am trying to use it I have :



import ffmpeg from 'fluent-ffmpeg';
import ffmpegStatic from 'ffmpeg-static';




In the method that calls ffmpeg, I have :



ffmpeg.setFfmpegPath(ffmpegStatic);
ffmpeg(path)
 .audioCodec('aac')
 .videoCodec('h264')
 .videoBitrate(8192) // 8 MB = 1024 * 8 KB
 .outputOptions([
 '-y',
 'movflags','faststart'
 ])
 .output('temp.mp4')
 .on('start', () => console.log('starting'))
 .on('stderr', (err,stdout,stderr) => {
 console.log('Cannot Process Video' + err.message);
 })
 .on('progress', progress => {
 console.log(progress.percent);
 })
 .on('end', (stdout, stderr) => {
 fs.readFile('temp.mp4', (error, data) => {
 console.log(error);

 if (error) throw error;
 const filename = path.replace(/^.*[\\\/]/, '');
 return new File([data], filename);
 });
 })
 .run();




When the method that contains this code I get the following exception :



events.js:187 Uncaught Error: spawn D:\Users\Michael\Documents\desktopapp\app\ffmpeg.exe ENOENT
 at Process.ChildProcess._handle.onexit (internal/child_process.js:264)
 at onErrorNT (internal/child_process.js:456)
 at processTicksAndRejections (internal/process/task_queues.js:80)




If I
console.log(ffmpegStatic)
is outputsD:\Users\Michael\Documents\desktopapp\app\ffmpeg.exe



If I look in this folder, I do not see ffmpeg.exe. How can I fix this ?