Recherche avancée

Médias (0)

Mot : - Tags -/auteurs

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

Autres articles (71)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • MediaSPIP Player : les contrôles

    26 mai 2010, par

    Les contrôles à la souris du lecteur
    En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

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

Sur d’autres sites (10054)

  • Write x264_encoder_encode output to file and play it

    20 juin 2015, par mkd156

    I need to encode a video stream using x264 library and write the output to a file. Here is the code I am using for encoding.

    x264_param_t    params;
    x264_param_default(&params);
    x264_param_default_preset(&params,"medium","zerolatency");

    params.i_width  = width;
    params.i_height = height;
    params.i_frame_reference    = 1;
    params.rc.i_rc_method       = X264_RC_CRF; //X264_RC_ABR;
    params.rc.f_vbv_buffer_init = 0;
    params.rc.f_rf_constant = 25;
    params.rc.f_rf_constant_max = 35;
    params.rc.f_rate_tolerance  = 0.1;
    params.rc.b_stat_write      = 0;
    params.i_threads        = 1; //0 is auto!!
    params.b_sliced_threads     = 0;
    params.rc.i_lookahead       = 0;
    params.i_sync_lookahead     = 0;
    params.i_bframe             = 0;
    params.b_annexb         = 1;
    params.b_repeat_headers     = 1;
    params.i_fps_den        = 1;
    params.b_intra_refresh      = 1;
    params.vui.i_chroma_loc     = 0;
    params.i_scenecut_threshold = 0;
    params.analyse.i_subpel_refine = 6;

    x264_param_apply_profile(&params,"baseline");

    // Open encoder
    encoder_ = x264_encoder_open(&params);

    ...

    x264_picture_alloc(&pic_, X264_CSP_I420, width, height);

    int size = x264_encoder_encode(encoder_, &nals_, &numNals_, &pic_, &picOut_);  

    FILE* pFile = NULL;
    pFile = fopen("h264Output", "wb");

    fwrite( nals_[0].p_payload, size, 1, pFile );
    fclose (pFile);

    x264_picture_clean(&pic_);

    After this I try to open h264Output file with ffPlay.exe but it gives the following error :
    Invalid data found when processing input.

    Can someone help me what am I doing wrong ? I had a look at the following post but it didn’t help me. write x264_encoder_encode output nals to h264 file

  • Revision 1395b56a1d : Add assembly tests for int projections. BUG=https://code.google.com/p/webm/issu

    19 juin 2015, par Frank Galligan

    Changed Paths :
     Modify /test/vp9_avg_test.cc



    Add assembly tests for int projections.

    BUG=https://code.google.com/p/webm/issues/detail?id=1022

    Change-Id : I5ae4acac39fd75c56d3feff0716cb52133de3b22

  • Play sound using bytes array in python

    30 juin 2015, par iRavi iVooda

    How can I play sound using a byte array in python. To be more precise, I read a byte array from a socket and I want to convert it to sound to understand it. How can I achieve this.

    Any libraries would be useful.