Recherche avancée

Médias (0)

Mot : - Tags -/page unique

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

Autres articles (59)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

  • Déploiements possibles

    31 janvier 2010, par

    Deux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
    L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
    Version mono serveur
    La version mono serveur consiste à n’utiliser qu’une (...)

Sur d’autres sites (8852)

  • Revision 683b5a3161 : vpx_subpixel_8t_ssse3 : fix reg counts/access fixes build on windows x64 ; previo

    17 septembre 2015, par James Zern

    Changed Paths :
     Modify /vpx_dsp/x86/vpx_subpixel_8t_ssse3.asm



    vpx_subpixel_8t_ssse3 : fix reg counts/access

    fixes build on windows x64 ; previously ’heightq’ i.e., the 64-bit register
    was accessed when only the 32-bit value was needed. given this is from a
    stack variable the upper bits were undefined.

    + bump register/xmm counts ; users of SETUP_LOCAL_VARS touch xmm13 in
    64-bit builds and filter_block1d16_v* uses one extra temp variable

    Change-Id : I9c768c0b2047481d1d3b11c2e16b2f8de6eb0d80

  • Supported audio and video formats in Windows Store apps

    27 décembre 2013, par TheQuestioner

    I searched a lot on the internet and I know that this problem has been discussed on several forums, but because I am making a media player and I intend to sell it, I fell the need to ask for a more complete answer.
    As I understand, this is the list with the audio and video formats available in Windows Store Apps : http://msdn.microsoft.com/en-us/library/windows/apps/hh986969.aspx. This are indeed the most used formats for playing audio and video, but I truly fell the lack of support for the .MKV files. So my questions are :

    1. Will Microsoft include .MKV in that list ? When ?
    2. Can I somehow include the .MKV codec in my app ? (or other codecs, like .flv)
    3. If I can't add the MKV codec in my app and Microsoft doesn't intend to add it, is there a way that I can convert the .MKV in , let's say, a .MP4 so that my app can be able to play it ?

    I know that I'm not the first that asks this questions, but I didn't find anywhere a good/complete answer or solution to this problem.

    In my opinion .MKV in pretty popular already. Searching for media players in the Windows Store I found one which claims that it supports .MKV (but only if you buy it, so I didn't try it). So is this possible ? How ?

  • 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