Recherche avancée

Médias (21)

Mot : - Tags -/Nine Inch Nails

Autres articles (59)

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

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

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (6490)

  • format unknown error with ffmpeg

    6 février 2016, par Rambo Actionha

    I’m trying to convert .webm to .mp4 using :

    ffmpeg -fflags +genpts -i 1.webm -r 24 1.mp4

    it doesn’t work , this is what I get :

    C:\Users\mahmoud\Desktop\ffmpeg>ffmpeg -fflags +genpts -i v.webm -r 24 1.mp4
    FFmpeg version SVN-r18639, Copyright (c) 2000-2009 Fabrice Bellard, et al.
     configuration: --enable-memalign-hack --enable-postproc --enable-gpl --enable-
    libfaac --enable-libfaad --enable-libgsm --enable-libmp3lame --enable-libvorbis
    --enable-libtheora --enable-libx264 --enable-libxvid --disable-ffserver --enable
    -avisynth --enable-pthreads
     libavutil     50. 3. 0 / 50. 3. 0
     libavcodec    52.27. 0 / 52.27. 0
     libavformat   52.32. 0 / 52.32. 0
     libavdevice   52. 2. 0 / 52. 2. 0
     libswscale     0. 7. 1 /  0. 7. 1
     libpostproc   51. 2. 0 / 51. 2. 0
     built on Apr 21 2009 13:44:38, gcc: 4.2.4 (TDM-1 for MinGW)
    v.webm: Unknown format

    any one can help ?

  • Class FFMPEG not found on Webfaction

    28 janvier 2016, par Luan Gabriel

    I’m trying to use FFMPEG on my application but its no working. The FFMPEG its install in my server (WebFaction) :

    FFmpeg version UNKNOWN, Copyright (c) 2000-2009 Fabrice Bellard, et al.
    configuration : —enable-gpl —enable-libamr-nb —enable-libamr-wb —enable-libfaac —enable-libfaad —enable-libmp3lame —enable-nonfree
    libavutil 49.14. 0 / 49.14. 0
    libavcodec 52.15. 0 / 52.15. 0
    libavformat 52.28. 0 / 52.28. 0
    libavdevice 52. 1. 0 / 52. 1. 0
    built on Jan 9 2015 12:30:52, gcc : 4.8.2 20140120 (Red Hat 4.8.2-16)

    But when I tried to do $mov = new ffmpeg_movie($movie); its showing me a error message : Class 'ffmpeg_movie' not found(...)

    Any ideas ?

  • php exec ffmpeg how to get errors

    20 mars 2016, par Wiika
    exec("ffmpeg -i $flv -y -f mjpeg -ss 00:00:05 -s 120x90 -vframes 1 -an thumb.jpg",$error);

    $error return’s empty value
    but when i run this command using cron job
    this one send a notification email to me which contain informations like

    FFmpeg version 0.5.2, Copyright (c) 2000-2009 Fabrice Bellard, et al.
    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-libmp3lame —enable-libopencore-amrnb —enable-libopencore-amrwb —enable-libtheora —enable-libx264 —enable-gpl —enable-nonfree —enable-postproc —enable-pthreads —enable-shared —enable-swscale —enable-vdpau —enable-version3 —enable-x11grab
    libavutil 49.15. 0 / 49.15. 0
    libavcodec 52.20. 1 / 52.20. 1
    libavformat 52.31. 0 / 52.31. 0
    libavdevice 52. 1. 0 / 52. 1. 0
    libavfilter 0. 4. 0 / 0. 4. 0
    libswscale 0. 7. 1 / 0. 7. 1
    libpostproc 51. 2. 0 / 51. 2. 0
    built on Jun 13 2010 23:44:18, gcc : 4.1.2 20080704 (Red Hat 4.1.2-48)

    I need to be able to get those errors in php so i can know if the thumb was created or not

    Thanks.