Recherche avancée

Médias (0)

Mot : - Tags -/flash

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (29)

  • L’utiliser, en parler, le critiquer

    10 avril 2011

    La 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, par

    MediaSPIP 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, par

    Le 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 Scholz
    configure : 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>

    • [DH] configure
  • VP8 Partition in a MKV file

    4 janvier 2018, par Kamal

    What is a VP8 partition ?

    From MKV file (containing VP8 data), is it possible to get information on VP8 partition, like

    1. partition index
    2. 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 McDonnell

    I have created a HLS stream from a FLAC file with an output of FLAC using the following command :

    &#xA;

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

    &#xA;

    I have published it here :

    &#xA;

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

    &#xA;

    Page with audio controls here :

    &#xA;

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

    &#xA;

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

    &#xA;

    Why does this stream not play ?

    &#xA;