
Recherche avancée
Médias (3)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (75)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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" (...) -
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.
Sur d’autres sites (7190)
-
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.
-
Generating a P frame based on an I frame
17 octobre 2016, par Navid AhmadiSay I have 5 images that are quite similar. I’d like to compress images 2, 3, 4 and 5 based on the first image, somewhat similar to the way P frames are generated from an I frame.
- In general, what’s the best way/tool to do so ?
- For instance, using FFMPEG, is it possible to generate P frames and store them in a separate file ?
Edit :
Although similar, I am not looking for simply generating a diff between the two images. My goal is to somehow use the information in the first image to make the consecutive images much smaller. If I simply do a diff, the diff itself is about the same size (about 10% reduced) which is not as much as I expect. If I generate a mp4 video including these 5 frames, the video size is much less than putting 5 frames in a file, which probably has to with frame predications based on the I frames. Is there a way to generate those predicted frames one by one and store them individually ? -
Add a compat stdatomic.h implementation based on windows atomics
29 novembre 2016, par Anton KhirnovAdd a compat stdatomic.h implementation based on windows atomics
Adapted from the code by Rémi Denis-Courmont from VLC
This merges libav commit c2755864afadfbaa349e8d583665c86fe99fa90b.
Signed-off-by : Wan-Teh Chang <wtc@google.com>
Reviewed-by : wm4 <nfxjfg@googlemail.com>
Signed-off-by : James Almer <jamrial@gmail.com>