Recherche avancée

Médias (33)

Mot : - Tags -/creative commons

Autres articles (99)

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

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (8556)

  • arm : fmtconvert : Split armv6 fmtconvert code off from vfp code

    23 août 2013, par Diego Biurrun
    arm : fmtconvert : Split armv6 fmtconvert code off from vfp code
    
    • [DBH] libavcodec/arm/Makefile
    • [DBH] libavcodec/arm/fmtconvert_init_arm.c
    • [DBH] libavcodec/arm/fmtconvert_vfp.S
    • [DBH] libavcodec/arm/fmtconvert_vfp_armv6.S
  • AndroidBitmap_lockPixels failing with -3 code

    24 avril 2013, par user1568549

    In my jni module I copy images to bitmaps, which were previously
    passed from my java application.

    I do this using AndroidBitmap_lockPixels/AndroidBitmap_unlockPixels.
    Basically, it renders the image correctly, but there're strange
    effects : sometimes the application gets stuck, or after some time
    AndroidBitmap_lockPixels always returns -3

    (ANDROID_BITMAP_RESULT_ALLOCATION_FAILED). I guess this is because I
    update these bitmaps not from the GUI thread, isn't it ?

    If so, what would be correct way to "post" this operation to the GUI

    thread ? Is it possible in jni ?

    Thanks.

  • How to code transcoding of TS to MP4 using ffmpeg

    28 juillet 2016, par CodeLearner
    ffmpeg -i testFile.ts -c:a aac -strict -2 -c:v copy testOutputFile.m4a

    The above command successfully converts testFile.ts(H264 video + Mpeg2 audio) to testOutputFile.m4a(H264 video + AAC audio).

    I need to implement the same functionality via code (using the ffmpeg library preferably ffmpeg v1.2).

    Does anybody know how to copy from one container(TS) to another(MP4) while encoding audio but not video ?