Recherche avancée

Médias (2)

Mot : - Tags -/rotation

Autres articles (107)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (11600)

  • How to use ffmpeg's sws_scale from multiple threads ?

    25 avril 2013, par Asik

    I have a color space conversion function based on sws_scale. It will be called from multiple different threads during the lifetime of the application. I don't know, however, how thread-safe sws_scale is and I did not find it mentionned in its documentation.

    I would assume that each thread requires its own SwsContext as this parameter will be shared, but is this enough to guarantee there won't be any internal collisions ?

  • avformat/cavsvideodec : Fix probing when the file extension is avs

    9 juin 2014, par Michael Niedermayer
    avformat/cavsvideodec : Fix probing when the file extension is avs
    

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/cavsvideodec.c
  • Android NDK FFMpeg cant see headers

    9 juin 2014, par Sayaki

    I build FFMpeg and I get .so and . files. Now I want to include builded .h file in my .c file like this :

    #include

    But I get

    fatal error: avcodec.h: No such file or directory

    compilation terminated.

    Here is my .mk file :

    LOCAL_PATH := $(call my-dir)

    include $(CLEAR_VARS)

    LOCAL_MODULE    := ndksetup
    LOCAL_SRC_FILES := native.c
    LOCAL_LDLIBS := -llog
    LOCAL_C_INCLUDES := $(LOCAL_PATH)/include

    include $(BUILD_SHARED_LIBRARY)

    All of my headers is under include folder in jni folder. Can you tell me what I’m doing wrong.