Recherche avancée

Médias (0)

Mot : - Tags -/auteurs

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

Autres articles (112)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

Sur d’autres sites (10307)

  • FFMPEG with SoX : configure : error : cannot find ffmpeg

    17 janvier 2014, par Alberto Megía

    So I am trying to install in my Ubuntu Desktop 12.04 SoX with FFMPEG support for m4a files.

    I have followed this instructions to install FFMPEG, installing only certain encoders. Finally, this is my set up :

    ffmpeg version git-2014-01-17-3ca7085 Copyright (c) 2000-2014 the FFmpeg developers
     built on Jan 17 2014 12:36:01 with gcc 4.6 (Ubuntu/Linaro 4.6.3-1ubuntu5)
     configuration: --prefix=~/ffmpeg_build --extra-cflags=-I~/ffmpeg_build/include --extra-ldflags=-L~/ffmpeg_build/lib --bindir=~/bin --extra-libs=-ldl --enable-gpl --enable-libass --enable-libfdk-aac --enable-libmp3lame --enable-nonfree
     libavutil      52. 62.100 / 52. 62.100
     libavcodec     55. 48.101 / 55. 48.101
     libavformat    55. 23.103 / 55. 23.103
     libavdevice    55.  5.102 / 55.  5.102
     libavfilter     4.  1.100 /  4.  1.100
     libswscale      2.  5.101 /  2.  5.101
     libswresample   0. 17.104 /  0. 17.104
     libpostproc    52.  3.100 / 52.  3.100
    Hyper fast Audio and Video encoder

    Then, I wget SoX 14.4.1 version and try to configure with FFMPEG support like this :

    ./configure --with-ffmpeg

    But I get this error :

    checking for FFMPEG... no
    checking libavformat/avformat.h usability... no
    checking libavformat/avformat.h presence... no
    checking for libavformat/avformat.h... no
    checking ffmpeg/avformat.h usability... no
    checking ffmpeg/avformat.h presence... no
    checking for ffmpeg/avformat.h... no
    configure: error: in `~/sox-14.4.1':
    configure: error: cannot find ffmpeg
    See `config.log' for more details

    So I try to set PKG_CONFIG_PATH environment variable :

    PKG_CONFIG_PATH=~/ffmpeg_build/lib/pkgconfig
    ./configure --with-ffmpeg

    Getting :

    checking for FFMPEG... yes
    checking libavformat/avformat.h usability... yes
    checking libavformat/avformat.h presence... yes
    checking for libavformat/avformat.h... yes
    checking for av_open_input_file in -lavformat... no
    configure: error: in `~/sox-14.4.1':
    configure: error: cannot find ffmpeg
    See `config.log' for more details

    Checking 'config.log' I see the following error :

    | #define HAVE_LIBAVFORMAT_AVFORMAT_H 1
    | /* end confdefs.h.  */
    |
    | /* Override any GCC internal prototype to avoid an error.
    |    Use char because int might match the return type of a GCC
    |    builtin and then its argument prototype would still apply.  */
    | #ifdef __cplusplus
    | extern "C"
    | #endif
    | char av_open_input_file ();
    | int
    | main ()
    | {
    | return av_open_input_file ();
    |   ;
    |   return 0;
    | }
    configure:15862: result: no
    configure:15935: error: in `~/sox-14.4.1':
    configure:15937: error: cannot find ffmpeg

    What am I missing here ?
    Thx !

  • avcodec/jpeg2000dec : fix error detection in pix_fmt_match()

    20 janvier 2014, par Michael Niedermayer
    avcodec/jpeg2000dec : fix error detection in pix_fmt_match()
    

    Fixes out of array accesses with CODEC_FLAG_EMU_EDGE

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/jpeg2000dec.c
  • examples/muxing : change error checks, from "ret != 0" to "ret 0"

    19 janvier 2014, par Stefano Sabatini
    examples/muxing : change error checks, from "ret != 0" to "ret < 0"
    

    More consistent and more future-proof.

    • [DH] doc/examples/muxing.c