Recherche avancée

Médias (0)

Mot : - Tags -/objet éditorial

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

Autres articles (80)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

Sur d’autres sites (9293)

  • fate/ffmpeg : Fix requirements of shortest tests

    2 décembre 2021, par Andreas Rheinhardt
    fate/ffmpeg : Fix requirements of shortest tests
    

    Fixes FATE failures if e.g. libavdevice is disabled.

    Reviewed-by : James Almer <jamrial@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] tests/fate/ffmpeg.mak
  • doc/filters : note requirements for xfade inputs

    20 avril 2021, par Gyan Doshi
    doc/filters : note requirements for xfade inputs
    
    • [DH] doc/filters.texi
  • How to run ffmpeg in a scheduled batch file with a file exclusion list ?

    5 juin 2022, par MrZoops

    I have the following batch file created to run as a schedule task. It auto encodes the audio to AAC in my main media folder. Everything is working, but now I need to do 2 more things :

    &#xA;&#xA;

      &#xA;
    1. Delete the original upon completion.
    2. &#xA;

    3. Set it so that the next time it runs, it does not try to convert the already converted files.
    4. &#xA;

    &#xA;&#xA;

    Is that possible ? How would that look ? Is there a way to "disregard" file names with CONVERTED in them ?

    &#xA;&#xA;

    for /r "C:\Users\USER\Desktop\TEST" %%a in ("*.mkv") do ffmpeg -i "%%a" -vcodec copy -acodec aac -ac 2 -ab 256K %%~dpnaCONVERTED.mkv&#xA;

    &#xA;