Recherche avancée

Médias (0)

Mot : - Tags -/presse-papier

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

Autres articles (46)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (4511)

  • Use build_libstagefright in ffmpeg to build file .so for android

    21 décembre 2014, par OneGuilty

    In order to use ffmpeg in android , I tried to build ffmpeg by using build_libstagefright in

    ffmpeg/tools/lib_stagefright

    but it alwalys appear a error which i coundn’t solve it.

    the message in the bottom of ffmpeg/config.log is

    arm-linux-androideabi-g++ -D_ISOC99_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600 -DPIC -I../android-source/frameworks/base/include -I../android-source/system/core/include -I../android-source/frameworks/base/media/libstagefright -I../android-source/frameworks/base/include/media/stagefright/openmax -I/home/user/android-ndk/sources/cxx-stl/gnu-libstdc++/include -I/home/user/android-ndk/sources/cxx-stl/gnu-libstdc++/libs/armeY-›v7a/include -march=armv7-a -mfloat-abi=softfp -mfpu=neon -march=armv7-a -std=c99 -fomit-frame-pointer -fPIC -marm -Wno-multichar -fno-exceptions -fno-rtti -D__STDC_CONSTANT_MACROS -c -o /tmp/ffconf.6ZzEMs87.o /tmp/ffconf.5jbfvJxK.cpp

    ./configure : line 701 : /home/user/android-ndk/toolchains/arm-linux-androideabi-4.4.3/prebuilt/linux-x86/bin/arm-linux-androideabi-g++ : cannot execute binary file

    ERROR : libstagefright_h264 not found

    Anyone have the solution of this ??

    my Build Environment is

    1. Window 7
    2. Cygwin
    3. android-NDK-r8b linux version
  • FFMPEG with php video compressing size [on hold]

    21 octobre 2019, par matrix4583

    I am trying to reduce the size of my video files with ffmpeg using php. However the code I use from the documentation is not working and little explanation on how to reduce the size. Here is the code I use.I tried to declare the video with $video = ’video.mp4’ ;, but still no result.

                           $video = 'video.mp4';
                           $ffmpeg = \FFMpeg\FFMpeg::create([
                           'ffmpeg.binaries'  => '/home//ffmpeg/ffmpeg',
                           'ffprobe.binaries' => '/home//ffmpeg/ffprobe'
                       ]);



                           $format = new FFMpeg\Format\Video\X264();
                           $format->on('progress', function ($video, $format, $percentage)
                           {
                               echo "$percentage % transcoded";
                           });

                           $format
                               ->setKiloBitrate(1000)
                               ->setAudioChannels(2)
                               ->setAudioKiloBitrate(256);

                           $video->save($format, 'video.mp4');  

    OUTPUT: Undefined variable: video
  • w32pthreads : use the CONDITION_VARIABLE typedef if available

    9 octobre 2014, par James Almer
    w32pthreads : use the CONDITION_VARIABLE typedef if available
    

    This silences warnings about passing arguments from incompatible pointer type
    when targeting Windows Vista or newer.

    Signed-off-by : James Almer <jamrial@gmail.com>
    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] compat/w32pthreads.h
    • [DH] configure