Recherche avancée

Médias (1)

Mot : - Tags -/3GS

Autres articles (67)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (9249)

  • exception on ffmpeg dll from a c++ visual studio 2015 project

    1er juillet 2017, par user1019140

    I want to use ffmpeg library in a Visual Studio project.
    I want to build an app for WIN32, so I downloaded :

    C:\Users\exa\Downloads\ffmpeg-3.3.2-win32-shared.zip
    C:\Users\exa\Downloads\ffmpeg-3.3.2-win32-dev.zip

    I copied the dlls from the shared zip to the same directory as my generated exe file. And I unzipped the dev zip into a directory of a different project of the same solution called MEDIA_IO.

    Then in the project properties , I added "additional include directories" :

    ..\MEDIA_IO\ffmpeg-3.3.2-win32-dev\include

    and under the linker, I added "Link library dependencies" :

    ..\MEDIA_IO\ffmpeg-3.3.2-win32-dev\lib

    and "Additional dependencies" :

    ..\MEDIA_IO\ffmpeg-3.3.2-win32-dev\lib\swscale.lib
    ..\MEDIA_IO\ffmpeg-3.3.2-win32-dev\lib\avutil.lib
    ..\MEDIA_IO\ffmpeg-3.3.2-win32-dev\lib\avcodec.lib
    ..\MEDIA_IO\ffmpeg-3.3.2-win32-dev\lib\avformat.lib
    ..\MEDIA_IO\ffmpeg-3.3.2-win32-dev\lib\avfilter.lib
    ..\MEDIA_IO\ffmpeg-3.3.2-win32-dev\lib\postproc.lib
    ..\MEDIA_IO\ffmpeg-3.3.2-win32-dev\lib\swresample.lib
    ..\MEDIA_IO\ffmpeg-3.3.2-win32-dev\lib\avdevice.lib

    I include the headers using :

    extern "C"
    {
    #include <libavcodec></libavcodec>avcodec.h>
    #include <libavformat></libavformat>avformat.h>
    #include <libavutil></libavutil>imgutils.h>
    #include <libavutil></libavutil>samplefmt.h>
    #include <libswscale></libswscale>swscale.h>
    #include <libavutil></libavutil>avstring.h>
    #include <libavutil></libavutil>intreadwrite.h>
    }

    The app compiles fine, but when running it, I’m getting exceptions on many different ffmpeg functions.

    For examples, when running :

    SwsContext * ctx = sws_getContext(560, 320, AV_PIX_FMT_YUV420P, 560,320, AV_PIX_FMT_RGB24, 0, NULL, NULL, NULL);

    I get exception :

    Exception thrown at 0x57E05140 (swscale-4.dll) in UnitTest1.exe: 0xC0000006: In page error executing location 0x57E05140 (status code 0xC0000008).
    Unhandled exception at 0x57E05140 (swscale-4.dll) in UnitTest1.exe: 0xC0000006: In page error executing location 0x57E05140 (status code 0xC0000008).

    It does not tell what are status codes 0xC0000006 and 0xC0000008.
    I dug a lot and could not find the source of the problem.

  • How to link and call function of prebuild static native library from android studio

    23 janvier 2017, par Janaki

    I need to change pitch and time stretching of an audio. For this I am using prebuild static library. Currently I am having libZtxAndroid.a static library and corresponding header file which contains function declaration. But I don’t know how to load this library in my android studio app and call native function from java code. I explored many links and tried to load this library. But all attempts are failed. This is the one link which I have tried last time https://tariqzubairy.wordpress.com/2012/03/12/use-of-prebuild-static-library-compiled-with-android-toolchain/

    Also I am using FFMPEG shared library and MP4Parser (https://github.com/sannies/mp4parser) library in this app for adding water mark to video and merging audio respectively. Can any one help from basics.

    1. How to load static library ?
    2. Where I need to place that static library ?
    3. Where I need to create jni folder (folder structure) ?
    4. How to call function available in that static library with the help of header file from java code ?
  • lavfi/fade : fix black level for non studio-level pixel formats

    29 mars 2012, par Stefano Sabatini

    lavfi/fade : fix black level for non studio-level pixel formats