Recherche avancée

Médias (91)

Autres articles (41)

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

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (7462)

  • Problems compiling ffmpeg for iOS

    19 août 2012, par marchinram

    I seen a few posts similar to this one but the problem I'm having is slightly different, I downloaded the ffmpeg source and ran configure like below :

    ./configure --disable-doc --disable-ffmpeg --disable-ffplay --disable-ffserver \
    --enable-cross-compile --arch=arm --target-os=darwin \
    --cc=/applications/xcode.app/contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc --as='gas-preprocessor/gas-preprocessor.pl /applications/xcode.app/contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc' \
    --sysroot=/applications/xcode.app/contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.1.sdk \
    --cpu=cortex-a8 --extra-cflags='-arch armv7' --extra-ldflags='-arch armv7 \
    -isysroot /applications/xcode.app/contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.1.sdk' --enable-pic

    The configure appears to work right, it ends with this

    License: LGPL version 2.1 or later
    Creating config.mak and config.h...

    WARNING: Compiler does not indicate floating-point ABI, guessing soft.

    But when I then run make I get this

    AS  libavcodec/arm/ac3dsp_armv6.o
    ./libavutil/arm/asm.S:178:garbage following instruction -- `ldr r4,.Lpicoff\'
    ./libavutil/arm/asm.S:179:Unknown pseudo-op: .Lpic
    ./libavutil/arm/asm.S:179:Rest of line ignored. 1st junk character valued 92 (\).
    ./libavutil/arm/asm.S:181:Unknown pseudo-op: .altmacro
    ./libavutil/arm/asm.S:182:Unknown pseudo-op: .noaltmacro
    ./libavutil/arm/asm.S:185:Unknown pseudo-op: .Lpic
    ./libavutil/arm/asm.S:185:Rest of line ignored. 1st junk character valued 92 (\).
    ./libavutil/arm/asm.S:178:garbage following instruction -- `ldr lr,.Lpicoff\'
    ./libavutil/arm/asm.S:179:Unknown pseudo-op: .Lpic
    ./libavutil/arm/asm.S:179:Rest of line ignored. 1st junk character valued 92 (\).
    ./libavutil/arm/asm.S:181:Unknown pseudo-op: .altmacro
    ./libavutil/arm/asm.S:182:Unknown pseudo-op: .noaltmacro
    ./libavutil/arm/asm.S:185:Unknown pseudo-op: .Lpic
    ./libavutil/arm/asm.S:185:Rest of line ignored. 1st junk character valued 92 (\).
    make: *** [libavcodec/arm/ac3dsp_armv6.o] Error 1

    Any help would be greatly appreciated

  • Can we execute ffmpeg on MapReduce task (java)on HDFS

    25 décembre 2013, par Karn_way

    I have a video file on hdfs . i want to create images from the video . can i use ffmpeg or any other solution to do this. Thanks

  • How to use ffmpegwrapper for python

    6 avril 2016, par Roast-Beef

    So i have this simple code using ffmpegwrapper, and it doesnt seem to do anything...
    so whats the prob ? thanks

    from ffmpegwrapper import FFmpeg, Input, Output, VideoCodec, VideoFilter

    input_video = Input('bob.mp4')
    output_video = Output('bob2.webm')
    FFmpeg('ffmpeg', input_video, output_video)

    (this is the full code btw)

    Ill take other alternatives... just not the subprocess command