Recherche avancée

Médias (0)

Mot : - Tags -/api

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

Autres articles (82)

  • 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 ;

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

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (11594)

  • avfilter/showcqt : add cscheme option

    19 octobre 2016, par Muhammad Faiz
    avfilter/showcqt : add cscheme option
    

    Signed-off-by : Muhammad Faiz <mfcc64@gmail.com>

    • [DH] doc/filters.texi
    • [DH] libavfilter/avf_showcqt.c
    • [DH] libavfilter/avf_showcqt.h
  • Revision 29928 : On réutilise l’ancien code pour débuter notre branche

    17 juillet 2009, par kent1@… — Log

    On réutilise l’ancien code pour débuter notre branche

  • Building x264 with YASM : failing the ASM check

    11 janvier 2020, par radiofreemyourenji

    My question up front is, "I have new yasm, I think x264 is supposed to be cool with that, why is x264 not cool with that ?"

    &#xA;

    For reasons, I am building a CentOS docker image (based on centos:latest) that contains a from-scratch ffmpeg build, following the guide here. It's a good guide, it's worked for me before, so I was feeling good about it.

    &#xA;

    Today I'm hitting a choke point on the libx264 build point : specifically, I say

    &#xA;

    PKG_CONFIG_PATH="/tmp/ffmpeg_build/lib/pkgconfig" \&#xA;  ./configure \&#xA;  --prefix="/tmp/ffmpeg_build" \&#xA;  --bindir="/tmp/bin" \&#xA;  --enable-static&#xA;

    &#xA;

    And I get a reply back

    &#xA;

    &#xA;

    Found no assembler

    &#xA;

    Minimum version is nasm-2.13

    &#xA;

    If you really want to compile without asm, configure with —disable-asm.

    &#xA;

    &#xA;

    That's unexpected. I have yasm, which I understand to be 1) there to do the things nasm does but better, and 2) to be the daisy-fresh most modern version given that I pulled it from its repo about an hour ago, and built it about fifty-nine minutes ago. For what it's worth, nasm is on the box too since the instructions request it, but it's below their stated version (i.e. it's "NASM version 2.10.07 compiled on Jun 9 2014")

    &#xA;

    So it seems like yasm is not being found. There's another StackExchange question that mentions that problem, which came out to a pathing issue. So, I added yasm to my path like so :

    &#xA;

    PATH=/tmp/ffmpeg_sources/yasm:$PATH \&#xA;  PKG_CONFIG_PATH="/tmp/ffmpeg_build/lib/pkgconfig" \&#xA;  ./configure&#xA;  ...etc&#xA;

    &#xA;

    That still gave the Found-no-assembler problem. As a last, confused resort, I told the script explicitly what I wanted to use for the variable $AS, because based on my quick look into configure, that looked like where yasm/nasm was meant to go. The command becomes :

    &#xA;

    AS=`which yasm`&#xA;  PKG_CONFIG_PATH="/tmp/ffmpeg_build/lib/pkgconfig" \&#xA;  ./configure&#xA;  ...etc&#xA;

    &#xA;

    That at least gave

    &#xA;

    &#xA;

    Found yasm 1.3.0

    &#xA;

    Minimum version is nasm-2.13

    &#xA;

    If you really want to compile without asm, configure with —disable-asm.

    &#xA;

    &#xA;

    Looking in the config.log I see the following :

    &#xA;

    checking whether /tmp/bin/yasm supports vmovdqa32 [eax]{k1}{z}, zmm0... no&#xA;Failed commandline was:&#xA;--------------------------------------------------&#xA;/tmp/bin/yasm conftest.asm  -I. -I$(SRCPATH) -DARCH_X86_64=1 -I$(SRCPATH)/common/x86/ -f elf64  -o conftest.o&#xA;conftest.asm:1: error: instruction expected after label&#xA;conftest.asm:1: warning: ignoring unrecognized character `{&#x27;&#xA;conftest.asm:1: warning: ignoring unrecognized character `}&#x27;&#xA;conftest.asm:1: warning: ignoring unrecognized character `{&#x27;&#xA;conftest.asm:1: warning: ignoring unrecognized character `}&#x27;&#xA;--------------------------------------------------&#xA;Failed program was:&#xA;--------------------------------------------------&#xA;vmovdqa32 [eax]{k1}{z}, zmm0&#xA;--------------------------------------------------&#xA;

    &#xA;

    So : what's the deal here ? Is my assumption that yasm drop-in replaces nasm bad ? Is yasm good for this purpose, but I'm not providing the right information to ./configure ? Are my instructions for building ffmpeg for CentOS simply out of date with respect to this prerequisite and I should just try harder to get a modern nasm ?

    &#xA;