Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (105)

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

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Soumettre bugs et patchs

    10 avril 2011

    Un logiciel n’est malheureusement jamais parfait...
    Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
    Si vous pensez avoir résolu vous même le bug (...)

Sur d’autres sites (12961)

  • FFmpeg : undefined reference to 'main'

    13 mars 2013, par Yuliya Tarasenko

    I try to build library and get :

    undefined reference to 'main' collect2: ld returned 1 exit status

    This is a .c file I've added in jni folder :

    #include
    #include "creator.h"

    // Use to safely invoke ffmpeg multiple times from the same Activity
    JNIEXPORT void JNICALL Java_com_appunite_ffmpeg_FFmpegCreator_run(JNIEnv *env, jobject obj, jobjectArray args)
    {
    int i = 0;
    int argc = 0;
    char **argv = NULL;

    if (args != NULL) {
       argc = (*env)->GetArrayLength(env, args);
       argv = (char **) malloc(sizeof(char *) * argc);

       for(i=0;iGetObjectArrayElement(env, args, i);
           argv[i] = (char *)(*env)->GetStringUTFChars(env, str, NULL);
       }
    }

    main(argc, argv);
    }

    This is a .h file :

    /* DO NOT EDIT THIS FILE - it is machine generated */
    #include
    /* Header for class com_appunite_ffmpeg_FFmpegCreator */

    #ifndef _Included_com_appunite_ffmpeg_FFmpegCreator
    #define _Included_com_appunite_ffmpeg_FFmpegCreator
    #ifdef __cplusplus
    extern "C" {
    #endif
    /*
    * Class:     com_appunite_ffmpeg_FFmpegCreator
    * Method:    run
    * Signature: ([Ljava/lang/String;)V
    */
    JNIEXPORT void JNICALL Java_com_appunite_ffmpeg_FFmpegCreator_run(JNIEnv *, jobject, jobjectArray);

    #ifdef __cplusplus
    }
    #endif
    #endif

    When I comment main(argc, argv) - the build is successful, otherwise - got this error.
    Could anyone help me please ?

  • avcodec/vc1 : add Simple and Main profile to vc1_put_signed_blocks_clamped

    8 juin 2018, par Jerome Borsboom
    avcodec/vc1 : add Simple and Main profile to vc1_put_signed_blocks_clamped
    

    Simple and Main Profile also need unsigned put_pixels_clamped. Add an argument
    to choose between signed and unsigned put_pixels and change function name to
    vc1_put_blocks_clamped.

    Signed-off-by : Jerome Borsboom <jerome.borsboom@carpalis.nl>

    • [DH] libavcodec/vc1_block.c
  • avcodec/vc1 : add Simple and Main profile to vc1_put_signed_blocks_clamped

    6 juin 2018, par Jerome Borsboom
    avcodec/vc1 : add Simple and Main profile to vc1_put_signed_blocks_clamped
    

    Simple and Main profile also need unsigned put_pixels_clamped. Add an argument
    to choose between signed and unsigned put_pixels and change function name to
    vc1_put_blocks_clamped.

    Signed-off-by : Jerome Borsboom <jerome.borsboom@carpalis.nl>

    • [DH] libavcodec/vc1_block.c