Recherche avancée

Médias (0)

Mot : - Tags -/interaction

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

Autres articles (19)

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

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (4097)

  • Anomalie #2412 (Nouveau) : Configuration / forums : cohérence scripts présents ou non en partie pu...

    14 novembre 2011, par jluc -

     ?exec=configurer_forum

    "Forum" : l’interface demande s’il faut mettre la barre d’outil alors que j’ai choisi de "Ne pas charger les scripts de barre d’outils sur l’espace public" dans la configuration_avancee. Ces 2 options sont elles indépendantes et compatibles ? N’y a t il pas tromperie (...)

  • Anomalie #2795 (Nouveau) : visiteur ne peut devenir auteur

    14 juillet 2012, par dani-belvil-net -

    J’ai un site (uruguayos.fr) qui accepte les visiteurs et l’inscription d’auteurs. Si une personne s’inscrit comme visiteur (par un commentaire de forum, par expemple), et ensuite, un jour essaie de devenit auteur en s’inscrivant dans #FORMUAIRE_INSCRIPTION, le site lui répondra qu’elle est déjà (...)

  • How to compile ffmpeg for Windows statically with MSYS2 environment ?

    17 janvier 2024, par username

    I want to build myself standalone statically linked ffmpeg binaries for Windows from official git source code with MSYS2 environment tools. But every time I get .exe file dynamically linked to mingw libraries that crashes with "The application was unable to start correctly (0xc000007b)" error even if I put required libbz2-1.dll, libiconv-2.dll and libwinpthread-1.dll libraries in it's folder.

    



    I'm running MSYS2 environment with

    



    msys2_shell.cmd -mingw64


    



    line, and use mingw64/mingw-w64-x86_64-gcc 8.2.1+20181214-1 compiler package. Then I run ./configure with

    



    ./configure --pkg-config-flags=--static --disable-shared --enable-static


    



    line - the best options I have googled at all my efforts. Then proceed with general

    



    make
make install


    



    sequence.

    



    As a result, I get binaries that run smoothly in MSYS2 environment itself, but when I run it from host Windows explorer or cmd, first of all it ask for libbz2-1.dll, libiconv-2.dll and libwinpthread-1.dll libraries and when I put them in binaries' folder, they crash with "The application was unable to start correctly (0xc000007b)" error.

    



    I've asked about this case at official https://ffmpeg.zeranoe.com/forum/viewtopic.php?f=5&t=6439 forum but still have no response for already 5 days.

    



    Regarding dynamic linking libraries somehow I got bandaid solution with removing *.dll.a files from mingw64\x86_64-w64-mingw32\lib folder. But it looks not very clean for me. I wish to know if it is possible to do static linkage with some compiler/make/linker parameters or with editing ./configure or Makefile files somehow ?

    



    Also 0xc000007b error still remaining.

    



    I've managed to have desired result with media-autobuild_suite based on the same MSYS2 environment, so I know it is possible to do this somehow. But I'm very new to all this *nix things so don't understand it's bash script at all, not to mention it is pretty sophisticated by itself. The only thing I see it's producing correct ffmpeg executables running under native Windows environment not requiring dlls listed above.

    



    According to all guides in internet I found at the moment, I should get standalone Windows executables with this toolset, but it just don't work and I'm stuck. Please, help.