
Advanced search
Medias (1)
-
Bug de détection d’ogg
22 March 2013, by
Updated: April 2013
Language: français
Type: Video
Other articles (34)
-
Configuration spécifique d’Apache
4 February 2011, byModules spécifiques
Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel;
Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
Création d’un (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 September 2013, byCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo; l’ajout d’une bannière l’ajout d’une image de fond;
-
Gestion générale des documents
13 May 2011, byMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet; la récupération des métadonnées du document original pour illustrer textuellement le fichier;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP sur (...)
On other websites (6897)
-
Introducing the Piwik Java Tracker – Analytics for your Java based applications
18 November 2015, by 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.
-
FFmpeg for Android
10 September 2014, by Adroid FreakI’m using
FFmpeg4Android
for changing the resolution of videos. I can’t get a good video output out of it. My command is below (copied from their website). The video looks always stretched and it doesn’t looks normal. I tried so many combinations of args but I couldn’t reach good results. What I need is a low a good quality video (640x360) or even less, anyone here reached the right combinations of args that achieve both fast resolution change/video compressing and good/acceptable quality using this library? Can you please advise?I tried many resolutions and many bitrates here, none of them is good.
ffmpeg -y -i /sdcard/videokit/in.mp4 -strict experimental -s 320x240 -r 25 -aspect 3:4 -vcodec mpeg4 -b 2097152 -ab 48000 -ac 2 -ar 22050 /sdcard/videokit/out.mp4
-
How can I trim mp3 file? [duplicate]
6 March 2016, by devzonePossible Duplicate:
Crop MP3 to first 30 secondsI’m using this class http://www.phpclasses.org/package/5275-PHP-Manipulate-MP3-audio-files.html but I get an error, I want to create a website that sell a music online I would like to have a preview like about 15-20 seconds how to this ? Any help?
Thank you.