Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (79)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

Sur d’autres sites (11414)

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

  • "No such file or directory" sp.Popen module

    27 mars 2016, par user3481652

    I am trying to take a video and convert it in audio , for this I am using ffmpeg in python. I run the following command but it gives me " No such file or directory" for the input file. Here’s the code-

    FFMPEG_BIN = "ffmpeg"
    import subprocess as sp
    command = [FFMPEG_BIN, '-i', '/home/suryansh/Downloads/t.mp4']
    pipe = sp.Popen(command, stdout = sp.PIPE)

    After executing this code I get home/suryansh/Downloads/t.mp4: No such file or directory but the file is their in the path specified.