Recherche avancée

Médias (91)

Autres articles (97)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (6083)

  • Update max number of files when removing a file without specifying a url.

    31 août 2011, par Patrick Reiner

    m jquery.fileupload-ui.js Update max number of files when removing a file without specifying a url.

  • problem with linking macos library - version number on wrong place

    21 novembre 2019, par freedev

    This is it seems a stupid problem.

    Basically I’m building a python wheel, I have everything and the build already works on linux.
    But when I’m trying to build on macos I have this strange error :

    *** No rule to make target `/usr/local/Cellar/ffmpeg/4.2.1_2/lib/libavutil.dylib.56’

    Looking at /usr/local/Cellar/ffmpeg/4.2.1_2/lib/ I see exists a file named :

    /usr/local/Cellar/ffmpeg/4.2.1_2/lib/libavutil.56.dylib

    You see, the difference is only in the name. The former has the number at end, the latter has the number in the middle.

    If I create a symbolic link from libavutil.56.dylib to libavutil.dylib.56 the linking complete successfully.

    Does anyone know why this is happening and how to solve this problem ?

  • Reduce the number of chunk-stream files when converting to mpeg-dash

    10 juillet 2024, par NSS

    My command : ffmpeg -i input_file.mp4 -c:v libx264 -c:a aac -b:v 6000k -b:a 192k -f dash output.mpd

    


    When I convert a mpeg4 file into mpeg-dash, ffmpeg generates a certain number of .m4s files (e.g chunk-stream0-00003.m4s) of different sizes. If I convert a really large file ffmpeg can generate thousands of files like that. My questions are :

    


      

    1. how can I set that no .m4s file is more than 5MB ? I need this to stream a smaller chunk faster over HTTP.
    2. 


    3. how can I reduce the number of generated .m4s files ? I need this because the custom storage has a limit on files in a directory.
    4.