
Recherche avancée
Autres articles (111)
-
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 (14771)
-
I cant install jmf-2_1_1e-windows-i586 on windows 7 32 bit.
1er décembre 2013, par TzozoI am trying to install Java Media Framework in windows 7 to use to develop a video and audio conferencing desktop application but the response i get is, its not compatible when i install with troubleshoot option. Its windows 7 32 bit. Although Java Media Framework is old i prefer Java Media Framework over Free Media for Java because it has lot of documentation online and in books. My question is How can i make jmf-2_1_1e-windows-i586 compatible with the my OS.
I tried installing without troubleshoot option and the installation starts but after unpacking the package it remains in the running processes but never continues.
-
How to know if x264 uses multiple processors Windows
3 décembre 2013, par fessyI have Linphone open source application that uses x264 encoder. By default it runs on one thread :
x264_param_t *params= .....
params->i_threads=1;I added ability to use all processors :
long num_cpu=1;
SYSTEM_INFO sysinfo;
GetSystemInfo( &sysinfo );
num_cpu = sysinfo.dwNumberOfProcessors;
params->i_threads=num_cpu;The question is how do I know that during video streaming x264 runs on (in my case) 4 processors ?
Because from
Task Manager -> Performance -> CPU usage history
doesn't clear.I use windows 7
Thanks,
-
Can't get gem 'streamio-ffmpeg' to work in rails 3 w/ windows
4 janvier 2013, par HelloWorldIn my gemfile I add the following line...
gem 'streamio-ffmpeg'
Then i run bundle, it works fine. When I start my app I get the following error..
c :/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activesupport-3.2.9/lib/active_support/dependencies.rb:251:in
require': cannot load such file -- win32/process (LoadError) from
c:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activesupport-3.2.9/lib/active_support/dependencies.rb:251:inblock in require' from
c :/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activesupport-3.2.9/lib/active_support/dependencies.rb:236:inload_dependency' from
c:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activesupport-3.2.9/lib/active_support/dependencies.rb:251:inrequire' from
c :/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/streamio-ffmpeg-0.9.0/lib/ffmpeg/io_monkey.rb:15:in
`'I downloaded ffmpeg from here - http://ffmpeg.zeranoe.com/builds/ and followed these insturctions...http://www.wikihow.com/Install-FFmpeg-on-Windows
Not sure why it is not working ?