Recherche avancée

Médias (0)

Mot : - Tags -/optimisation

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

Autres articles (112)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

Sur d’autres sites (11965)

  • Unable to create a PPAPI (Pepper) video plugin -NaCl module failed - how to resolve ?

    27 novembre 2013, par ElHaix

    Google's Say Goodbye to Our Old Friend NPAPI blog post indicates that NPAPI plugin support will cease by the end of 2014 (in favor of PPAPI).

    We have considered the option of using the ffmpeg libraries to create our own video plugin to simply decode RTSP encoded H.264 video streams on the client - important because we need as near real-time video display (avoiding transcoding latency). Using the ffmpeg libraries, there is still a 3-5 second delay in decoding the stream, not as fast as running MPlayer with the -benchmark option.

    In trying Google's PNaCl recommendation, we just got the LOADING status and the following error :

    NativeClient : NaCl module load failed : PnaclCoordinator : Compile
    process could not be created : ServiceRuntime : failed to start

    Are there any other alternatives or suggestions to getting this working ?

  • Revision 248cf6f69f : mips dsp-ase r2 vp9 decoder loopfilter module optimizations (rebase) Change-Id :

    13 novembre 2013, par Parag Salasakar

    Changed Paths :
     Add /vp9/common/mips/dspr2/vp9_loopfilter_filters_dspr2.c


     Add /vp9/common/mips/dspr2/vp9_loopfilter_filters_dspr2.h


     Add /vp9/common/mips/dspr2/vp9_loopfilter_macros_dspr2.h


     Add /vp9/common/mips/dspr2/vp9_loopfilter_masks_dspr2.h


     Add /vp9/common/mips/dspr2/vp9_mbloop_loopfilter_dspr2.c


     Add /vp9/common/mips/dspr2/vp9_mblpf_horiz_loopfilter_dspr2.c


     Add /vp9/common/mips/dspr2/vp9_mblpf_vert_loopfilter_dspr2.c


     Modify /vp9/common/vp9_rtcd_defs.sh


     Modify /vp9/vp9_common.mk



    mips dsp-ase r2 vp9 decoder loopfilter module optimizations (rebase)

    Change-Id : Ia7f640ca395e8deaac5986f19d11ab18d85eec2d

  • How to use fluent-ffmpeg module inside node.js scripts ?

    6 avril 2016, par Prasanth

    I am using fluent-ffmpeg for compressing the images. Using command prompt png images compression working fine.
    I tried to use node script for compressing images. Compressing jpg images working fine, but it is not supporting for png images. When compressing the PNG images below code throwing error.
    Is there any attributes missing ?

    var targetPath = image path;

    ffmpeg()
       .input(targetPath)
       .complexFilter('scale=486:-1')
       .save(targetPath);

    Please help me to to resolve this issue.