Recherche avancée

Médias (0)

Mot : - Tags -/page unique

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

Autres articles (47)

  • Les statuts des instances de mutualisation

    13 mars 2010, par

    Pour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
    Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...)

  • Le plugin : Gestion de la mutualisation

    2 mars 2010, par

    Le plugin de Gestion de mutualisation permet de gérer les différents canaux de mediaspip depuis un site maître. Il a pour but de fournir une solution pure SPIP afin de remplacer cette ancienne solution.
    Installation basique
    On installe les fichiers de SPIP sur le serveur.
    On ajoute ensuite le plugin "mutualisation" à la racine du site comme décrit ici.
    On customise le fichier mes_options.php central comme on le souhaite. Voilà pour l’exemple celui de la plateforme mediaspip.net :
    < ?php (...)

  • 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 (5738)

  • Convert factory-class and factory-method to factory in Services.xml

    19 janvier 2016, par K Ф

    I’m using Symfony3 and I noticed that factory-class and factory-method don’t exist anymore, but factory does exist.

    This is rather frustrating because I would like to use pulse00/ffmpeg-bundle, but the services.xml seems to be pre-3.0.

    factory-class and factory-method

    As you can see the 4 red marked attributes are the problem :

    factory-class="%dubture_ffmpeg.ffmpeg.class%" factory-method="create"
    factory-class="%dubture_ffmpeg.ffprobe.class%" factory-method="create"

    Example(Symfony3 version) :

    services:
       newsletter_manager:
           class:   NewsletterManager
           factory: [NewsletterManagerFactory, createNewsletterManager]

    Question :

    How do I update the services.xml for it to work correctly with Symfony3 ?

    What I have tried :

    I have tried combining the two without much success and using factory instead. But apparantly "factory" is not allowed either.

    Errors :

    $ php bin/console server:run

    The error I am getting :

    The attribute ’factory-class’ is not allowed.

    error

  • Revision fbac961b47 : mips msa vp9 filter by weight optimization filter by weight - average improveme

    11 juin 2015, par Parag Salasakar

    Changed Paths :
     Modify /vp9/common/mips/msa/vp9_macros_msa.h


     Add /vp9/common/mips/msa/vp9_mfqe_msa.c


     Modify /vp9/common/vp9_rtcd_defs.pl


     Modify /vp9/vp9_common.mk



    mips msa vp9 filter by weight optimization

    filter by weight - average improvement 2x-3x

    Change-Id : I4832033335d339cdafdce697f07ce3e643920057

  • Have a one liner, ffmpeg script to process and audio file would love to run it on AWS Lambda

    13 juin 2016, par Edward Potter

    Ok, wow, got Lambda to work processing my ImageMagick script. Would love to have that work with ffmpeg. It’s a one liner, just don’t see an easy way to do that. I can now upload anything to a S3 bucket.

    Mounting S3 on EC2 seems possible, do the processing local, then move it to S3, but the Lambda option seems far more interesting. Wondering if any insights (or references, suggestions) on how to implement that. Thanks.

    The script :

    ffmpeg -i $i -b:a 48k -ar 16000 -f mp3 "$i"