
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (13)
-
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
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 (...) -
Taille des images et des logos définissables
9 février 2011, parDans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)
Sur d’autres sites (6297)
-
all : move ff_exp10, ff_exp10f, ff_fast_powf to lavu/ffmath.h
15 mars 2016, par Ganesh Ajjanagaddeall : move ff_exp10, ff_exp10f, ff_fast_powf to lavu/ffmath.h
The idea is to use ffmath.h for internal implementations of math functions.
Currently, it is used for variants of libm functions, but is by no means
limited to such things.Note that this is not exported ; use lavu/mathematics for such purposes.
Reviewed-by : Ronald S. Bultje <rsbultje@gmail.com>
Signed-off-by : Ganesh Ajjanagadde <gajjanag@gmail.com>- [DH] libavcodec/aacenc_utils.h
- [DH] libavcodec/aacpsy.c
- [DH] libavcodec/acelp_pitch_delay.c
- [DH] libavcodec/cngdec.c
- [DH] libavcodec/dcaenc.c
- [DH] libavcodec/imc.c
- [DH] libavcodec/on2avc.c
- [DH] libavcodec/opus.c
- [DH] libavcodec/wmadec.c
- [DH] libavcodec/wmaenc.c
- [DH] libavcodec/wmaprodec.c
- [DH] libavfilter/af_anequalizer.c
- [DH] libavfilter/af_compand.c
- [DH] libavfilter/af_volume.c
- [DH] libavfilter/f_ebur128.c
- [DH] libavfilter/vaf_spectrumsynth.c
- [DH] libavfilter/vsrc_testsrc.c
- [DH] libavutil/eval.c
- [DH] libavutil/ffmath.h
- [DH] libavutil/internal.h
-
How to trim webm video while preserving transparency
27 octobre 2020, par vishwas.mittalI want to trim a transparent webm video using ffmpeg. Here's the ffprobe result for that video :


Input #0, matroska,webm, from 'template.webm':
 Metadata:
 ENCODER : Lavf58.29.100
 Duration: 00:00:05.24, start: -0.002000, bitrate: 2856 kb/s
 Stream #0:0: Video: vp8, yuv420p(progressive), 1573x900, SAR 1:1 DAR 1573:900, 30 fps, 30 tbr, 1k tbn, 1k tbc (default)
 Metadata:
 ALPHA_MODE : 1
 ENCODER : Lavc58.54.100 libvpx
 DURATION : 00:00:05.240000000
 Stream #0:1: Audio: opus, 48000 Hz, mono, fltp
 Metadata:
 ENCODER : Lavc58.54.100 libopus
 DURATION : 00:00:05.241000000



I tried


ffmpeg -i template.webm -ss 1 -to 3 -c copy trimmed.webm



but the trimmed video doesn't start (or sometimes end) at the exact times defined in the command so I tried re-encoding the video using libvpx


ffmpeg -i template.webm -ss 1 -to 3 -c:v libvpx -c:a copy -crf 30 -b:v 0 trimmed.webm



It solved the timing issue but this results in loss of transparency of output video. Here's the ffprobe :


Input #0, matroska,webm, from 'trimmed.webm':
 Metadata:
 ENCODER : Lavf57.83.100
 Duration: 00:00:02.00, start: -0.001000, bitrate: 1395 kb/s
 Stream #0:0: Video: vp8, yuv420p(progressive), 1573x900, SAR 1:1 DAR 1573:900, 30 fps, 30 tbr, 1k tbn, 1k tbc (default)
 Metadata:
 ALPHA_MODE : 1
 ENCODER : Lavc57.107.100 libvpx
 DURATION : 00:00:02.000000000
 Stream #0:1: Audio: opus, 48000 Hz, mono, fltp
 Metadata:
 ENCODER : Lavc58.54.100 libopus
 DURATION : 00:00:02.001000000



How should I trim the video while preserving the transparency ? Moreover, a fast solution will be extremely helpful.


-
Installing ffmpeg on OSX 10.11
14 mai 2016, par JulianJI am trying to install ffmpeg and it’s libraries on a mac running osx.
I’ve used homebrew to successfully install however its seems only ffmpeg is installed and not ffprobe or drawtext.I tried reinstalling with this command :
brew install ffmpeg --with-fdk-aac --with-ffplay --with-freetype --with-frei0r --with-libass --with-libvo-aacenc --with-libvorbis --with-libvpx --with-opencore-amr --with-openjpeg --with-opus --with-rtmpdump --with-schroedinger --with-speex --with-theora --with-tools
and I get this
Warning:ffmpeg-3.0.2 already installed, it's just not linked
Is there something I am missing / have to do ?
Thanks.