Recherche avancée

Médias (1)

Mot : - Tags -/publicité

Autres articles (79)

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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

Sur d’autres sites (12738)

  • Determining size of data[0] in AVFrame of FFMPEG

    20 juillet 2020, par user2742299

    I am trying to allocate AVFrame->data[0] of a video frame to uint8_t* buffer using the following lines of code :

    


    size_t sizeOfFrameData = mpAVFrameInput->linesize[0] * mpAVFrameInput->height;
        
memcpy(mFrameData, mpAVFrameInput->data[0], sizeOfFrameData);


    


    I would like to know if this is a correct way of copying frame data to uint8_t* variable in FFMPEG ?

    


  • libav : Filling AVFrame with RGB24 sample data ?

    31 mai 2012, par Ashika Umanga Umagiliya

    I am trying to fill sample data for a AVFrame initialized with RGB24 format.
    I use following code snippet to populate RGB data.
    But in the encoded video,I can only see grayscale strip covering only 1/3 of the videoframe.
    This code snippet suppose to fill only Red color.
    Any tips what Im doing wrong here ?

    AVFrame *targetFrame=.....
    int height=imageHeight();
    int width=imageWidth();


     for(y=0;ydata[0][(y* width)+x]=(x%255); //R  
      targetFrame->data[0][(y* width)+x+1]=0;     //G
      targetFrame->data[0][(y* width)+x+2]=0;     //B


     }
      }
  • Named pipes and can they stream data ?

    30 juillet 2013, par chembrad

    I asked a previous question here :

    Stream video from ffmpeg and capture with OpenCV

    and I want to know more about named pipes in general. Can I use named pipes to stream data ? For example, can I continuously add data to the pipe (via ffmpeg) in conjunction with reading data with another application ? Or is there another method to do this ?