
Recherche avancée
Médias (1)
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
Autres articles (99)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (11915)
-
AWS Lambda Error : Cant find ffmpeg
31 août 2016, par rpmI am building a lambda function that requires ffmpeg. The error that I am getting is :
ERROR :: Error: Cannot find ffmpeg
Relevant code to the problem is below...
process.env['PATH'] = process.env['PATH'] + "/" + process.env['LAMBDA_TASK_ROOT']
process.env['PATH'] = process.env['PATH'] + ':/tmp/'
var ffmpeg = require('fluent-ffmpeg')
exports.handler = (event, context, callback) => {
var proc = new ffmpeg();
proc.addInput('testfile.mp4)
.on('start', function(ffmpegCommand) {
})
.on('progress', function(data) {
})
.on('end', function() {
})
.on('error', function(error) {
/// ERROR IS HERE
})
.outputOptions(['-hls_time 10'])
.output(fileName + '.m3u8')
.run();
}Here’s my ZIP structure :
./ffmpeg
./ffprobe
./index.js
./node_modules
./node_modules/aws-sdk
./node_modules/ffmpeg
./node_modules/fluent-ffmpeg
./package.jsonI’ve read around and have seen people mention
chmod
-ing ffmpeg and ffprobe, and I tried that usingchmod 755
on both executables, and that didn’t work.Also read about having to change the path. I tried what I could, and was unsuccessful again. I am not sure where to turn from here, or how to further diagnose what I am doing wrong. Any help would be greatly appreciated. Thanks !
-
AWS Lambda Error : Cant find ffmpeg
21 octobre 2022, par raisedandglazedI am building a lambda function that requires ffmpeg. The error that I am getting is :



ERROR :: Error: Cannot find ffmpeg




Relevant code to the problem is below...



process.env['PATH'] = process.env['PATH'] + "/" + process.env['LAMBDA_TASK_ROOT']
process.env['PATH'] = process.env['PATH'] + ':/tmp/'

var ffmpeg = require('fluent-ffmpeg')

exports.handler = (event, context, callback) => {

 var proc = new ffmpeg();

 proc.addInput('testfile.mp4)
 .on('start', function(ffmpegCommand) {
 })
 .on('progress', function(data) {
 })
 .on('end', function() {
 })
 .on('error', function(error) {
 /// ERROR IS HERE
 })
 .outputOptions(['-hls_time 10'])
 .output(fileName + '.m3u8')
 .run();

}




Here's my ZIP structure :



./ffmpeg
./ffprobe
./index.js
./node_modules
./node_modules/aws-sdk
./node_modules/ffmpeg
./node_modules/fluent-ffmpeg
./package.json




I've read around and have seen people mention
chmod
-ing ffmpeg and ffprobe, and I tried that usingchmod 755
on both executables, and that didn't work.


Also read about having to change the path. I tried what I could, and was unsuccessful again. I am not sure where to turn from here, or how to further diagnose what I am doing wrong. Any help would be greatly appreciated. Thanks !


-
how to merge segmented m4s or find the init file with ffmpeg
17 février 2023, par user3385102i have this locked video that i can watch but looking at the responses i see that the video looks like its split into 3 m4s segments


this video seems to be hosted in vimeo but i can't seem to know where to find the init.mp4 nor do i knoew how to merge the segment and turn it into mp4 with ffmpeg




hi , i have this locked video that i can watch but looking at the responses i see that the video looks like its split into 3 m4s segments


this video seems to be hosted in vimeo but i can't seem to know where to find the init.mp4 nor do i knoew how to merge the segment and turn it into mp4 with ffmpeg