
Recherche avancée
Autres articles (61)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (7152)
-
Getting ffmpeg to work with Heroku
23 octobre 2016, par scientifficI attempted to install ffmpeg for my Heroku Rails app and now my app is crashing.
I added a buildpack using the following command :
heroku config:add BUILDPACK_URL=https://github.com/shunjikonishi/heroku-buildpack-ffmpeg
After pushing to Heroku, I get the following error according to my logs :
2013-11-17T17:50:44.022351+00:00 heroku[web.1]: Starting process with command `bundle exec rails server -p 47171`
2013-11-17T17:50:46.295602+00:00 app[web.1]: bash: bundle: command not found
2013-11-17T17:50:47.589491+00:00 heroku[web.1]: Process exited with status 127
2013-11-17T17:50:47.597968+00:00 heroku[web.1]: State changed from starting to crashed
2013-11-17T17:50:48.620853+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path=/ (...) fwd="76.118.180.235" dyno= connect= service= status=503 bytes=
2013-11-17T17:50:48.847288+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path=/favicon.ico host=(...) fwd="76.118.180.235" dyno= connect= service= status=503 bytes=When I run heroku run rake db:migrate, I get the error :
Running `rake db:migrate` attached to terminal... up, run.9791
(in /app)
rake aborted!
no such file to load -- bundler/setup
rubygems/custom_require>:29:in `require'
rubygems/custom_require>:29:in `require'
/app/config/boot.rb:6:in `<top>'
rubygems/custom_require>:29:in `require'
rubygems/custom_require>:29:in `require'
/app/config/application.rb:1:in `<top>'
rubygems/custom_require>:29:in `require'
rubygems/custom_require>:29:in `require'
/app/Rakefile:5:in `<top>'
/usr/local/lib/ruby/1.9.1/rake.rb:2373:in `load'
/usr/local/lib/ruby/1.9.1/rake.rb:2373:in `raw_load_rakefile'
/usr/local/lib/ruby/1.9.1/rake.rb:2007:in `block in load_rakefile'
/usr/local/lib/ruby/1.9.1/rake.rb:2058:in `standard_exception_handling'
/usr/local/lib/ruby/1.9.1/rake.rb:2006:in `load_rakefile'
/usr/local/lib/ruby/1.9.1/rake.rb:1991:in `run'
/usr/local/bin/rake:31:in `<main>'
</main></top></top></top>When I check the version of bundler I’m using (bundle show bundler), I get :
/Users/(...).rvm/gems/ruby-1.9.3-p448/gems/bundler-1.3.5/lib/bundler.rb:284: warning: Insecure world writable dir /usr/local in PATH, mode 040777
/Users/(...)/.rvm/gems/ruby-1.9.3-p448/gems/bundler-1.3.5How can I solve this problem ?
-
Merge commit ’0cb83c563848bf8f8365e7bd30e7e6b57ef360f0’
13 octobre 2013, par Michael Niedermayer -
Will streaming through RTSP affect normal UDP communication ?
8 mai 2015, par NyarukoI am programming a ground control station for a drone.
Originally all the data/command communication is through UDP between the PC and the drone.
Now I am trying to stream video from a IP camera I put on the drone, the video is 640*480 mpeg video.
And the protocol is RTSP, so I am thinking of using FFMPEG.
The IP camera, the drone and my PC is all connected to a router.
The Ip camera, the drone and my PC all have different IP address.My question is, in this case, usually, will the streaming affect my data/command communication through UDP and even cause it un-usable ?