Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (15)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (4401)

  • How to extract a fixed number of frames starting from specific frame with ffmpeg ?

    4 mars 2018, par shuch

    I’m developing some GUI, which, among other things, implements video player with a step-by-step option. Using this option, I want to assign the start and end frames for the sequence which I want to extract (in a row YUV420 format) from a mkv file. I intended to use ffmpeg but I cannot find how I can assign the start frame with frame (not time) resolution. How can I do it with ffmpeg or another doftware ?

  • building static ffmpeg library for Android under windows 7

    29 mai 2013, par Zhenya

    I know that this has been asked several times, but I've never found any clear step by step and conclusive answer.

    How can I compile ffmpeg for Android, under windows 7 ?
    What are the steps ? Is there a project or wiki on the internet where to find this ?

    All I've found are steps to run under Ubuntu, or purely linux, but nothing to generate a static library for android, to be build under windows 7.

    Thanks

  • 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 :

    


    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 ?