Recherche avancée

Médias (91)

Autres articles (74)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (7978)

  • flac and metaflac : Don’t always call setlocale() in Windows.

    19 juillet 2014, par Erik de Castro Lopo
    flac and metaflac : Don’t always call setlocale() in Windows.
    

    Windows (MSVC, MinGW) versions of setlocale don’t care about LC_*
    environment variables. For example, flac cannot pass the test for
    — until and —skip options the script calls it with —skip=0:01.1001
    and it expects decimal comma (—skip=0:01,1001) on some locales.

    Solve this (on Windows) by calling setlocale(LC_ALL, "") if some
    LC_* variable is set to "C".

    Patch-from : lvqcl <lvqcl.mail@gmail.com>

    • [DH] src/flac/main.c
    • [DH] src/metaflac/main.c
  • File conversion and deletion on Windows

    22 juillet 2016, par Lyuba B.

    I’ve got some 90 000 .m4a audio recordings, all grouped in various sub-folders depending on their purpose. I want to convert each one to .wav and then delete the original .m4a after successful conversion. For reasons beyond my control I’m doing this on a Windows machine with limited capacity. I need to delete as I go along, because I don’t have the space to keep both versions.

    I have the locations of all files stored, and can easily generate a batch file to do conversion and deletion using ffmpeg and DEL iteratively (which is a solution I’ve seen suggested in several places). But is there a way to check that the conversion has been successful before deleting ? I really don’t fancy losing the data by accident.

  • Build FFmpeg on windows for android

    20 mai 2015, par Nate

    I’m trying to compile FFmpeg (2.63) for an android application to do video streaming over RTMP, but the copy of make provided by the NDK isn’t working.

    I’ve spent a while trying to follow the tutorial here incorporating the changes in this stackoverflow question.
    I’m having a problem with the NDK provided make

    Here’s my final .build_android.sh

    #!/bin/bash
    NDK=C:/Users/my_user_name/AppData/Local/Android/android-ndk-r10e
    SYSROOT=$NDK/platforms/android-21/arch-arm
    TOOLCHAIN=$NDK/toolchains/arm-linux-androideabi-4.8/prebuilt/windows
    function build_one
    {
    ./configure \
       --prefix=$PREFIX \
       --enable-shared \
       --disable-static \
       --disable-doc \
       --disable-ffmpeg \
       --disable-ffplay \
       --disable-ffprobe \
       --disable-ffserver \
       --disable-avdevice \
       --disable-doc \
       --disable-symver \
       --cross-prefix=$TOOLCHAIN/bin/arm-linux-androideabi- \
       --enable-cross-compile \
       --target-os=android \
       --arch=arm \
       --sysroot=$SYSROOT \
       --extra-cflags="-Os -fpic $ADDI_CFLAGS" \
       --extra-ldflags="$ADDI_LDFLAGS" \
       $ADDITIONAL_CONFIGURE_FLAG
    #C:/Users/my_user_name/AppData/Local/Android/android-ndk-r10e/prebuilt/windows/bin/make.exe clean
    #C:/Users/my_user_name/AppData/Local/Android/android-ndk-r10e/prebuilt/windows/bin/make.exe
    #C:/Users/my_user_name/AppData/Local/Android/android-ndk-r10e/prebuilt/windows/bin/make.exe install
    }

    CPU=arm
    PREFIX=$(pwd)/android/$CPU
    ADDI_CFLAGS="-marm"
    build_one

    When I run this with the NDK provided make commands (the commented lines above) the program will exit immediately with mkdir: cannot create directory 'libavfilter\': File exists

    if I run it with the msys provided make it will build the .so or .a file as needed, but I cannot link that file library using the NDK linker