
Recherche avancée
Médias (2)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (96)
-
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 (...) -
(Dés)Activation de fonctionnalités (plugins)
18 février 2011, parPour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...) -
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 (8746)
-
getting ffmpeg to listen on specific port on amazon ec2
12 juillet 2013, par user1913115I have a streaming device which can stream to any udp address/port, so if i set it up on my network , and open ffmpeg with this command :
ffmpeg -f mpegts -i 'udp://0.0.0.0:2223?fifo_size=1000000&overrun_nonfatal=1' -re -y -strict experimental -vcodec copy -f mp4 main.mp4
it works fine, i get the main.mp4 file recorded.
also, when i check lsof -i it shows that ffmpeg is listening on port 2223however, when i run the same command on amazon ec2, it doesn't record anything. i checked, the port 2223 is open in the security group. and if i run this command, it gets packets fine :
nc -u -l 2223
however when i run lsof -i in amazon ec2 it shows that ffmpeg is listening to a random UDP port (e.g. 42195) every time
has anyone run into this problem ? -
I am trying to integrate FFMPEG library into my Xcode 7.1 project and getting error
11 mars 2016, par Nirbhayld : ’/Users/akash/Documents/Development/ffmpeg_t/libavformat.a(allformats.o)’ does not contain bitcode. You must rebuild it with bitcode enabled (Xcode setting ENABLE_BITCODE), obtain an updated library from the vendor, or disable bitcode for this target. for architecture armv7
clang : error : linker command failed with exit code 1 (use -v to see invocation) -
Unable to load FFMpeg in file in laravel project
14 février 2024, par Hatim Ahmadi'm trying to convert a varity of audio files into a specific audio type of my chossing on my laravel project.
on my search i landed on a package called Laravel FFMpeg, i started with a fresh installation with laravel 6.2, and did the installation as it shows on github, as soon as i started using it i had this error :




FFMpeg\Exception\ExecutableNotFoundException : Unable to load FFMpeg in file C :\Users\Hatim\Desktop\Projects\Audio\vendor\php-ffmpeg\php-ffmpeg\src\FFMpeg\Driver\FFMpegDriver.php on line 55
#0 C :\Users\Hatim\Desktop\Projects\Audio\vendor\pbmedia\laravel-ffmpeg\src\Support\ServiceProvider.php(61) : FFMpeg\Driver\FFMpegDriver::create(Object(Illuminate\Log\LogManager), Object(Alchemy\BinaryDriver\Configuration))




I'm currently just working with a simple thing :


FFMpeg::fromDisk('s3');



and yes I have called it my Controller :
use ProtoneMedia\LaravelFFMpeg\Support\FFMpeg;


I have also tried to install the
PHP-FFMpeg
Package and also tried to install FFmpeg on my device and link it using the path in my config\laravel-FFmpeg

This is how it looks now without any modification, I went to my .env folder but it has nothing regarding FFmpeg so it takes the default value, that's why I tried installing it on my device and replacing the default value with the path of the FFmpeg on my device.


return [
'ffmpeg' => [
 'binaries' => env('FFMPEG_BINARIES', 'ffmpeg'),
 'threads' => 12,
],

'ffprobe' => [
 'binaries' => env('FFPROBE_BINARIES', 'ffprobe'),
],

'timeout' => 3600,
'enable_logging' => true



] ;


I'm currently working on my local environment, but this has to work on a server.