
Recherche avancée
Autres articles (19)
-
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 (...) -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (4429)
-
avformat/mxfdec : use both body_sid and track_number to find the track of a packet
6 février 2018, par Marton Balintavformat/mxfdec : use both body_sid and track_number to find the track of a packet
In order to do that we have to parse the EssenceContainerData and assign the
proper body_sid and index_sid to the tracks from the corresponding source
packages.This fixes packets returned in the wrong stream for some OP1-b files.
Based on a patch by Alex Mogurenko from https://github.com/da8eat/FFmpeg
Reference : http://mogurenko.com/2018/01/02/mxf-op1b-ffmpeg-part1/
Signed-off-by : Marton Balint <cus@passwd.hu>
-
Evolution #3924 : Changer #FILE dans la boucle DATA source ls pour mettre le chemin complet
28 février 2018, par BoOz -Fil : oui le seul risque avec ça c’est si on est dans ecrire/
autrement dit il faut peut-être _DIR_RACINE.$vDans écrire avec $b[’file’] = $v ; j’ai le bon résultat, avec _DIR_RACINE un ../ de trop.
*/ !par mtime"
"0,10> [(#VALY-m-d H:i:s|date#MTIME)] - file : [(#FILE)] - basename : [(#BASENAME)]Donne
2018-02-28 17:33:25 - file : ../IMG/gif/ - basename : gif 2018-02-28 17:33:20 - file : ../IMG/png/ - basename : png 2018-02-28 17:30:03 - file : ../IMG/jpg/ - basename : jpg
Donc je mets $b[’file’] = $v
-
How to encode KLV stream into MPEGTS with FFMPEG ?
27 février 2018, par gediminasguI’m playing with muxing h264 video with KLV data into mpegts to make video with included KLV data like in ffmpeg samples http://samples.ffmpeg.org/MPEG2/mpegts-klv/Day%20Flight.mpg
My command line :
ffmpeg.exe -re -f lavfi -i testsrc=rate=30 -re -f data -i out_day.klv -map 0:0 -map 1:0 -c:v h264 -c:d klv -f mpegts test.ts
It creates video, but data is encoded with bin_data code, but not klv :
> ffmpeg.exe -i test.ts
ffmpeg version 3.4.2 Copyright (c) 2000-2018 the FFmpeg developers
built with gcc 7.3.0 (GCC)
configuration: --enable-gpl --enable-version3 --enable-sdl2 --enable-bzlib --enable-fontconfig --enable-gnutls --enable-iconv --enable-libass --enable-libbluray --enable-libfreetype --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libopus --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libtheora --enable-libtwolame --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxml2 --enable-libzimg --enable-lzma --enable-zlib --enable-gmp --enable-libvidstab --enable-libvorbis --enable-libvo-amrwbenc --enable-libmysofa --enable-libspeex --enable-libxvid --enable-libmfx --enable-cuda --enable-cuvid --enable-d3d11va --enable-nvenc --enable-dxva2 --enable-avisynth
libavutil 55. 78.100 / 55. 78.100
libavcodec 57.107.100 / 57.107.100
libavformat 57. 83.100 / 57. 83.100
libavdevice 57. 10.100 / 57. 10.100
libavfilter 6.107.100 / 6.107.100
libswscale 4. 8.100 / 4. 8.100
libswresample 2. 9.100 / 2. 9.100
libpostproc 54. 7.100 / 54. 7.100
[mpegts @ 0000017fad6124a0] start time for stream 1 is not set in estimate_timings_from_pts
Input #0, mpegts, from 'test.ts':
Duration: 00:00:04.93, start: 1.466667, bitrate: 78 kb/s
Program 1
Metadata:
service_name : Service01
service_provider: FFmpeg
Stream #0:0[0x100]: Video: h264 (High 4:4:4 Predictive) ([27][0][0][0] / 0x001B), yuv444p(progressive), 320x240 [SAR 1:1 DAR 4:3], 30 fps, 30 tbr, 90k tbn, 60 tbc
Stream #0:1[0x101]: Data: bin_data ([6][0][0][0] / 0x0006)
At least one output file must be specifiedHow to set data stream codec to KLV ?
p.s.
out_day.klv
is extracted fromDay Flight.mpg
with commandffmpeg -i "Day Flight.mpg" -map data-re -codec copy -f data out_day.klv
Thank you