Recherche avancée

Médias (21)

Mot : - Tags -/Nine Inch Nails

Autres articles (104)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

Sur d’autres sites (9618)

  • FFMpeg HLS output settings required for Approval by the Apple App Store

    23 mai 2016, par JungleGenius

    I have looked all over, but I have not found a direct answer for my question so far.

    What are the minimum required FFMpeg command line output and segmentation settings that will produce a minimum set of all the required HLS .m3u8 and .ts file combinations needed for Approval by the Apple App Store for a Video file played in an App ?

    Note there are older Q&As on here that were written before FFMpeg added native segmentation for HLS. So I’m looking for 100% FFMpeg solution to output what Apple is looking for. I don’t care about the input format for this answer as FFMpeg reads most any file we would want to use.

    Note the correct answer should take into account the setting for maximum bandwidth requirments for the total stream and etc that Apple looks for.

    I bet someone out there has already got this answered, maybe even running in some code but I want to see it posted to save the rest of us some time.

    Thanks !

  • How to change Apple prores video track ID [on hold]

    14 janvier 2019, par user3173632

    I have a bunch of apple prores videos with video track ID is set to 2 instead of 1. Is there a quick way of updating the video header instead of ffmpeg copy command ?

  • ffmpeg -hls_time option not working correctly when running as a service

    4 février 2019, par aexposito

    I am running a ffmpeg command as a systemd service to catch a live RTSP stream and generate hls chunks, the chunks are set to be 30 seconds long with the -hls_time option, when I run the command on the console myself it works ok, but when it runs from the service chunks, wish are supposed to be 30 seconds long are 7 or 8 seconds.
    This is the command :

    /usr/bin/ffmpeg -rtsp_flags prefer_tcp -i
    "rtsp ://192.168.1.16:554/user=admin&password=&channel=1&stream=1.sdp"
    -acodec copy -vcodec copy -hls_time 30 -hls_list_size 10 -hls_flags append_list+delete_segments -f hls -use_localtime 1
    -hls_segment_filename "/home/zurikato/video-backup/$FILENAME_FORMAT_hls.ts"
    /home/zurikato/video-backup/playlist.m3u8

    I’m a beginner in ffmpeg and linux services, so please indulge me if it is a simple matter.
    Thanks in advance