Recherche avancée

Médias (91)

Autres articles (96)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Formulaire personnalisable

    21 juin 2013, par

    Cette page présente les champs disponibles dans le formulaire de publication d’un média et il indique les différents champs qu’on peut ajouter. Formulaire de création d’un Media
    Dans le cas d’un document de type média, les champs proposés par défaut sont : Texte Activer/Désactiver le forum ( on peut désactiver l’invite au commentaire pour chaque article ) Licence Ajout/suppression d’auteurs Tags
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire. (...)

Sur d’autres sites (8150)

  • How to convert Top-and-Bottom 3d video to side-by-side 3d video with FFmpeg

    5 février 2024, par jefby

    I have a top-and-bottom 3d video, and i want to look at it with Gear VR, but Gear VR only support side-by-side video, so i need to convert it to side-by-side, while i don't know how to use ffmpeg to achieve it,does anyone knows ? thanks very much.

    


  • finding bottleneck. Ffmpeg does not utilize 800% on 4core\8threads CPU. Why ?

    3 septembre 2014, par user3652819

    I’m trying to encode video’s (using x264 codec) on E3-1245 V2 3.40GHz CPU, 32 GB RAM, 2TB 7200RPM disks (with soft Raid 1) debian 6 server

    E3-1245 V2 has 4 cores / 8 threads, but ffmpeg can’t utilize all 800%, and utilize about 200% per instance.

    I read many other threads, and people always say "Run few ffmpeg process in parallel mode"

    But where actually the bottleneck in one ffmpeg instance ? CPU bus / RAM freq. speed ??

    exec ("/usr/bin/ffmpeg -i " . $fullpath . ' -pass 1 -passlogfile    
    /var/www/scripts/twopass2.log -refs 1 -threads 0 -vcodec libx264 -bsf h264_mp4toannexb
    -s 1280x720 -aspect 16:9 -r 24 -g 48 -keyint_min 48 -sc_threshold 0 -x264opts
    "keyint=48:min-keyint=48:scenecut=0:stats=/var/www/scripts/stats2.log" -b:v 2300k -bf 0
    -profile:v baseline  -mixed-refs 0 -level 30 -maxrate 80M -bufsize 80M  -acodec aac -
    async 1 -pix_fmt yuv420p -f mpegts  -strict -2 -ar 44100 -b:a 128k -map 0 -dn -sn -y
    /dev/null');

    exec ("/usr/bin/ffmpeg -i " . $fullpath . ' -pass 2 -passlogfile
    /var/www/scripts/twopass2.log -refs 1 -threads 0 -vcodec libx264 -bsf h264_mp4toannexb
    -s 1280x720 -aspect 16:9 -r 24 -g 48 -keyint_min 48 -sc_threshold 0 -x264opts
    "keyint=48:min-keyint=48:scenecut=0:stats=/var/www/scripts/stats2.log" -b:v 2300k -bf 0
    -profile:v baseline  -mixed-refs 0 -level 30 -maxrate 80M -bufsize 80M  -acodec aac -
    async 1 -pix_fmt yuv420p -f mpegts  -strict -2 -ar 44100 -b:a 128k -map 0 -dn -sn -
    flags  -global_header -f segment -segment_format mpegts -segment_time 10  -
    segment_list /dev/null -y ' . $idpath . '2/%5d.ts');

    I think there is demuxing problem, but not sure.

    Also I tried something like this :

    mkfifo pipe.y4m
    ffmpeg -i input.mp4 -f yuv4mpegpipe -y pipe.y4m
    and run
    x264 -o dvd1.264 pipe.y4m

    CPU utilizing a bit better (about 150% ffmpeg and 350% - x264) but also this is not 800% at all.

    Any way to speed up encoding ?
    And where actually bottleneck there ?

  • avformat/avidec : ensure that palette does not contain the BottomUp info.

    22 septembre 2014, par Benoit Fouet
    avformat/avidec : ensure that palette does not contain the BottomUp info.
    

    Considering the palette is located at the end of extradata may be flawed
    when the extradata contains the palette followed by the BottomUp field.
    When the BottomUp field is present, exclude it from the palette.
    Fixes part of ticket #1304

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

    • [DH] libavformat/avidec.c