Recherche avancée

Médias (0)

Mot : - Tags -/organisation

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

Autres articles (45)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • 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

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

Sur d’autres sites (9417)

  • FFMPEG command to mux video stream into HLS fMP4

    16 décembre 2020, par LinuxVirgin

    I have been trying to display my IP Cameras output onto a webpage to be viewed on a iThing (ipad or iphone)

    


    Im diplaying the output below in a video tag like below

    


    <video class="video-js vjs-default-skin" width="400" height="300" controls="controls">&#xA;       <source type="application/x-mpegURL" src="http://127.0.0.1/wordpress/prog_index.m3u8">&#xA;</source></video>&#xA;

    &#xA;

    Im using ffmpeg to mux/convert (I may have my terminology wrong) the cameras http stream (not RTSP stream).

    &#xA;

    Ive tried multiple commands below and some commands work on a PC/Chrome but none of them work on a ipad/safari or chrome.

    &#xA;

    All the files are being generated in the correct locations on the webserver to allow them to be diplayed

    &#xA;

    ffmpeg -i http://username:password@192.168.102.92/ISAPI/Streaming/channels/102/httpPreview  -force_key_frames "expr:gte(t,n_forced*2)" -sc_threshold 0 -s 640x480 -c:v libx264 -b:v 1536k -c:a copy -hls_time 6 -hls_playlist_type vod -hls_segment_type fmp4 -hls_segment_filename "fileSequence%d.m4s" -hls_wrap 3 prog_index.m3u8&#xA;

    &#xA;

    ffmpeg -i http://username:password@192.168.102.92/ISAPI/Streaming/channels/102/httpPreview  -force_key_frames "expr:gte(t,n_forced*2)" -sc_threshold 0 -s 640x480 -c:v libx264 -b:v 1536k -c:a copy -hls_time 6 -hls_playlist_type vod -hls_segment_type fmp4 -hls_segment_filename "fileSequence%d.m4s" -hls_list_size 10 prog_index.m3u8&#xA;

    &#xA;

    ffmpeg -i http://username:password@192.168.102.92/ISAPI/Streaming/channels/102/httpPreview  -force_key_frames "expr:gte(t,n_forced*2)" -sc_threshold 0 -s 640x480 -b:v 1536k -c:a copy -hls_time 6  -hls_segment_type fmp4 -hls_segment_filename "fileSequence%d.m4s" -hls_list_size 10 prog_index.m3u8&#xA;

    &#xA;

    ffmpeg -i http://username:password@192.168.102.92/ISAPI/Streaming/channels/102/httpPreview -force_key_frames "expr:gte(t,n_forced*2)" -sc_threshold 0 -s 640x480 -b:v 1536k -c:a copy -hls_time 3 -hls_flags delete_segments -hls_segment_type fmp4 -hls_segment_filename "fileSequence%d.m4s" prog_index.m3u8&#xA;

    &#xA;

    Can someone point out where Im going wrong, I think its the FFMPEG cmd ?

    &#xA;

  • Pyzam gives an error, Pyzam does not work. [red]Error : ffmpeg file not found in $PATH[/red] [duplicate]

    12 mai 2024, par Да не знаю я

    I wanted to make a program that defines music, well, like shazam. I came across Pyzam. I tried it, it doesn't work. Returns the error : [red]Fatal : ffmpeg not found on $PATH[/red] to the command : pyzam — input mando.mp3. There is a mando.mp3 file in the folder where I run the program. I write the command on the command line. Windows 10. FFmpeg is available on disk C from the official website.

    &#xA;

  • Core : guard against null & undefined values in required method

    2 septembre 2017, par Arkni
    Core : guard against null & undefined values in required method
    

    An input element will never have undefined or null as value
    but the normalizer may return null or undefined for an element.

    Also, jQuery (< 3.x) returns `null` for select element with the
    multiple attribute set if no options are selected.

    As a result, the required method should guard against that.