
Recherche avancée
Autres articles (96)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
HTML5 audio and video support
13 avril 2011, parMediaSPIP 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 (...) -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;
Sur d’autres sites (7998)
-
lavc/aarch64/h264dsp_init_aarch64 : Fix weight function prototypes.
21 janvier 2018, par Carl Eugen Hoyoslavc/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 ;
^ -
avcodec/hevc_ps : Change num_tile_rows/columns checks to sps->ctb_height/weight
25 juin 2019, par Michael Niedermayer -
A light-weight Rust crate for encoding videos from images and audios [closed]
24 décembre 2019, par Agus Putra DanaI 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 ?