
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (104)
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
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 (...) -
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 (...)
Sur d’autres sites (9538)
-
how to stream from multiple unknown-beforehand mp4 files to html5 video tag
2 avril 2017, par Lana NovaI would like to enable the following flow :
- segment a video stream from a webcam using ffmpeg into mp4 files,
- transform those video files using opencv
- stream the resulting mp4 files using html5 video tag
I found that for #3 above I can use ffmpeg to transcode to HLS format :
sudo ffmpeg -i /tmp/edge-data/part-00000000.mp4 -profile:v baseline -level 3.0 -s 640x360 -start_number 5 -hls_time 10 -hls_list_size 0 -f hls /var/www/html/playlist.m3u8
and then use videojs to augment the html5 video tag and point it at the m3u8 playlist file generated by the ffmpeg command above.
My problem is that I have multiple mp4 files that are not known in advance. So, in a way, I need to be continuously adding items to the m3u8 playlist file.
I found I can do it manually by removing the EXIT subsection of the m3u8 file and appending paths to new .ts files manually. Is there an option to do that with ffmpeg instead ?
Is there an easier way to accomplish what I’m trying to do here ?
Thanks !
-
Merge commit ’e46ad30a808744ddf3855567e162292a4eaabac7’
4 février 2014, par Michael NiedermayerMerge commit ’e46ad30a808744ddf3855567e162292a4eaabac7’
* commit ’e46ad30a808744ddf3855567e162292a4eaabac7’ :
vp8 : use a fixed-size edge emu bufferConflicts :
libavcodec/vp8.c
libavcodec/vp8.hSee : face578d56c2d1375e40d5e2a28acc122132bc55
Merged-by : Michael Niedermayer <michaelni@gmx.at> -
fate/vvc : Add vvc-frames-with-ltr.vvc
8 janvier, par Frank Plowmanfate/vvc : Add vvc-frames-with-ltr.vvc
This sample is rather difficult, containing a lot of subtle edge cases
which revealed errors in the VVC decoder. It covers 88.4% of lines in
libavcodec/vvc and brings the line coverage of the entire VVC fate suite
from 96.3% to 97.2%.Signed-off-by : Frank Plowman <post@frankplowman.com>
Signed-off-by : James Almer <jamrial@gmail.com>