Recherche avancée

Médias (91)

Autres articles (50)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

Sur d’autres sites (8929)

  • mpeg124 : use sign_extend() function

    10 octobre 2011, par Mans Rullgard

    mpeg124 : use sign_extend() function

  • mpeg124 : use sign_extend() function

    10 octobre 2011, par Mans Rullgard

    mpeg124 : use sign_extend() function

  • -vf unrecognized with php exec() function

    29 septembre 2011, par Rajat

    I am using php to create a video with fade effects. But exec() function gives following output :

    array(19)
    [0]=>
    string(67) "FFmpeg version 0.6.1, Copyright (c) 2000-2010 the FFmpeg developers"

    [1]=>
    string(74) " built on Dec 4 2010 15:35:31 with gcc 4.1.2 20080704 (Red Hat 4.1.2-48)"

    [2]=>
    string(649) " configuration : —prefix=/usr —libdir=/usr/lib64 —shlibdir=/usr/lib64 —mandir=/usr/share/man —incdir=/usr/include —disable-avisynth —extra-cflags='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector —param=ssp-buffer-size=4 -m64 -mtune=generic -fPIC' —enable-avfilter —enable-avfilter-lavf —enable-libdirac —enable-libfaac —enable-libfaad —enable-libfaadbin —enable-libgsm —enable-libmp3lame —enable-libopencore-amrnb —enable-libopencore-amrwb —enable-libx264 —enable-gpl —enable-nonfree —enable-postproc —enable-pthreads —enable-shared —enable-swscale —enable-vdpau —enable-version3 —enable-x11grab"

    [3]=>
    string(35) " libavutil 50.15. 1 / 50.15. 1"

    [4]=>
    string(35) " libavcodec 52.72. 2 / 52.72. 2"

    [5]=>
    string(35) " libavformat 52.64. 2 / 52.64. 2"

    [6]=>
    string(35) " libavdevice 52. 2. 0 / 52. 2. 0"

    [7]=>
    string(35) " libavfilter 1.19. 0 / 1.19. 0"

    [8]=>
    string(35) " libswscale 0.11. 0 / 0.11. 0"

    [9]=>
    string(35) " libpostproc 51. 2. 0 / 51. 2. 0"

    [10]=>
    string(122) "Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '/usr/slideshow/frame1.mp4' :"

    [11]=>
    string(11) " Metadata :"

    [12]=>
    string(26) " major_brand : isom"

    [13]=>
    string(25) " minor_version : 512"

    [14]=>
    string(35) " compatible_brands : isomiso2mp41"

    [15]=>
    string(33) " encoder : Lavf52.64.2"

    [16]=>
    string(58) " Duration : 00:00:05.00, start : 0.000000, bitrate : 31 kb/s"

    [17]=>
    string(107) " Stream #0.0(und) : Video : mpeg4, yuv420p, 320x240 [PAR 1:1 DAR 4:3], 29
    kb/s, 1 fps, 1 tbr, 1 tbn, 1 tbc"

    [18]=>
    string(24) "Unrecognized option 'vf'"

    Why it is giving unrecognized option 'vf' while it works fine when run directly on server.My command is : "ffmpeg -i /usr/slideshow/frame1.mp4 -vf 'fade=out:0:5' /usr/slideshow/fade1.mp4"

    I am executing it with exec() function. Why the error is coming and what should i use to apply filter to my input video. I am working on CentOS server.

    Please guide me...