Recherche avancée

Médias (0)

Mot : - Tags -/flash

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

Autres articles (39)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

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

Sur d’autres sites (7529)

  • A light-weight Rust crate for encoding videos from images and audios [closed]

    24 décembre 2019, par Agus Putra Dana

    I want to make a web app that enable users to generate video from canvas animation. I’m aware that I can record the canvas animation and the audios using catureStream(), but I want to generate the video without playing the audio. Also, the video frame rate generated using this method is not consistent.

    My idea is to capture the canvas frame by frame and store them as blob to get a consistent frame rate. And then encode the video from these blobs and some audio files uploaded by the user using web assembly. I’m also aware that I can use FFMPEG to encode the video. But the file size of the compiled FFMPEG is quite big.

    Is there any light-weight video encoder library, preferably written in Rust, just for encoding video from images and audios ?

  • avcodec/hevc_ps : Change num_tile_rows/columns checks to sps->ctb_height/weight

    25 juin 2019, par Michael Niedermayer
    avcodec/hevc_ps : Change num_tile_rows/columns checks to sps->ctb_height/weight
    

    Suggested-by : James Almer <jamrial@gmail.com>
    Reviewed-by : James Almer <jamrial@gmail.com
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/hevc_ps.c
  • lavc/aarch64/h264dsp_init_aarch64 : Fix weight function prototypes.

    21 janvier 2018, par Carl Eugen Hoyos
    lavc/aarch64/h264dsp_init_aarch64 : Fix weight function prototypes.
    

    Fixes the following warnings :
    libavcodec/aarch64/h264dsp_init_aarch64.c : In function ‘ff_h264dsp_init_aarch64’ :
    libavcodec/aarch64/h264dsp_init_aarch64.c:84:38 : warning : assignment from incompatible pointer type [enabled by default]
    c->weight_h264_pixels_tab[0] = ff_weight_h264_pixels_16_neon ;
    ^
    libavcodec/aarch64/h264dsp_init_aarch64.c:85:38 : warning : assignment from incompatible pointer type [enabled by default]
    c->weight_h264_pixels_tab[1] = ff_weight_h264_pixels_8_neon ;
    ^
    libavcodec/aarch64/h264dsp_init_aarch64.c:86:38 : warning : assignment from incompatible pointer type [enabled by default]
    c->weight_h264_pixels_tab[2] = ff_weight_h264_pixels_4_neon ;
    ^
    libavcodec/aarch64/h264dsp_init_aarch64.c:88:40 : warning : assignment from incompatible pointer type [enabled by default]
    c->biweight_h264_pixels_tab[0] = ff_biweight_h264_pixels_16_neon ;
    ^
    libavcodec/aarch64/h264dsp_init_aarch64.c:89:40 : warning : assignment from incompatible pointer type [enabled by default]
    c->biweight_h264_pixels_tab[1] = ff_biweight_h264_pixels_8_neon ;
    ^
    libavcodec/aarch64/h264dsp_init_aarch64.c:90:40 : warning : assignment from incompatible pointer type [enabled by default]
    c->biweight_h264_pixels_tab[2] = ff_biweight_h264_pixels_4_neon ;
    ^

    • [DH] libavcodec/aarch64/h264dsp_init_aarch64.c