Recherche avancée

Médias (91)

Autres articles (107)

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

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

  • Que fait exactement ce script ?

    18 janvier 2011, par

    Ce script est écrit en bash. Il est donc facilement utilisable sur n’importe quel serveur.
    Il n’est compatible qu’avec une liste de distributions précises (voir Liste des distributions compatibles).
    Installation de dépendances de MediaSPIP
    Son rôle principal est d’installer l’ensemble des dépendances logicielles nécessaires coté serveur à savoir :
    Les outils de base pour pouvoir installer le reste des dépendances Les outils de développements : build-essential (via APT depuis les dépôts officiels) ; (...)

Sur d’autres sites (9630)

  • If I pass this code in Windows console it works, but when I emulate windows console in node.js code doesn't work, and returns unclear error

    22 décembre 2016, par Maxim Cherevatov

    I have code :

    cmd.get(
       'trimp3  ant.mp3 ant2.mp3 00:00 00:20',
       function(data){
           console.log('the node-cmd cloned dir contains these files :\n\n',data)
       }
    );

    If pass this code in Windows console it works well !
    But, when i emulate windows console in node.js this code not work, and returns unclear mistake :

    [!!] ERROR:  "ffmpeg" �� ����� ����७��� ��� ���譥�
    ��������, �ᯮ��塞�� �ணࠬ��� ��� �������� 䠩���.

    To emulate the use node-cmd.

  • invalid syntax while concat mpeg files on windows PYTHON

    26 novembre 2016, par SMH

    I am tying to concatenate all mpeg files together in one new file in windows 7, I adjusted the environment variables and running the code from python shell but it gives invalid syntax. Any help as I am new to Python and ffmpeg library ?

    My code :

    ffmpeg -f concat -i <(for f in glob.glob("*.mpeg"); do echo "file '$PWD/$f'"; done) -c copy output.mpeg

    Thanks

  • Build PJSIP with video support on Windows 7, with MinGW

    3 juillet 2015, par Daniel V

    I’m trying to build PJSIP with video support for Windows OS, on my Windows 7 PC by using MinGW.
    Following the official guide from PJSIP :
    http://trac.pjsip.org/repos/wiki/Getting-Started/Autoconf#VideoSupportfor2.0andabove

    Building PJSIP without video support works as expected for me.

    • I’m using the latest PJSIP 2.2.1 from SVN
    • SDL2-devel-2.0.3-mingw.tar.gz (MinGW 32/64-bit)
    • ffmpeg-20140805-git-de41798-win32-dev

    I have added "#define PJMEDIA_HAS_VIDEO 1" in the config_site.h file
    and I’m building PJSIP with the following options :
    ./configure —with-ffmpeg="/c/PJSIP/ffmpeg" —with-sdl="/c/PJSIP/SDL"

    but I have the following compilation error for SDL :

    c:/PJSIP/SDL/lib/libSDL2main.a(SDL_windows_main.o): In function `console_main':
    /Users/slouken/release/SDL/SDL2-2.0.3-source/foo-x86/../src/main/windows/SDL_win
    dows_main.c:140: undefined reference to `SDL_main'
    collect2.exe: error: ld returned 1 exit status
    make[2]: *** [../bin/pjsua2-test-i686-pc-mingw32] Error 1
    make[2]: Leaving directory `/c/PJSIP/trunk/pjsip/build'
    make[1]: *** [pjsua2-test-i686-pc-mingw32] Error 2
    make[1]: Leaving directory `/c/PJSIP/trunk/pjsip/build'
    make: *** [all] Error 1

    The same error is available with SDL-2.0.2 too.