Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (68)

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

  • Activation de l’inscription des visiteurs

    12 avril 2011, par

    Il est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
    Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
    Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...)

  • MediaSPIP : Modification des droits de création d’objets et de publication définitive

    11 novembre 2010, par

    Par défaut, MediaSPIP permet de créer 5 types d’objets.
    Toujours par défaut les droits de création et de publication définitive de ces objets sont réservés aux administrateurs, mais ils sont bien entendu configurables par les webmestres.
    Ces droits sont ainsi bloqués pour plusieurs raisons : parce que le fait d’autoriser à publier doit être la volonté du webmestre pas de l’ensemble de la plateforme et donc ne pas être un choix par défaut ; parce qu’avoir un compte peut servir à autre choses également, (...)

Sur d’autres sites (9360)

  • libx264.so.146 not found while compiling C++ code or x264 itself

    27 février 2017, par Laurent Loots

    I just upgraded my system from Ubuntu 15.10 to Ubuntu 16.04 LTS. Now, for some reason my C++ project won’t compile anymore. CLion keeps saying it’s missing ’libx264.so.146 as you can see in the compile log :

    /home/lorre851/CLion/bin/cmake/bin/cmake --build /home/lorre851/.CLion12/system/cmake/generated/ce7171e4/ce7171e4/Release --target main -- -j 8
    [ 20%] Linking CXX executable build/main
    /usr/bin/ld: warning: libx264.so.146, needed by /usr/local/lib/libavcodec.so.57, not found (try using -rpath or -rpath-link)
    /usr/local/lib/libavcodec.so.57: undefined reference to `x264_encoder_open_146'
    /usr/local/lib/libavcodec.so.57: undefined reference to `x264_encoder_close'
    /usr/local/lib/libavcodec.so.57: undefined reference to `x264_bit_depth'
    /usr/local/lib/libavcodec.so.57: undefined reference to `x264_encoder_headers'
    /usr/local/lib/libavcodec.so.57: undefined reference to `x264_encoder_encode'
    /usr/local/lib/libavcodec.so.57: undefined reference to `x264_encoder_reconfig'
    /usr/local/lib/libavcodec.so.57: undefined reference to `x264_param_parse'
    /usr/local/lib/libavcodec.so.57: undefined reference to `x264_param_apply_profile'
    /usr/local/lib/libavcodec.so.57: undefined reference to `x264_param_apply_fastfirstpass'
    /usr/local/lib/libavcodec.so.57: undefined reference to `x264_levels'
    /usr/local/lib/libavcodec.so.57: undefined reference to `x264_picture_init'
    /usr/local/lib/libavcodec.so.57: undefined reference to `x264_param_default'
    /usr/local/lib/libavcodec.so.57: undefined reference to `x264_param_default_preset'
    /usr/local/lib/libavcodec.so.57: undefined reference to `x264_encoder_delayed_frames'
    collect2: error: ld returned 1 exit status
    CMakeFiles/main.dir/build.make:172: recipe for target 'build/main' failed
    make[3]: *** [build/main] Error 1
    CMakeFiles/Makefile2:67: recipe for target 'CMakeFiles/main.dir/all' failed
    make[2]: *** [CMakeFiles/main.dir/all] Error 2
    CMakeFiles/Makefile2:79: recipe for target 'CMakeFiles/main.dir/rule' failed
    make[1]: *** [CMakeFiles/main.dir/rule] Error 2
    Makefile:118: recipe for target 'main' failed
    make: *** [main] Error 2

    Most people seem to give ’reinstalling x264’ as a solution. However, reinstalling x264 with the following commands leads to the same error while compiling x264 itself.

    git clone git://git.videolan.org/x264
    cd x264
    ./configure --enable-static
    make

    /usr/bin/ld: warning: libx264.so.146, needed by /usr/local/lib/libavcodec.so, not found (try using -rpath or -rpath-link)
    /usr/local/lib/libavcodec.so: undefined reference to `x264_encoder_open_146'
    collect2: error: ld returned 1 exit status
    Makefile:202: recipe for target 'x264' failed
    make: *** [x264] Error 1

    Does anyone have an idea how I could get around this ?

  • libx264.so.146 not found while compiling C++ code or x264 itself

    27 février 2017, par Laurent Loots

    I just upgraded my system from Ubuntu 15.10 to Ubuntu 16.04 LTS. Now, for some reason my C++ project won’t compile anymore. CLion keeps saying it’s missing ’libx264.so.146 as you can see in the compile log :

    /home/lorre851/CLion/bin/cmake/bin/cmake --build /home/lorre851/.CLion12/system/cmake/generated/ce7171e4/ce7171e4/Release --target main -- -j 8
    [ 20%] Linking CXX executable build/main
    /usr/bin/ld: warning: libx264.so.146, needed by /usr/local/lib/libavcodec.so.57, not found (try using -rpath or -rpath-link)
    /usr/local/lib/libavcodec.so.57: undefined reference to `x264_encoder_open_146'
    /usr/local/lib/libavcodec.so.57: undefined reference to `x264_encoder_close'
    /usr/local/lib/libavcodec.so.57: undefined reference to `x264_bit_depth'
    /usr/local/lib/libavcodec.so.57: undefined reference to `x264_encoder_headers'
    /usr/local/lib/libavcodec.so.57: undefined reference to `x264_encoder_encode'
    /usr/local/lib/libavcodec.so.57: undefined reference to `x264_encoder_reconfig'
    /usr/local/lib/libavcodec.so.57: undefined reference to `x264_param_parse'
    /usr/local/lib/libavcodec.so.57: undefined reference to `x264_param_apply_profile'
    /usr/local/lib/libavcodec.so.57: undefined reference to `x264_param_apply_fastfirstpass'
    /usr/local/lib/libavcodec.so.57: undefined reference to `x264_levels'
    /usr/local/lib/libavcodec.so.57: undefined reference to `x264_picture_init'
    /usr/local/lib/libavcodec.so.57: undefined reference to `x264_param_default'
    /usr/local/lib/libavcodec.so.57: undefined reference to `x264_param_default_preset'
    /usr/local/lib/libavcodec.so.57: undefined reference to `x264_encoder_delayed_frames'
    collect2: error: ld returned 1 exit status
    CMakeFiles/main.dir/build.make:172: recipe for target 'build/main' failed
    make[3]: *** [build/main] Error 1
    CMakeFiles/Makefile2:67: recipe for target 'CMakeFiles/main.dir/all' failed
    make[2]: *** [CMakeFiles/main.dir/all] Error 2
    CMakeFiles/Makefile2:79: recipe for target 'CMakeFiles/main.dir/rule' failed
    make[1]: *** [CMakeFiles/main.dir/rule] Error 2
    Makefile:118: recipe for target 'main' failed
    make: *** [main] Error 2

    Most people seem to give ’reinstalling x264’ as a solution. However, reinstalling x264 with the following commands leads to the same error while compiling x264 itself.

    git clone git://git.videolan.org/x264
    cd x264
    ./configure --enable-static
    make

    /usr/bin/ld: warning: libx264.so.146, needed by /usr/local/lib/libavcodec.so, not found (try using -rpath or -rpath-link)
    /usr/local/lib/libavcodec.so: undefined reference to `x264_encoder_open_146'
    collect2: error: ld returned 1 exit status
    Makefile:202: recipe for target 'x264' failed
    make: *** [x264] Error 1

    Does anyone have an idea how I could get around this ?

  • Anomalie #3452 : L’image jointe à un message de forum n’est pas prise en charge (bug SPIP 3.0.19, ...

    9 juin 2015, par b b