Recherche avancée

Médias (91)

Autres articles (32)

  • Création définitive du canal

    12 mars 2010, par

    Lorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
    A la validation, vous recevez un email vous invitant donc à créer votre canal.
    Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
    A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

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

  • 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

  • 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

  • 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