
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (90)
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, 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 (...) -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)
Sur d’autres sites (16210)
-
Could I use openframeworks and upd play the video in other computer ?
7 novembre 2014, par cindywmiaoI want to use openframework, udp connection and FFMPEG encode and decode to play the video from the other computer.
I could not find how to turn the byte[] into one frame with FFMPEG decode. Is there some example/demo ?
I found two demos from Internet. http://forum.openframeworks.cc/t/export-audio-and-or-video-using-ffmpeg/5123 This one is only the example for mac, but I use visual studio.Then, http://www.morethantechnical.com/2013/04/11/simplified-ffmpeg-video-writer-also-for-openframework-w-code/, this one does not work. It shows my the error :
The program can't start because avcodec-56.dll is missing from your computer.
Try reinstalling the program to fix this problem.Could someone give me a clue how to do it ?
-
avcodec/dvbsubdec : Add option to select when to computer clut (always/never/"if needed")
26 juillet 2015, par Michael Niedermayer -
Introducing the Piwik Java Tracker – Analytics for your Java based applications
18 novembre 2015, par Brett — Community, DevelopmentHello Piwik Community !
My name is Brett Csorba, a Software Engineer out of the US. I’d like to introduce the Piwik Java Tracker project, an easy way to track usage data within your Java applications !
When would I need to track users in a Java application ? What’s wrong with front end tracking ?
Absolutely nothing ! We encourage users to track information where it makes the most sense for them ! But in cases where
- you have a 100% Java based application
- you expose a REST layer where users can bypass your front end tracking code
- you have valuable data you want to track that is unnecessary or too sensitive to pass back to the user
the Piwik Java Tracker can help you track the data you need.
What exactly can it track ?
We aim to provide the full Tracking HTTP API. If you find we’ve left something out by mistake, let us know !
You’ve sparked my curiosity, how would I use such a thing ?
Well, once you’ve installed Piwik and set up your first website, you can grab the latest jar and include it in your project. The dependencies needed to both use and test this library can be found here.
This library is intended to be used for projects that support Java 8. The released binaries are built, tested, and deployed from Oracle JDK 8.
Using this API is as simple as creating a new request
PiwikRequest request = new PiwikRequest(1, new URL("http://my-site.com/action")) ;
Setting some more information if you want to
request.setActionName("myAction") ; request.setPageCustomVariable("key", "value") ;
and firing the request.
PiwikTracker tracker = new PiwikTracker("http://your-piwik-domain.tld/piwik.php") ; HttpResponse response = tracker.sendRequest(request) ;
Check out this guide to using the API for some more information !
Looks cool so far, can I help out ?
Yes ! Absolutely ! Download the project, try it, break it without mercy ! (Just make sure you tell us how.) Contribute to the project or let us know what we can do to it to improve it. As with all open source projects, we need your help to improve it.