Advanced search

Medias (91)

Other articles (76)

  • MediaSPIP version 0.1 Beta

    16 April 2011, by

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Amélioration de la version de base

    13 September 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Mise à jour de la version 0.1 vers 0.2

    24 June 2013, by

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1); Installation des dépendances pour Smush; Installation de MediaInfo et FFprobe pour la récupération des métadonnées; On n’utilise plus ffmpeg2theora; On n’installe plus flvtool2 au profit de flvtool++; On n’installe plus ffmpeg-php qui n’est plus maintenu au profit de (...)

On other websites (8282)

  • Revision 31614c7fdb: Merge "[two pass temporal svc]Fix crash issue in transcoder app caused by last f

    17 January 2015, by Minghai Shang

    Merge "[two pass temporal svc]Fix crash issue in transcoder app caused by last
    fix."

  • Video Trimming via ffmpeg twice crash

    26 January 2014, by user2772167

    I am trying to trim video using ffmpeg lib. Video Trimming is success first time but it crash second time.

    For solving this crash, i search for it and use the dlopen() and dlclose() for dynamic loading for ffmpeg lib.

    my code is-

    const char* path;
    void* handle;
    void* handle1;
    const char *in, *out;
    int close;
    __android_log_write(ANDROID_LOG_ERROR, "VideoTrimmer Invoke", "Video Trimmer Invoke");
       in = (*env)->GetStringUTFChars(env, inputFile, 0);
       out = (*env)->GetStringUTFChars(env, outFile, 0);

    int *(*Java_com_videotrimmingwithnativesample_VideoTrimmer_trim)(JNIEnv*, jclass ,jstring inputFile, jstring outFile, jint startTime, jint length);
    path = (*env)->GetStringUTFChars(env, libffmpegPath, 0);
    handle = dlopen(path, RTLD_LAZY);
    if(!handle)
    {
       __android_log_write(ANDROID_LOG_ERROR, "VideoTrimmer Invoke HAndle false", dlerror());
    }
    else
    {
       __android_log_write(ANDROID_LOG_ERROR, "VideoTrimmer Invoke HAndle True", dlerror());
    }

    Java_com_videotrimmingwithnativesample_VideoTrimmer_trim = dlsym(handle, "Java_com_example_videotrimmingwithnativesample_VideoTrimmer_trim");
    if(!Java_com_videotrimmingwithnativesample_VideoTrimmer_trim)
    {
       __android_log_write(ANDROID_LOG_ERROR, "VideoTrimmer Invoke dlsym false",dlerror());
    }
    else
    {
       __android_log_write(ANDROID_LOG_ERROR, "VideoTrimmer Invoke dlsym true","Video TrimmerInvoke dlsym true");
    }

    int i=(*Java_com_videotrimmingwithnativesample_VideoTrimmer_trim)(env, obj, inputFile,outFile,startTime,length);
    if(dlclose(handle)==0)
    {
       (*env)->ReleaseStringUTFChars(env, libffmpegPath, path);
    __android_log_write(ANDROID_LOG_ERROR, "VideoTrimmer Invoke close true","Video TrimmerInvoke close true");
    }

    Error on second time use show on dlopen line —

    Fatal signal 11 (SIGSEGV) at 0x00000000 (code=1), (IntentService[V)

    Please help me for removing this crash.

    Thanks in advance.

  • Video Trimming via ffmpeg twice crash

    12 April 2018, by Abhijeet Gupta

    I am trying to trim video using ffmpeg lib. Video Trimming is success first time but it crash second time.

    For solving this crash, i search for it and use the dlopen() and dlclose() for dynamic loading for ffmpeg lib.

    my code is-

    const char* path;
    void* handle;
    void* handle1;
    const char *in, *out;
    int close;
    __android_log_write(ANDROID_LOG_ERROR, "VideoTrimmer Invoke", "Video Trimmer Invoke");
       in = (*env)->GetStringUTFChars(env, inputFile, 0);
       out = (*env)->GetStringUTFChars(env, outFile, 0);

    int *(*Java_com_videotrimmingwithnativesample_VideoTrimmer_trim)(JNIEnv*, jclass ,jstring inputFile, jstring outFile, jint startTime, jint length);
    path = (*env)->GetStringUTFChars(env, libffmpegPath, 0);
    handle = dlopen(path, RTLD_LAZY);
    if(!handle)
    {
       __android_log_write(ANDROID_LOG_ERROR, "VideoTrimmer Invoke HAndle false", dlerror());
    }
    else
    {
       __android_log_write(ANDROID_LOG_ERROR, "VideoTrimmer Invoke HAndle True", dlerror());
    }

    Java_com_videotrimmingwithnativesample_VideoTrimmer_trim = dlsym(handle, "Java_com_example_videotrimmingwithnativesample_VideoTrimmer_trim");
    if(!Java_com_videotrimmingwithnativesample_VideoTrimmer_trim)
    {
       __android_log_write(ANDROID_LOG_ERROR, "VideoTrimmer Invoke dlsym false",dlerror());
    }
    else
    {
       __android_log_write(ANDROID_LOG_ERROR, "VideoTrimmer Invoke dlsym true","Video TrimmerInvoke dlsym true");
    }

    int i=(*Java_com_videotrimmingwithnativesample_VideoTrimmer_trim)(env, obj, inputFile,outFile,startTime,length);
    if(dlclose(handle)==0)
    {
       (*env)->ReleaseStringUTFChars(env, libffmpegPath, path);
    __android_log_write(ANDROID_LOG_ERROR, "VideoTrimmer Invoke close true","Video TrimmerInvoke close true");
    }

    Error on second time use show on dlopen line —

    Fatal signal 11 (SIGSEGV) at 0x00000000 (code=1), (IntentService[V)

    Please help me for removing this crash.

    Thanks in advance.