
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (57)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;
Sur d’autres sites (6474)
-
ffmpeg exited with code 1 : Error configuring complex filters
21 décembre 2015, par rycornellI am using the fluent-ffmpeg node package to merge videos. I am following the documentation exactly but I get the following error :
Error: ffmpeg exited with code 1: Error configuring complex filters.
Here is the code :ffmpeg('/videos/test/part1.mov')
.input('/videos/test/part2.mov')
.on('error', function(err) {
console.log('An error occurred: ' + err.message);
})
.on('end', function() {
console.log('Merging finished !');
})
.mergeToFile('videos/test/final.mp4', 'videos/test/tempDir');and here is the error output (I logged the command generated by fluent-ffmpeg to the console) :
C:\Program Files\ffmpeg\bin\ffmpeg.exe [ '-formats' ] { captureStdout: true }
C:\Program Files\ffmpeg\bin\ffmpeg.exe [ '-encoders' ] { captureStdout: true }
C:\Program Files\ffmpeg\bin\ffmpeg.exe [ '-i',
'/videos/test/part1.mov',
'-i','/videos/test/part2.mov',
'-y',
'-filter_complex',
'concat=n=2:v=1:a=1',
'videos/test/final.mp4' ] { niceness: 0 }
An error occurred: Error: ffmpeg exited with code 1: Error configuring complex filters.
Invalid argument
at ChildProcess.<anonymous> (C:\test\node_modules\fluent-ffmpeg\lib\processor.js:169:22)
at ChildProcess.emit (events.js:98:17)
at Process.ChildProcess._handle.onexit (child_process.js:809:12)
</anonymous>I’m able to run ffmpeg on my machine for other tasks and it works fine. I’m not sure what the ’-filter_complex’ flag is supposed to do. I am using fluent-ffmpeg version 2.0.1 and ffmpeg windows static build git-9d1fb9e (2015-12-17).
-
How to install FFMPEG in Red Hat OS From source code ?
9 février 2015, par SatishakumarPlease somebody provide me references for installing FFMPEG with mp3 and h264 codecs enabled from source code.
I gone through official FFMPEG website, No detailed information as how to install FFMPEG with all features enabled and no information about dependencies.
-
C++ code to trim a video using FFmpeg [on hold]
31 mai 2018, par JEETU KUMARFor my project I need a c++ code to cut a video from given starting point to a given ending point using ffmpeg