Recherche avancée

Médias (0)

Mot : - Tags -/navigation

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

Autres articles (27)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

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

  • Revision acf24cc1b8 : VPX : scaled convolve : fix windows build errors Change-Id : Ic81d435ea9281831970

    20 août 2015, par Scott LaVarnway

    Changed Paths :
     Modify /vpx_dsp/x86/vpx_subpixel_8t_intrin_ssse3.c



    VPX : scaled convolve : fix windows build errors

    Change-Id : Ic81d435ea928183197040cdf64b6afd7dbaf57e4

  • Revision 6c0f6dd817 : Merge "VPX : scaled convolve : fix windows build errors"

    21 août 2015, par Scott LaVarnway

    Merge "VPX : scaled convolve : fix windows build errors"

  • ffmpeg running on windows with java

    24 décembre 2013, par Karn_way

    I have simple test class as

    public static void main(String[] args) throws IOException {

            String[] line = {"ffmpeg -i D:\\hadoop-video\\testVideo\\xyz.mp4 %d.png"};
            Runtime.getRuntime().exec(line);

       }

    when I try to run this I am getting

    Exception in thread "main" java.io.IOException: Cannot run program "ffmpeg -i D:/hadoop-video/testVideo/xyz.mp4 %d.png": CreateProcess error=2, The system cannot find the file specified
       at java.lang.ProcessBuilder.start(Unknown Source)
       at java.lang.Runtime.exec(Unknown Source)
       at java.lang.Runtime.exec(Unknown Source)
       at ImageTest.main(ImageTest.java:13)
    Caused by: java.io.IOException: CreateProcess error=2, The system cannot find the file specified

    however file is present on my windows7 machine with location

    D:\hadoop-video\testVideo\xyz.mp4

    i tried removing .mp4 and then run also not working . please suggest what might be wrong