Recherche avancée

Médias (91)

Autres articles (64)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

Sur d’autres sites (12665)

  • How to compile ffmpeg-0.10.3 on windows with cygwin and android ndk r5

    19 avril 2014, par Vikram Mahal

    I want to compile ffmpeg on windows with cygwin and android ndk.
    I found this link very useful because there is step to step guide to compile ffmpeg.

    Does anyone find this useful ? - Compiling FFMPEG on Windows with Cywin and NDK r5

    But at last point when i am going to create .so file i got this error in cygwin bash.


    CONSOLE OUTPUT :

    vikram mahal@vikrammahal-PC ~
    $ cd /cygdrive/c/ffmpeg-0.10.3
    vikram mahal@vikrammahal-PC /cygdrive/c/ffmpeg-0.10.3
    $ dos2unix build_android.sh
    dos2unix: converting file build_android.sh to Unix format ...
    vikram mahal@vikrammahal-PC /cygdrive/c/ffmpeg-0.10.3
    $ ./build_android.sh
    )/configure: line 10: warning: setlocale: LC_ALL: cannot change locale (C
    ': not a valid identifierort: `LC_ALL
    ./configure: line 14: syntax error near unexpected token `$'{\r''
    '/configure: line 14: `try_exec(){
    ./build_android.sh: line 54: make: command not found
    ./build_android.sh: line 55: make: command not found
    C:\android-ndk-r5\toolchains\arm-linux-androideabi-4.4.3\prebuilt\windows\bin\ar
    m-linux-androideabi-ld.exe: cannot open output file ./android/armv7-a/libffmpeg.
    so: No such file or directory
  • trim MULTIPLE .mp4 files using ffmpeg in WINDOWS DOS

    22 février 2014, par user1530322

    My goal is to trim the first 4 seconds of, say 100 .mp4 files at once.

    I can easyly do it and in a quite quick way for one single .mp4 file at a time using :

    **ffmpeg -i MYFILE.mp4 -ss 00:00:04.000 -c:v copy -c:a copy Trimmed_MYFILE.**mp4

    I have a folder with those 100 mp4 files and want to bulk trim the first 4 seconds and save the new files on a folder in the same location called "newfiles".

    I'm imagining something like a loop, using FOR or so, but have no ideia how to do it.

    Thank you in advanced

  • trim MULTIPLE .mp4 files using ffmpeg in Windows commandline

    13 janvier 2015, par user1530322

    My goal is to trim the first 4 seconds of, say 100 .mp4 files at once.

    I can easyly do it and in a quite quick way for one single .mp4 file at a time using :

    ffmpeg -i MYFILE.mp4 -ss 00:00:04.000 -c:v copy -c:a copy Trimmed_MYFILE.mp4

    I have a folder with those 100 mp4 files and want to bulk trim the first 4 seconds and save the new files on a folder in the same location called "newfiles".

    I’m imagining something like a loop, using FOR or so, but have no idea how to do it.