Recherche avancée

Médias (0)

Mot : - Tags -/performance

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

Autres articles (27)

  • Encodage et transformation en formats lisibles sur Internet

    10 avril 2011

    MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
    Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
    Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)

  • Monitoring de fermes de MediaSPIP (et de SPIP tant qu’à faire)

    31 mai 2013, par

    Lorsque l’on gère plusieurs (voir plusieurs dizaines) de MediaSPIP sur la même installation, il peut être très pratique d’obtenir d’un coup d’oeil certaines informations.
    Cet article a pour but de documenter les scripts de monitoring Munin développés avec l’aide d’Infini.
    Ces scripts sont installés automatiquement par le script d’installation automatique si une installation de munin est détectée.
    Description des scripts
    Trois scripts Munin ont été développés :
    1. mediaspip_medias
    Un script de (...)

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

Sur d’autres sites (5764)

  • Fix compilation with —disable-everything —enable-muxer=avi —disable-network.

    16 avril 2014, par Anh
    Fix compilation with —disable-everything —enable-muxer=avi —disable-network.
    

    Fixes ticket #3568.

    • [DH] libavformat/Makefile
  • Compilation of x264 with newest libswscale and libavformat

    4 décembre 2016, par pcroland

    Yesterday I wanted to compile x264 myself because the latest binary on videolan is compiled without libswscale : link

    If I just use

    ./configure --enable-static --enable-shared

    then the binary will compile libswscale 3.1.101 and libavformat 56.40.101 from the libswscale-dev and libavformat-dev packages. If I clone FFmpeg’s git and use

    ./configure --enable-static --enable-shared --extra-cflags="-I$HOME/FFmpeg"

    the binary will have the latest libswscale and libavformat, but it wont work :

    pc@pcroland:~/bin$ ./x264 --version
    x264 0.148.2744 b97ae06
    (libswscale 4.3.101)
    (libavformat 57.58.101)
    built on Dec  4 2016, gcc: 5.4.0 20160609
    x264 configuration: --bit-depth=8 --chroma-format=all
    libx264 configuration: --bit-depth=8 --chroma-format=all
    x264 license: GPL version 2 or later
    libswscale/libavformat license: GPL version 2 or later
    pc@pcroland:~/bin$ ./x264 --input-res 1920x1080 --fps 24000/1001 --vf resize:720,404,method=spline --output /home/pc/test.264 /home/pc/asd.264
    [h264 @ 0x1bc3ec0] Format h264 detected only with low score of 1, misdetection possible!
    [h264 @ 0x1bc3ec0] Could not find codec parameters for stream 0 (Video: h264, none): unspecified size
    Consider increasing the value for the 'analyzeduration' and 'probesize' options
    lavf [error]: could not find input stream info
    avs [error]: failed to load avisynth
    raw [info]: 1920x1080p 0:0 @ 24000/1001 fps (cfr)
    resize [info]: resizing to 720x404
    x264 [info]: using SAR=404/405
    x264 [info]: using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 AVX2 LZCNT BMI2
    x264 [info]: profile High, level 3.0
    Bus error (core dumped)
    pc@pcroland:~/bin$

    How to reproduce the error :

    cd; git clone https://github.com/FFmpeg/FFmpeg; git clone http://git.videolan.org/git/x264.git; cd x264; ./configure --enable-static --enable-shared --extra-cflags="-I$HOME/FFmpeg" --bindir="$HOME/bin"; sudo make; sudo make install

    System : Ubuntu 16.04

  • FFMPEG : FFPLAY not getting generated on compilation

    6 décembre 2013, par Zax

    I have downloaded FFMPEG with FFPLAY enabled code from : https://github.com/cus/ffplay

    I use the following command to configure and make the package :

    ./configure --enable-ffplay
    make

    However, the packages created are :

    ffmpeg
    ffmpeg_g
    ffserver
    ffserver_g
    ffprobe
    ffprobe_g

    I have referred this post : http://ffmpeg-users.933282.n4.nabble.com/Compiling-FFMPEG-with-ffplay-support-td3414041.html But this didn't help out.

    I checked my config.log, it has the below lines :

    ffplay='yes'
    ffplay_deps='avcodec avformat swscale swresample sdl'
    ffplay_select='rdft crop_filter'

    I have the sdl packages installed in my system. What is the issue actually. Could anyone please guide me through this.