Recherche avancée

Médias (1)

Mot : - Tags -/livre électronique

Autres articles (63)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

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

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

  • Revision 980ca6324f : Replace x*155/100 by x*101581>>16. Idea stolen from webp - because it's cool.

    25 juillet 2012, par Ronald S. Bultje

    Changed Paths : Modify /vp8/common/quant_common.c Replace x*155/100 by x*101581>>16. Idea stolen from webp - because it's cool. Change-Id : Ic6e55e026e6533fbd2524ef090e3cbccf8af50dd

  • Revision bd7162269f : vp9_dsubexp : replace some divides with shifts Change-Id : I24e10c37ea8f06600cd04

    1er juillet 2015, par James Zern

    Changed Paths :
     Modify /vp9/decoder/vp9_dsubexp.c



    vp9_dsubexp : replace some divides with shifts

    Change-Id : I24e10c37ea8f06600cd04b43512efa6170e23e5c

  • Java execute command line and always replace when it asks [Y/N]

    26 juillet 2017, par Ariana

    I am calling java.lang.Runtime.exec(...) in my Java program to run a command, say :

    ffmpeg -i input.mp4 output.mp4.

    This is simply passed to my function to run :

       private static void RunCommand(String command) throws InterruptedException {
           try {
               // Execute command
               Process proc = Runtime.getRuntime().exec(command);
    }
    }

    Everything is OK. But my question is to handle cases when the file already exists, so asks if it should replace it :

    File 'output.avi' already exists. Overwrite ? [y/N]

    What is the simplest way to ignore it (always assume y and replace) ? Maybe through Java in code or FFMPEG command itself ?