Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (111)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (7453)

  • lavc/movtextenc : add color tag handling

    5 avril 2020, par John Stebbins
    lavc/movtextenc : add color tag handling
    

    Signed-off-by : Philip Langdale <philipl@overt.org>

    • [DH] libavcodec/movtextenc.c
  • avfilter/avf_showwaves : color support

    19 janvier 2016, par Paul B Mahol
    avfilter/avf_showwaves : color support
    

    Signed-off-by : Paul B Mahol <onemda@gmail.com>

    • [DH] libavfilter/avf_showwaves.c
  • Hardware acceleration of color conversion and scaling using QSV with ffmpeg, libav

    28 septembre 2023, par zerpico

    I used hardware decoding on an Intel processor using QuickSync based on this example.&#xA;https://github.com/FFmpeg/FFmpeg/blob/master/doc/examples/qsv_decode.c

    &#xA;

    Then I use sws_scale to color convert from NV12 to YUV420. But is there a way to use hardware acceleration for this too ?

    &#xA;

    some part of my code

    &#xA;

    //decoding frame&#xA;int32_t ret = avcodec_receive_frame(_context, _tmpFrame); //i got _tmpFrame->format == AV_PIX_FMT_QSV&#xA;&#xA;//retrieve data from GPU to CPU&#xA;av_hwframe_transfer_data(_decFrame, _tmpFrame, 0); //i got _decFrame->format == AV_PIX_FMT_NV12&#xA;&#xA;//...some code next&#xA;//init context&#xA;conversion = sws_getContext(_context->width, _context->height, AV_PIX_FMT_NV12,&#xA;                             _context->width,_context->height, AV_PIX_FMT_YUV420P,&#xA;                             SWS_FAST_BILINEAR, NULL,NULL,NULL);&#xA;&#xA;//convert frame  (is Intel QuickSync used here)?&#xA;int32_t out_height = sws_scale(conversion, src_data, src_stride, 0, src_height, dst_data, dst_stride);&#xA;

    &#xA;