Recherche avancée

Médias (91)

Autres articles (55)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • L’utiliser, en parler, le critiquer

    10 avril 2011

    La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
    Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
    Une liste de discussion est disponible pour tout échange entre utilisateurs.

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (10826)

  • Revision b95ed6883a : a minor change to a portion of loop filtering The loop filtering used for MB ed

    17 janvier 2013, par Yaowu Xu

    Changed Paths : Modify /vp9/common/vp9_loopfilter.c Modify /vp9/common/vp9_loopfilter_filters.c a minor change to a portion of loop filtering The loop filtering used for MB edge or internal edge of a MB using 8x8 tranform was reading 5 pixel each side and writting 3 pixel each side. With (...)

  • swscale : disable ARM code until its build failure with clang/iphone is fixed

    8 janvier 2014, par Michael Niedermayer
    swscale : disable ARM code until its build failure with clang/iphone is fixed
    

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libswscale/arm/Makefile
    • [DH] libswscale/swscale_unscaled.c
  • Conversion from Iphone Core Surface RGB Frame into ffmepg AVFarme

    10 mars 2015, par Raghu

    I am trying to convert Core Surface RGB frame buffer(Iphone) to ffmpeg Avfarme to encode into a movie file. But I am not getting the correct video output (video showing colors dazzling not the correct picture)

    I guess there is something wrong with converting from core surface frame buffer into AVFrame.

    Here is my code :

    Surface *surface = [[Surface alloc]initWithCoreSurfaceBuffer:coreSurfaceBuffer];
    [surface lock];
    unsigned int height = surface.height;
    unsigned int width = surface.width;
    unsigned int alignmentedBytesPerRow = (width * 4);
    if (!readblePixels) {
       readblePixels = CGBitmapAllocateData(alignmentedBytesPerRow * height);
       NSLog(@"alloced readablepixels");
    }
    unsigned int bytesPerRow = surface.bytesPerRow;
    void *pixels = surface.baseAddress;
    for (unsigned int j = 0; j &lt; height; j++) {
       memcpy(readblePixels + alignmentedBytesPerRow * j, pixels + bytesPerRow * j, bytesPerRow);
    }

    pFrameRGB->data[0] = readblePixels; // I guess here is what I am doing wrong.
    pFrameRGB->data[1] = NULL;
    pFrameRGB->data[2] = NULL;
    pFrameRGB->data[3] = NULL;

    pFrameRGB->linesize[0] = pCodecCtx->width;
    pFrameRGB->linesize[1] = 0;
    pFrameRGB->linesize[2] = 0;
    pFrameRGB->linesize[3] = 0;


    sws_scale (img_convert_ctx, pFrameRGB->data, pFrameRGB->linesize,
          0, pCodecCtx->height,
          pFrameYUV->data, pFrameYUV->linesize);  

    Please help me out.

    Thanks,

    Raghu