
Recherche avancée
Médias (1)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (97)
-
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 (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
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 (8634)
-
Could not load ultrafast preset
3 avril 2023, par coure2011Code :


import ffmpegPath = require('@ffmpeg-installer/ffmpeg');
import ffmpeg = require('fluent-ffmpeg');

await new Promise((resolve, reject) => {
 ffmpeg(tempFilePath)
 .videoCodec('libx264')
 .audioCodec('copy')
 .preset('ultrafast')
 .output(outputFilePath)
 .on('end', resolve)
 .on('error', reject)
 .run();
 });



Getting error :


/presets/ultrafast could not be loaded: Cannot find module



-
audio player jwplayer wma files failes with error - Task Queue failed at step 5
17 mars 2018, par Sabeenai have a jw player which plays mp3 files but wma files it gives the error "Task Queue failed at step 5 : Playlist could not be loaded : Playlist file did not contain a valid playlist"
i thought of two reasons
1. there is no support for wma but please confirm me this.
2. somewhere i need to setup the type of file i am using in this player.if wma not supported in jwplayer how can play wma and mp3 files in my website ?
is it ffmpeg needed to convert wma to mp3 while uploading ?
-
ffmpeg will not load libraries
12 août 2016, par user6686891when I try to use ffmpeg this is the result :
dyld: Library not loaded: /opt/local/lib/libx264.142.dylib
Referenced from: /opt/local/bin/ffmpeg
Reason: image not found
Trace/BPT trap: 5I downloaded ffmpeg with homebrew on OSX 10.9 and it says that the most up-to-date version (3.1) is already installed.
I found a similar issue on github, but the suggestion of uninstalling ffmpeg and rebuilding from source throws up the following error :
Error: SHA256 mismatch
How do I get ffmpeg to work ?