Recherche avancée

Médias (0)

Mot : - Tags -/organisation

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (57)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

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

  • av_read_frame return -32 before EOF in case of gsm_ms/gsm wav files

    8 septembre 2011, par user924702

    av_read_frame function is returning -32 after 5/6 frames but I have very large file. This behaviour of the code is only for libgsm wav files only. If I play .mp3 or other wav files there is no error.

    Can some one help me why av_read_frame return -32 before EOF in case of libgsm_ms file on android platfrom.

    Below id my source code :

    while (mCurrentState != MEDIA_PLAYER_DECODED
       && mCurrentState != MEDIA_PLAYER_STOPPED
       && mCurrentState != MEDIA_PLAYER_STATE_ERROR )
    {
       __android_log_print(ANDROID_LOG_INFO, TAG, "Inside Decoder Run Loop.");
       if (mDecoderAudio->packets() > FFMPEG_PLAYER_MAX_QUEUE_SIZE) {
           __android_log_print(ANDROID_LOG_INFO, TAG, "mDecoderAudio->packets()  > FFMPEG_PLAYER_MAX_QUEUE_SIZE, lets sleep for 2mili sec.");
           usleep(200);
           continue;
       }
       __android_log_print(ANDROID_LOG_INFO, TAG, "Lets read frame using av_read_frame: %u",mMovieFile);
       int nResult = av_read_frame(mMovieFile, &pPacket);
       __android_log_print(ANDROID_LOG_INFO, TAG, "Read frameresult: %d",nResult);
       if(nResult < 0) {
           mCurrentState = MEDIA_PLAYER_DECODED;
           __android_log_print(ANDROID_LOG_INFO, TAG, "No more frame to decode.");
           continue;
       }
       if(mCurrentState == MEDIA_PLAYER_PAUSED){
           __android_log_print(ANDROID_LOG_INFO, TAG,"Player state is MEDIA_PLAYER_PAUSED.");
           continue;
       }
       if (pPacket.stream_index == mAudioStreamIndex) {
           __android_log_print(ANDROID_LOG_INFO, TAG,"Lets Enqueue Packet");
           mDecoderAudio->enqueue(&pPacket);
       }
       else {
            __android_log_print(ANDROID_LOG_INFO, TAG,"Lets Free Packet");
           av_free_packet(&pPacket);
       }
    }
  • Anomalie #2447 (Fermé) : Surlignage dans les page recherche

    9 décembre 2011, par cedric -

    voir aussi #2025 et #1696 Honnêtement, ce script de surlignage par referer est un peu buggué et n’a jamais été parfaitement fini (on surligne pas sur la page de recherche, mais sur la suivante qui a pour referer la page de recherche). Il est désactivé par défaut en SPIP3 qui se fonde uniquement sur le (...)

  • error is coming lib-faac-dev not found

    30 septembre 2011, par Rahul Mehta

    i installed faac from here http://sourceforge.net/projects/faac/files/faac-src/faac-1.28/faac-1.28.tar.gz/
    and then m running this command which is giving me this error basicall i want to install ffmpeg with audio conversion for libmp3lame , means with audio conversion.

    sudo apt-get install build-essential subversion git-core checkinstall yasm texi2html libfaac-dev libjack-jackd2-dev libmp3lame-dev libopencore-amrnb-dev libopencore-amrwb-dev libsdl1.2-dev libtheora-dev libvorbis-dev libvpx-dev libx11-dev libxfixes-dev libxvidcore-dev zlib1g-dev

    Reading package lists... Done
    Building dependency tree
    Reading state information... Done
    E: Unable to locate package libfaac-dev

    following this article
    http://pasindudps.blogspot.com/2010/12/compiling-ffmpeg-in-ubuntu-1010.html