Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (83)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

Sur d’autres sites (8260)

  • libswscale/x86/yuv2rgb : Change inline assembly into nasm code

    19 janvier 2020, par Ting Fu
    libswscale/x86/yuv2rgb : Change inline assembly into nasm code
    

    The original inline assembly and nasm code have the same fps when called by command.
    NASM code almost has no impact on the perfromance.

    Signed-off-by : Ting Fu <ting.fu@intel.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libswscale/x86/Makefile
    • [DH] libswscale/x86/swscale.c
    • [DH] libswscale/x86/yuv2rgb.c
    • [DH] libswscale/x86/yuv2rgb_template.c
    • [DH] libswscale/x86/yuv_2_rgb.asm
  • Set a subtitle language using ffmpeg

    22 avril 2022, par Sam

    I tried googling a way to set the language of a subtitle stream with ffmpeg and found the -slang option. So I tried the following command but immediately receive an error :

    &#xA;&#xA;

    ffmpeg -i input.avi -i subs.srt -c:a copy -c:s mov_text -slang eng -c:v libx264 -profile:v high -level:v 4.0 output.mp4&#xA;ffmpeg version 1.1 Copyright (c) 2000-2013 the FFmpeg developers&#xA;built on Jul 18 2013 23:00:53 with Apple clang version 4.0 (tags/Apple/clang-421.0.60) (based on LLVM 3.1svn)&#xA;

    &#xA;&#xA;

    &#xA;

    libavutil 52. 13.100 / 52. 13.100

    &#xA; &#xA;

    libavcodec 54. 86.100 / 54. 86.100

    &#xA; &#xA;

    libavformat 54. 59.106 / 54. 59.106

    &#xA; &#xA;

    libavdevice 54. 3.102 / 54. 3.102

    &#xA; &#xA;

    libavfilter 3. 32.100 / 3. 32.100

    &#xA; &#xA;

    libswscale 2. 1.103 / 2. 1.103

    &#xA; &#xA;

    libswresample 0. 17.102 / 0. 17.102

    &#xA; &#xA;

    libpostproc 52. 2.100 / 52. 2.100

    &#xA; &#xA;

    Unrecognized option 'slang'.

    &#xA; &#xA;

    Error splitting the argument list : Option not found

    &#xA;

    &#xA;&#xA;

    After more googling I found another way to do it using the -metadata command :

    &#xA;&#xA;

    ffmpeg -i input.mp4 -i subs.srt -c:a copy -c:v copy -c:s mov_text -metadata:s:s:0 language=eng output.mp4&#xA;

    &#xA;&#xA;

    And that works absolutely fine. But this isn't mentioned in the ffmpeg man page, whereas -slang is, which makes me think the -metadata command is maybe outdated or in some other way not as good as -slang.

    &#xA;&#xA;

      &#xA;
    1. What is the difference between using the two above methods (-slang vs -metadata) ?
    2. &#xA;

    3. Why did my -slang command give an error ? Have I used it incorrectly ?
    4. &#xA;

    &#xA;

  • avfilter/x86/vf_eq : Change inline assembly into nasm code

    18 septembre 2019, par Ting Fu
    avfilter/x86/vf_eq : Change inline assembly into nasm code
    

    Signed-off-by : Ting Fu <ting.fu@intel.com>

    • [DH] libavfilter/x86/Makefile
    • [DH] libavfilter/x86/vf_eq.asm
    • [DH] libavfilter/x86/vf_eq.c
    • [DH] libavfilter/x86/vf_eq_init.c