
Recherche avancée
Médias (21)
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (103)
-
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 -
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 (...) -
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 (8127)
-
FFMPEG encoding example does not work with VPx encoders
11 septembre 2018, par user4177870I am using the following example from FFMPEG to write a raw steam of VP8 or VP9 encoder :
https://ffmpeg.org/doxygen/trunk/encode_video_8c-example.htmlThe VP8 or VP9 based file is written successfully to the disk. Then to mux this stream into a container, I sued FFMPEG command line :
ffmpeg -i myfile.vp9 -c copy testvideo1.mkv
I get the following error when I run the above command :
ffmpeg version N-91789-g11cec34829 Copyright (c) 2000-2018 the FFmpeg developers
myfile.vp9 : Invalid data found when processing input
However, when I run the above set of operations for h264, its works fine.
I assume its because of the endcode = 0, 0, 1, 0xb7 which might not work for VPx encoders.
Not sure whats the issue. Any help would be appreciated. -
avfilter/vf_delogo : Use AVPixFmtDescriptor.nb_components
10 décembre 2015, par Jean Delvareavfilter/vf_delogo : Use AVPixFmtDescriptor.nb_components
Relying on AVPixFmtDescriptor.nb_components is cleaner and faster than
checking data and linesize for every possible plane.Signed-off-by : Jean Delvare <jdelvare@suse.de>
Reviewed-by : Paul B Mahol <onemda@gmail.com>
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
lavc/libopenjpegenc : move opj_setup_encoder to libopenjpeg_encode_frame
23 janvier 2015, par Jean Firstlavc/libopenjpegenc : move opj_setup_encoder to libopenjpeg_encode_frame
if the openjpeg parameter tcp_rates is not 0 ( using the ffmpeg compression_level option )
every 2nd image per thread is badly encoded. By moving the opj_setup_encoder function from
libopenjpeg_encode_init to libopenjpeg_encode_frame this can be prevented.This fixes ticket #3754.
Signed-off-by : Jean First <jeanfirst@gmail.com>
Signed-off-by : Michael Niedermayer <michaelni@gmx.at>