Recherche avancée

Médias (91)

Autres articles (68)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (10961)

  • error while compiling x264 in linux

    14 avril 2011, par kartul

    Hey all
    I'm trying to compile x264 under linux (x64). But it keeps throwing me an error. I've googled around but found nothing. Here's the commandline history :

    spin@around : /x264$ git clone git ://git.videolan.org/x264.git
    Cloning into x264...
    remote : Counting objects : 13539, done.
    remote : Compressing objects : 100% (4416/4416), done.
    remote : Total 13539 (delta 11005), reused 11225 (delta 9082)
    Receiving objects : 100% (13539/13539), 3.29 MiB | 2.79 MiB/s, done.
    Resolving deltas : 100% (11005/11005), done.
    spin@around : /x264/x264$ ./configure
    Found no assembler
    Minimum version is yasm-0.7.0
    If you really want to compile without asm, configure with —disable-asm.
    spin@around : /x264/x264$ ./configure —disable-asm
    Platform :   X86_64
    System :     LINUX
    asm :        no
    avs :        no
    lavf :       no
    ffms :       no
    gpac :       no
    gpl :        yes
    thread :     posix
    filters :    crop select_every
    debug :      no
    gprof :      no
    PIC :        no
    shared :     no
    visualize :  no
    bit depth :  8
    

    You can run 'make' or 'make fprofiled' now.
    spin@around : /x264/x264$ make
    gcc -Wshadow -O3 -ffast-math -Wall -I. -std=gnu99 -s -fomit-frame-pointer -fno-tree-vectorize -c -o x264.o x264.c
    In file included from common/common.h:864,
    from x264.c:33 :
    common/rectangle.h : In function āx264_macroblock_cache_rectā :
    common/rectangle.h:84 : error : āv4siā undeclared (first use in this function)
    common/rectangle.h:84 : error : (Each undeclared identifier is reported only once
    common/rectangle.h:84 : error : for each function it appears in.)
    common/rectangle.h:84 : error : expected ā ;ā before āv16ā
    common/rectangle.h:86 : error : ā__m128ā undeclared (first use in this function)
    common/rectangle.h:86 : error : expected ā ;ā before āv16ā
    common/rectangle.h:87 : error : expected ā ;ā before āv16ā
    common/rectangle.h:89 : error : expected ā ;ā before āv16ā
    common/rectangle.h:90 : error : expected ā ;ā before āv16ā
    make : *** [x264.o] Error 1
    spin@around : /x264/x264$

    and here is the file, from line 83 to 91 :

    #if HAVE_VECTOREXT && defined(__SSE__)
            v4si v16 = v,v,v,v ;
    

    M128( d+s*0+0 ) = (__m128)v16 ;
    M128( d+s*1+0 ) = (__m128)v16 ;
    if( h == 2 ) return ;
    M128( d+s*2+0 ) = (__m128)v16 ;
    M128( d+s*3+0 ) = (__m128)v16 ;
    #else

  • Does Apple AS assembler replace certain NEON instructions with equivalent ones on iOS ?

    5 avril 2012, par Yi Wang

    I was trying to use ffmpeg on iOS and was debugging a crash in the optimized arm code. I have discovered that some unsigned (.u16, .u32) instruction have been replaced by signed ones (.i16, .i32). It's easy to see because disassembled instruction on GDB doesn't quite match the source code.

    For example,

    vrshrn.u32 -> vrshrn.i32
    vrshrn.u16 -> vrshrn.i16
    vadd.u16 -> vadd.i16

    My questions :

    1. Is this behavior correct and expected ? If not, how do we correct it ?
    2. If they are equivalent, why do we nee need the unsigned ones at all ? Is it because that way the code is more explicit ?
    3. Is this behavior expected with other platform's toolkit ? For example, Android's toolkit ? (I have heard Apple's AS is an ancient one)
  • How to use ffmpeg with h.265 (or h.264) codec ?

    6 octobre 2022, par randomuser1

    Normally I start recording the camera image with the command :

    



    ffmpeg -y -f vfwcap -r 25 -i 0 OUT.mp4

    



    but I'm not sure which coded do I use in here (I'm just beginning my adventure with ffmpeg), however I found on this webpage this command :

    



    ffmpeg -i INPUT -c:a copy -x265-params crf=25 OUT.mov

    



    But when I run it - I get the following error :
INPUT: No such file or directory"

    



    I changed the INPUT word above also to 0, so the command is

    



    ffmpeg -i 0 -c:a copy -x265-params crf=25 OUT.mov,
but error stays similar (0: no such file or directory).
How can I grab the camera image and save it to a file while using the H.265 ?