
Recherche avancée
Autres articles (29)
-
L’utiliser, en parler, le critiquer
10 avril 2011La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
Une liste de discussion est disponible pour tout échange entre utilisateurs. -
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 (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (4901)
-
configure : fix passing Objective-C flags
25 septembre 2024, par Marvin Scholzconfigure : fix passing Objective-C flags
Passing Objective-C flags from configure to the Makefiles was broken, as
configure incorrectly used the OBJCCFLAGS instead of OBJCFLAGS variable
which was then later overwritten in the common.mak :OBJCCFLAGS = $(CPPFLAGS) $(CFLAGS) $(OBJCFLAGS)
The fix for this is simple, analogous to how it is handled for CFLAGS,
use OBJCFLAGS here so that the flags are properly included in the
aforementioned OBJCCFLAGS definition.Signed-off-by : Zhao Zhili <zhilizhao@tencent.com>
-
VP8 Partition in a MKV file
4 janvier 2018, par KamalWhat is a VP8 partition ?
From MKV file (containing VP8 data), is it possible to get information on VP8 partition, like
- partition index
- partition size
EDIT
I am streaming VP8 packets from a MKV file containing VP8 encoded frames in simple blocks.
The MKV file format at a high level is as below.
Fiile -> Multiple Clusters -> Multiple Simple Blocks -> Multiple VP8 frames
Here one VP8 partition corresponds to what ?
Is it that one VP8 frame is one partition ?
OR is it one simple block is one partition ?OR there is no relation between partition and any components of a MKV file.
-
HLS FLAC stream using FFMPEG
8 janvier 2021, par Myles McDonnellI have created a HLS stream from a FLAC file with an output of FLAC using the following command :


ffmpeg 
 -i 10-brass-in-pocket.flac 
 -map 0:a -c:a:0 flac 
 -f hls 
 -hls_playlist_type vod 
 -master_pl_name master.m3u8 
 -hls_time 30 
 -hls_segment_type fmp4 
 -strict -2 
 -hls_segment_filename music.m4s 
 -hls_flags single_file 
 -var_stream_map "a:0" stream_%v.m3u8`



I have published it here :


https://di5wym8npn4cm.cloudfront.net/stackoverflow_fmp4_singlefile/master.m3u8. (this works in VLC)


Page with audio controls here :


https://di5wym8npn4cm.cloudfront.net/stackoverflow_fmp4_singlefile/index.html


I can see from the network tab in Safari that the second segment fails with a http code 206.


Why does this stream not play ?