Recherche avancée

Médias (0)

Mot : - Tags -/flash

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

Autres articles (100)

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

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

Sur d’autres sites (10339)

  • avcodec/vorbisenc : Use fdsp for applying windows

    30 mai 2017, par Tyler Jones
    avcodec/vorbisenc : Use fdsp for applying windows
    

    Using fdsp improves readability and allows using architecture-specific
    optimizations.

    Signed-off-by : Tyler Jones <tdjones879@gmail.com>

    • [DH] libavcodec/vorbisenc.c
  • Run Windows command through Java Tomcat Server

    6 mai 2016, par chellapandi k

    I am using FFMPEG library files on my windows machine to convert media files from one format to another, so i try to call FFMPEG windows command through java. It works by calling Process p = Runtime.getRuntime().exec("ffmpeg -i " + xxx.mp4 + " " + yyy.wav + ""); in normal java program. but when i launch my project into TOMCAT server it throws exception like java.io.IOException: cannot run program : "ffmpeg" CreateProcess error=2, the system cannot find the file specified . I have attached my code below..

    String sVideo = "C:\\Users\\Administrator\\Desktop\\voice.amr";
       String dVideo2 = "C:\\Users\\Administrator\\Desktop\\sVideo.wav";
       try {
           Process p = Runtime.getRuntime().exec("ffmpeg -i " + sVideo + " " + dVideo2 + "");          
       } catch (Exception e) {
           // TODO Auto-generated catch block
           e.printStackTrace();
       }

    above code works, when runs this class file separately but when i use this code in my project, it throws exception when run my project in TOMCAT Server. Thanks in advance.

  • Compiling ffmpeg on android under windows platform [on hold]

    14 janvier 2014, par Mrityunjoy Mukherjee

    I have the following links.

    http://www.roman10.net/how-to-build-ffmpeg-with-ndk-r9/comment-page-3/#comments

    I have used cygwin to compile ffmpeg on android under windows platform. After compilation within /android/arm/lib folder .dll.a files are created. How can I get .so files within libs folder ????