
Recherche avancée
Autres articles (82)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
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 (9990)
-
Piwik 3 Development Update #3 – Marketplace for Piwik Analytics
13 septembre 2016, par Piwik Core Team — Community, DevelopmentThis is our latest Piwik 3 development update where we present all changes that will be shipped with Piwik 3. Learn more about the exciting projects under progress in our Piwik 3 dev update #1 and dev update #2.
The Piwik Marketplace is the place where you can discover & download plugins to enrich the functionality of your Piwik, and themes to change the look and feel of your Piwik user interface. In preparation for our Piwik 3 release we have made several improvements to the Marketplace :
- Users can now view more information for a given plugin, such as a link to an online demo, a video demo, how to obtain support from the Plugin’s developer(s), and more.
- Users can now view which plugins are compatible with the most recent Piwik version, for example view which plugins are already compatible with Piwik 3.
- Plugin developers can now 1) promote their plugin better, 2) easily define requirement(s) for their plugins using composer.json version constraints (a best practise most developers already use) and 3) developers can define which files and directories should be excluded from the publicly available plugin zip packages.
These improvements will make it easier for you to discover new Piwik Analytics plugins to achieve your goals.
Marketplace now supports different Piwik versions
You can now filter plugins by Piwik version to see only plugins that are compatible with your Piwik.
When you browse the Marketplace in the Piwik app itself, you will automatically only see plugins and updates that are compatible with your Piwik.Better plugin preview
Plugin developers are able to display screenshots for their plugins, and now plugin developers can also specify a demo URL and a video in the “plugin.json” file. Adding a video to your plugin allows users to get a much better understanding of what your plugin does and how a theme looks.
Unified support page
In the past a developer had to define the text that was displayed on the support page. This often resulted in blank support pages or developers only showed an email address. With this new update, links and other support information are displayed in a standardised way as specified in the “support” section of the “plugin.json” file. A developer can now define links to an issue tracker, a wiki, the plugin’s source code and more.
License files
The license name on your plugin’s page is now clickable and can show the license text for your plugin. To define a license text for your plugin, create a file named
LICENSE
,LICENSE.md
orLICENSE.txt
.FAQ and Documentation
In the past a “FAQ” tab was displayed if such a section was present in the plugin’s readme file. This was hard to understand and sometimes ended up in long readme files. Now we pick up the FAQ content from a
docs/faq.md
file.For plugins developers who wish to provide a user guide(s), it is now possible to show a “documentation” tab to the plugin page by specifying a
docs/index.md
file.Changelog
When you define a file named
CHANGELOG
,CHANGELOG.md
orCHANGELOG.txt
in your plugin, we will show the content of this file in a tab “Changelog” on your plugin’s page. Before it was needed to specify the content of the changelog in the readme file.Exclude files from the plugin
If your plugin source code contains files that are not supposed to be present on a Piwik installation you can now choose to exclude files and directories from your plugin zip archive. When a user installs your plugin the excluded files won’t be there.
Migrating your plugin for Piwik 3
We recommend to all plugin developers to specify in the
plugin.json
file whether their plugin is compatible with Piwik 3 or not. If your plugin defines a “Changelog”, “Support” or “FAQ” section in theREADME.md
file we recommend to migrate this to the new structure. Read more about this in the migration guide.Until our next Piwik 3 dev update, Happy analysis !
-
Nuxeo video conversion issue
14 septembre 2016, par pradeep gowdaI am new to nuxeo. Let me describe.
Description :
1. Nuxeo requires external service ffmpeg to convert video in to different formats[mp4,webm etc...]
2. ffmpeg is installed
3. Problem in Video conversionIf i start nuxeo as below
Path= $NUXEO_HOME/bin
./nuxeoctl startNo issues, Works fine.
But i am facing issue in video conversion when i start nuxeo as daemon service.
service nuxeo start
Below is my Bash Script :
#!/bin/sh
### BEGIN INIT INFO
# Provides: nuxeo
# Required-Start: $local_fs $remote_fs $network $syslog
# Required-Stop: $local_fs $remote_fs $network $syslog
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Start/stop Nuxeo
# Description: Start/stop Nuxeo
### END INIT INFO
DESC="Nuxeo"
NUXEOCTL="/opt/cisco/nuxeo-cap-7.10-tomcat/bin/nuxeoctl"
NUXEO_CONF="/var/lib/nuxeo/conf/nuxeo.conf"
export NUXEO_CONF
function start() {
echo $$ > /var/run/nuxeo.pid
exec $NUXEOCTL --quiet startbg
}
function stop() {
$NUXEOCTL --quiet stop
/bin/rm /var/run/nuxeo.pid
}
case "$1" in
start)
start
;;
stop)
stop
;;
restart)
$NUXEOCTL --quiet restart
;;
force-reload)
$NUXEOCTL --quiet restart
;;
status)
$NUXEOCTL --quiet status
;;
showconf)
$NUXEOCTL --xml showconf
;;
*)
echo "Usage: $0 {start|stop|restart|force-reload|status|showconf}" >&2
exit 3
;;
esacI am getting following error. when i try to upload video.
2016 - 09 - 14 05: 49: 01, 943 ERROR[Nuxeo - Work - videoConversion - 2][org.nuxeo.ecm.core.work.AbstractWork] Exception during work: VideoConversionWork(9596ea87 - 43dd - 4ba8 - b691 - 6e519a7eccfb, /videoAutomaticConversions:138979904092822.1006934040, Progress(?%, ?/0), Transcoding)
org.nuxeo.ecm.core.convert.api.ConverterNotAvailable: Converter convertToWebM is not available
at org.nuxeo.ecm.core.convert.service.ConversionServiceImpl.convert(ConversionServiceImpl.java: 178)
at org.nuxeo.ecm.platform.video.service.VideoServiceImpl.convert(VideoServiceImpl.java: 175)
at org.nuxeo.ecm.platform.video.service.VideoConversionWork.work(VideoConversionWork.java: 100)
at org.nuxeo.ecm.core.work.AbstractWork.runWorkWithTransaction(AbstractWork.java: 340)
at org.nuxeo.ecm.core.work.AbstractWork.runWorkWithTransactionAndCheckExceptions(AbstractWork.java: 301)
at org.nuxeo.ecm.core.work.AbstractWork.run(AbstractWork.java: 272)
at org.nuxeo.ecm.core.work.WorkHolder.run(WorkHolder.java: 52)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java: 1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java: 617)
at java.lang.Thread.run(Thread.java: 745)I don’t know why. I am behind this issue but still i am not able find solution for this .
-
Cannot retrieve native file ffmpeg-amd64.exe
26 septembre 2016, par Sagor AhmedI am trying to convert video to audio . That is why , I am using the following code :
File source = new File("E:\\Shunno - Khachar Bhitor Ochin Pakhi.mp4");
File target = new File("E:\\output.mp3");
AudioAttributes audio = new AudioAttributes();
audio.setCodec("libmp3lame");
audio.setBitRate(new Integer(128000));
audio.setChannels(new Integer(2));
audio.setSamplingRate(new Integer(44100));
EncodingAttributes attrs = new EncodingAttributes();
attrs.setFormat("mp3");
attrs.setAudioAttributes(audio);
Encoder encoder = new Encoder();
try
{
encoder.encode(source, target, attrs);
}
catch (IllegalArgumentException | EncoderException e)
{
}But I am getting the following error :
Sep 26, 2016 11:28:29 AM it.sauronsoftware.jave.DefaultFFMPEGLocator copyFile
SEVERE: Could not get native library for ffmpeg-amd64.exe
Exception in thread "main" java.lang.RuntimeException: Cannot retrieve native file ffmpeg-amd64.exe
at it.sauronsoftware.jave.DefaultFFMPEGLocator.copyFile(DefaultFFMPEGLocator.java:139)
at it.sauronsoftware.jave.DefaultFFMPEGLocator.<init>(DefaultFFMPEGLocator.java:80)
at it.sauronsoftware.jave.Encoder.<init>(Encoder.java:105)
at Convert.main(Convert.java:29)
</init></init>How can I solve this error ? Please help me .