
Recherche avancée
Médias (91)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (33)
-
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP 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 (...) -
Emballe Médias : Mettre en ligne simplement des documents
29 octobre 2010, parLe plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...) -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...)
Sur d’autres sites (3840)
-
how to find video and audio stream times without the deprecated values ? libav 10.5
23 novembre 2014, par Narayana James EmeryAfter looking into the documentation, AVStream.pts has been deprecated. Before I was using this loop to try and get the video and audio time. it’s the same as whats in the api-example.c (which no longer works) :
if (audioStream_)
{
VideoTime = (double)videoStream_->pts.val*videoStream_->time_base.num/videoStream_->time_base.den;
do
{
AudioTime = (double)audioStream_->pts.val*audioStream_->time_base.num/audioStream_->time_base.den;
ret = WriteAudioFrame();
}
while (AudioTime < VideoTime && ret);
if (ret < 0)
return ret;
}what is the current alternative ? I haven’t been able to get anything to work as of yet and I’ve been searching for around 3 hours.
-
avfilter/vf_ssim360 : Use correct type in sizeof
12 mars 2023, par Andreas Rheinhardtavfilter/vf_ssim360 : Use correct type in sizeof
SSIM360Context.ssim360_hist is an array of four pointers to double ;
so sizeof(*ssim360_hist[0]) (=sizeof(double)) is the correct size
to use to calculate the amount of memory to allocate, not
sizeof(*ssim360_hist) (which is sizeof(double*)).Use FF_ALLOCZ_TYPED_ARRAY to avoid this issue altogether.
Fixes Coverity issue #1520671.
Reviewed-by : Anton Khirnov <anton@khirnov.net>
Reviewed-by : Jan Ekström <jeebjp@gmail.com>
Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com> -
aarch64 : vp8 : Port bilin functions from arm version
1er février 2019, par Martin Storsjöaarch64 : vp8 : Port bilin functions from arm version
Cortex A53 A72 A73
vp8_put_bilin4_h_c : 303.8 102.2 161.8
vp8_put_bilin4_h_neon : 100.0 40.9 41.2
vp8_put_bilin4_hv_c : 322.8 201.0 305.9
vp8_put_bilin4_hv_neon : 156.8 72.6 77.0
vp8_put_bilin4_v_c : 304.7 101.7 166.5
vp8_put_bilin4_v_neon : 82.7 41.2 33.0
vp8_put_bilin8_h_c : 1192.7 352.5 623.8
vp8_put_bilin8_h_neon : 213.5 70.2 87.8
vp8_put_bilin8_hv_c : 1098.6 769.2 1041.9
vp8_put_bilin8_hv_neon : 324.0 123.5 146.0
vp8_put_bilin8_v_c : 1193.9 350.4 617.7
vp8_put_bilin8_v_neon : 183.9 60.7 64.7
vp8_put_bilin16_h_c : 2353.1 671.2 1223.3
vp8_put_bilin16_h_neon : 261.9 140.7 145.0
vp8_put_bilin16_hv_c : 2453.2 1470.9 2355.2
vp8_put_bilin16_hv_neon : 383.9 196.0 217.0
vp8_put_bilin16_v_c : 2349.3 669.8 1251.2
vp8_put_bilin16_v_neon : 202.9 110.7 96.2Signed-off-by : Martin Storsjö <martin@martin.st>