
Recherche avancée
Autres articles (70)
-
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 (...) -
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 (...) -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (6606)
-
Docs : Updated documentation, mostly with regard to security.
10 juin 2013, par JamesMGreeneDocs : Updated documentation, mostly with regard to security. Closes #170.
-
Piwik 3 Development Update #1 – New UI design, API changes & release date
1er septembre 2016, par Thomas Steur — Community, DevelopmentOver the last months, we have been actively working on the Piwik 3 release and we want to introduce you to the changes that we have done so far. They include a new and modern UI redesign, new widgets for your dashboard, and technical improvements under the hood.
New Piwik 3 UI
Based on Material Design we have revamped the user interface which is now more responsive, more usable and faster. While the UI is not yet finished, we invite you to check it out already and to let us know what you think.
This new Piwik material design is a visual language that synthesizes classic principles of good design with the innovation and possibility of technology and science.
More responsive
Piwik 3 will look and feel much better on your mobile phone and tablet. Many elements have been improved : the menus, the segment editor and dashboard selector, the widgets, the settings pages and most other pages so you can fully experience and enjoy Piwik on any device !
Improved usability
We have updated the menu structure, the dashboard selector as well as the footer in reports to make your life easier when using Piwik. We love to keep these complicated things simple. There are also many other tiny improvements that you will appreciate.
The Zen Mode lets you view in full screen your analytics reports and dashboards. Users love this feature and it can now be accessed by pressing “z” key.
Faster
To make the Piwik interface faster, we have refactored most of our CSS, HTML and JavaScript and moved more and more of our code into the client. As a result, Piwik now needs to reload the page much less often ! For example when you change the date or change the segment, Piwik will now load the reports instantly. To improve performance even further, Piwik will now load multiple reports on a single page in parallel.
Native fonts
Over the last months more and more web services have started using system fonts, and so will Piwik 3. System fonts look better, improve language support and give you a more native, familiar feeling.
For more details and screenshots have a look at the pull request for the Piwik 3 UI update.
New widgets
With the “Latest Piwik Plugin Updates” widget you won’t miss any newly added or updated plugin anymore. This will help you learn about and discover the useful plugins and themes available on the Marketplace.
Super users can now see at a glance the current state of the Piwik system, thanks to the new “System Check” and “System Summary” widgets.
API Changes
Piwik is the leading open analytics platform, highly customisable and extensible thanks to a flexible plugins architecture and a design based on APIs. In this new major Piwik 3 release, we significantly improve the foundation of our open platform and several of its core APIs.
The new Widgets and Reporting API makes it possible to add reports and widgets to any existing reporting page. In the past, reporting pages had to be created manually which was time consuming and it was hard to maintain a consistent look across different reporting pages. Now reporting pages are generated automatically by the Piwik platform.
The Plugin Settings API was changed to improve performance and to let plugin developers customize the Websites Manager. This is one step towards our goal to let users not only manage websites but also mobile apps, cars, coffee machines or any other thing.
To see a full list of changes in the Piwik 3 analytics platform, have a look at the developer changelog.
Developer docs
The Piwik Developer Zone is full of guides and API references to help developers understand, integrate and extend Piwik. As some APIs have changed in the Piwik 3 release it is now possible to select the Piwik version in the top right corner of the developer zone.
We are updating guides for Piwik 3 and added a Piwik 2 -> Piwik 3 Migration Guide for plugin developers. Many other guides were updated such as Menus, Custom Report and Widgets.
Release date
The first Piwik 3 beta release will be available in the next four weeks. Beta testers automatically receive the update if they are subscribed to the “Latest Beta” release channel. The final Piwik 3 release will be ready before the end of the year. If you want to give it a try, you can either use Piwik from Git and check out the “3.x-dev” branch, or download Piwik 3 from GitHub.
Closing thoughts
With faster & more beautiful reports, better APIs and more stability, Piwik 3 is a big step forward for all Piwik users. As our mission is to create, as a community, the leading international open source web analytics platform that gives every user full control of their data, we are very excited to introduce you to this upcoming release.
We now offer Custom Development services if you like to sponsor a new feature or bug fix, or if you have any custom requirements. And if you use Piwik Analytics to grow your business and need quality help, contact the Piwik analytics experts to get started.
Until our next Piwik 3 dev update, Happy analysis !
-
Can't invoke FFmpeg.getInstance in Android Java development [on hold]
18 août 2019, par BoredDevI’m trying to use FFmpeg in Android Studio but i cant invoke some methods :
1) FFmpeg ffmpeg = FFprobe.getInstance(context) ;
Method getInstance don’t "exist"
2) ffmpeg.execute(cmd, new ExecuteBinaryResponseHandler()
ExecuteBinaryResponseHandler don’t exist
However i tried to execute ffmpeg.execute and everything works fine.
To "install" FFmpeg i did what i found in https://github.com/bravobit/FFmpeg-Android
For that i mean : i included dependencies in gradledependencies {
implementation 'nl.bravobit:android-ffmpeg:1.1.7'
}And that’s it...
Here is the code that FFmpeg works(but notice that i’m not invoking "execute" with FFmpeg object)
// FFmpeg ffmpeg = FFmpeg.getInstance(MainActivity.this);
// Line above returns Cant resolve method and can't build...
Runnable mergemovie = new Runnable() {
@Override
public void run() {
String f1 = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES)+ "/Vid1.mp4";
String output = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES)+ "/out.mp4";
//so i use FFmpeg like below
FFmpeg.execute("-i " + f1 + " -q 5 " + output); // just reducing video quality
}
};
Thread t = new Thread(mergemovie);
t.start();I really need to getInstance and new ExecuteBinaryResponseHandler() working because i want to check if the commands given were successfull...
Thanks guys for any help !