Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (111)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La 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.

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (6566)

  • How to install a Matomo premium feature

    31 janvier 2018, par InnoCraft

    You may have noticed over the last few months that many fantastic new features have been launched on the Matomo Marketplace. As some of them are paid premium features, you may wonder if the process to install them is straightforward, if you can test them before, and whether there is any support behind it. No worries – we’ve got you covered ! This blog post will answer some questions you may have about getting your first premium plugin.

    So why are there some premium features ?

    Researching, building, documenting, testing and maintaining quality products take years of experience and months of hard work by the team behind the scenes. When you purchase a premium plugin, you get a fully working product and you directly help the Matomo core engineers to grow and fund the new Free Matomo versions and cool features.

    However, it is important for us to mention that Matomo will always be free, it is a Free software under GPLv3 license and it will always be the same.
    Want to know more about this ? Check out our FAQ about why there are premium features.

    Can I test a premium feature before a purchase ?

    Absolutely. There are two ways in order to do that :

    1. InnoCraft Matomo Cloud
    2. Matomo Marketplace

    1. InnoCraft Matomo Cloud

    The easiest way is to create a free trial account (one minute of your time) on our Matomo cloud service. You will then have the possibility to test all the premium features during a 30-day trial period. No credit card is required.

    Every premium feature can be trialled for free on the Matomo Cloud

    2. Matomo Marketplace

    The second way is to get the premium feature from the Matomo Marketplace. We have an easy and hassle-free 30-day money back guarantee period on each feature. This means that if you are not happy with a premium feature and you are within the 30-day period, then you will get a full refund for it. Guaranteed !

    How to purchase and install a premium feature ?

    Step 1 : Purchasing the feature

    In order to get a premium feature, just add it to the cart :

    Once done, go to your cart and complete the checkout process to confirm the order.

    When the order is confirmed, you immediately get your license key on the order confirmation page. You also receive the license key by email.

    Step 2 : Activating the feature in your Matomo

    Now that you have received the license key, it is time to activate the plugin in your Matomo :

    • Log in to your Matomo and go to “Administration => Marketplace
    • Copy / paste the license key into the license field at the top of the page and click “Activate”

    • The key will now be activated and you will see a couple of new buttons.

    • To install the premium feature(s) you just purchased in one click, simply click on “Install purchased plugins”. Alternatively, you can scroll down in the Marketplace to the premium feature you purchased and click on “Install”. You can also download the ZIP file on https://shop.matomo.org/my-account/downloads

    And that’s it. The installation of a premium feature is as easy as copy/pasting the license key and clicking a button. Because one license key is linked to all purchased premium features, you only need to enter the license key once. The next time you purchase a premium feature, you simply click on “Install” to have it up and running.

    Updating a premium feature

    Updates for premium features work just like regular plugin updates. When there is a new update available, you will see a notification in the Matomo UI and also receive an email (if enabled under “General Settings”). To upgrade the feature simply click on “Update” and you’re done.

    Which support is provided for each of those premium features ?

    Premium features represent most of our day to day activity, so you can be 100% sure that we will do our maximum in order to answer any of your questions regarding them. To be 100% transparent, we often receive answers from our customers telling us how impressed they are by the quality of the service we are offering.

    Have any questions ?

    We are happy to answer any questions you may have so feel free to get in touch with us.

    Thanks !

    The post How to install a Matomo premium feature appeared first on Analytics Platform - Matomo.

  • aacdec : move from scalefactor ranged arrays to flat arrays

    14 mai 2024, par Lynne
    aacdec : move from scalefactor ranged arrays to flat arrays
    

    AAC uses an unconventional system to send scalefactors
    (the volume+quantization value for each band).
    Each window is split into either 1 or 8 blocks (long vs short),
    and transformed separately from one another, with the coefficients
    for each being also completely independent. The scalefactors
    slightly increase from 64 (long) to 128 (short) to accomodate
    better per-block-per-band volume for each window.

    To reduce overhead, the codec signals scalefactor sizes in an obtuse way,
    where each group's scalefactor types are sent via a variable length decoding,
    with a range.
    But our decoder was written in a way where those ranges were carried through
    the entire decoder, and to actually read them you had to use the range.

    Instead of having a dedicated array with a range for each scalefactor,
    just let the decoder directly index each scalefactor.

    This also switches the form of quantized scalefactors to the format
    the spec uses, where for intensity stereo and regular, scalefactors
    are stored in a scalefactor - 100 form, rather than as-is.

    USAC gets rid of the complex scalefactor handling. This commit permits
    for code sharing between both.

    • [DH] libavcodec/aac/aacdec.c
    • [DH] libavcodec/aac/aacdec.h
    • [DH] libavcodec/aac/aacdec_dsp_template.c
  • I can't understand how to use ffmpeg in javascript (if it's even possible)

    28 juin, par Laimonas Rupeika

    Straight to the problem, I want to use ffmpeg in my javascript project for video editing. So I found cdn : <code class="echappe-js">&lt;script src=&quot;https://cdn.jsdelivr.net/npm/@salomvary/ffmpeg.js-umd@3.1.9001/ffmpeg-mp4.min.js&quot;&gt;&lt;/script&gt; which references to "https://github.com/Kagami/ffmpeg.js", which is ffmpeg port to javascript as I understand ?&#xA;I don't get any errors on import, but if I try loading ffmpeg :

    &#xA;

    // Initialize FFmpeg after the GAPI client is loaded&#xA;  const ffmpeg = createFFmpeg({ log: true });&#xA;&#xA;  // // Load the FFmpeg library&#xA;  await ffmpeg.load();&#xA;

    &#xA;

    I get error : Uncaught (in promise) ReferenceError: createFFmpeg is not defined at initializeGapiClient (index:89:18) and it also messes my whole project. So if possible, how can I use ffmpeg in pure javascript, not Node.js. Should I download ffmpeg library files and then include them in project, I'm totally lost at this.

    &#xA;