Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (51)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (10415)

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

  • 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

  • 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 ?