Recherche avancée

Médias (1)

Mot : - Tags -/remix

Autres articles (76)

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

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

  • 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

Sur d’autres sites (12784)

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