Recherche avancée

Médias (0)

Mot : - Tags -/utilisateurs

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

Autres articles (30)

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

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (7432)

  • Revision 42467 : On demande le nom d’utilisateur piwik qui nous permet de vérifier la ...

    23 novembre 2010, par kent1@… — Log

    On demande le nom d’utilisateur piwik qui nous permet de vérifier la validité du token ...
    Bon pour l’avenir

  • Revision 666fd1300c : Added high precision transforms The high precision are only used if configured

    3 juin 2014, par Peter de Rivaz

    Changed Paths :
     Modify /configure


     Modify /test/dct16x16_test.cc


     Modify /test/dct32x32_test.cc


     Modify /test/fdct4x4_test.cc


     Modify /test/fdct8x8_test.cc


     Modify /test/idct8x8_test.cc


     Modify /test/partial_idct_test.cc


     Modify /vp9/common/vp9_blockd.h


     Modify /vp9/common/vp9_idct.c


     Modify /vp9/common/vp9_idct.h


     Modify /vp9/common/vp9_quant_common.c


     Modify /vp9/common/vp9_quant_common.h


     Modify /vp9/common/vp9_rtcd_defs.pl


     Modify /vp9/decoder/vp9_decodeframe.c


     Modify /vp9/decoder/vp9_detokenize.c


     Modify /vp9/encoder/vp9_block.h


     Modify /vp9/encoder/vp9_context_tree.c


     Modify /vp9/encoder/vp9_context_tree.h


     Modify /vp9/encoder/vp9_dct.c


     Modify /vp9/encoder/vp9_encodemb.c


     Modify /vp9/encoder/vp9_firstpass.c


     Modify /vp9/encoder/vp9_picklpf.c


     Modify /vp9/encoder/vp9_pickmode.c


     Modify /vp9/encoder/vp9_quantize.c


     Modify /vp9/encoder/vp9_ratectrl.c


     Modify /vp9/encoder/vp9_rdopt.c


     Modify /vp9/encoder/vp9_tokenize.c



    Added high precision transforms

    The high precision are only used if
    configured with —enable-high-transforms

    It gives greater precision in the transform.
    This gives PSNR improvements when encoding
    true 10 and 12 bit streams.

    At the moment, the quantizer used is shifted
    up by 2/4 for 10/12 bits so that the quantized
    coefficients fit in the current token range.

    Change-Id : Ia9c19a417cf030b8a7a889fcb3f5788bfca8215f

  • 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);
       }
    }