Recherche avancée

Médias (0)

Mot : - Tags -/metadatas

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

Autres articles (60)

  • 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 (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

Sur d’autres sites (4635)

  • Build FFMpeg for converting m3u8 to mp4 only

    8 août 2020, par Hare Shinohara

    I want to build a minimal version of FFMpeg for converting m3u8 to mp4 only, and the m3u8 file will be input via a https link.

    


    I tried

    


    ./configure \
--disable-everything \
--disable-ffplay --disable-ffprobe \
--disable-asm --disable-doc --disable-devices \
--disable-pthreads --disable-w32threads --disable-hwaccels \
--disable-parsers --disable-bsfs --disable-debug \
--disable-indevs --disable-outdevs \
--enable-gpl --enable-nonfree \
--enable-openssl \
--enable-libx264 \
--enable-protocol=file,https,crypto,hls \
--enable-decoder=aac,h264 \
--enable-encoder=aac,libx264 \
--enable-demuxer=aac,h264,hls \
--enable-muxer=h264,mp4


    


    but got errors

    


    Error when loading first segment


    


    Invalid data found when processing input


    


    Does anyone know how to configure correctly in this case ?
Please help.

    


  • avutil/mem : Correct documentation of av_fast_*alloc(z)

    18 novembre 2018, par Andreas Rheinhardt
    avutil/mem : Correct documentation of av_fast_*alloc(z)
    

    The current wording regarding size and min_size is completely wrong and
    ignores that min_size is indeed only a desired minimal size, not the
    actually allocated size.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@googlemail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavutil/mem.h
  • ffmpeg mp4 to hls vod with extract segment duration without re-encoding

    11 juillet 2021, par Jeremy

    Hello I have h264 mp4 files. What I want to do is convert it to hls without re-encoding. This can be achieve by :

    &#xA;

    ffmpeg -i input.mp4 -c copy -force_key_frames "expr:gte(t,n_forced*4)" -hls_time 4 -hls_playlist_type vod -hls_segment_type mpegts vid.m3u8&#xA;

    &#xA;

    But this problem with this is that it doesn't create extract segment duration :

    &#xA;

    $ for f in *.ts; do echo -n "$f,"; ffprobe -v error -show_entries format=duration -sexagesimal -of csv=p=0 "$f"; done&#xA;vid0.ts,0:00:04.837700&#xA;vid1.ts,0:00:05.587200&#xA;vid2.ts,0:00:06.006200&#xA;vid3.ts,0:00:01.368200&#xA;vid4.ts,0:00:02.693867&#xA;

    &#xA;

    I don't believe I can't insert keyframes without encoding.

    &#xA;

    When I run :

    &#xA;

    ffmpeg -i input.mp4 -codec:v libx264 -force_key_frames "expr:gte(t,n_forced*4)" -hls_time 4 -hls_playlist_type vod -hls_segment_type mpegts vid.m3u8&#xA;

    &#xA;

    its works but this is resource intensive as it re-encode the video.

    &#xA;

    So I am looking for the best way to achieve this while using minimal resource as possible.

    &#xA;