Recherche avancée

Médias (0)

Mot : - Tags -/content

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

Autres articles (106)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

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

Sur d’autres sites (11931)

  • Video streaming from file system

    20 novembre 2019, par shah ghani

    I am trying to make a video server, my scenario is users will upload there files and I have a screen that will play all the files of the day like advertisement that we usually watch in our televisions.

    So far I have achieved .hls and .flv streaming through node media server.

    I have found the best way to stream a file is through FFMPEG, but I am unable to stream multiple files on same output url for example localhost:8000/index.m3u8, Can any one suggest me the right way to stream the next file when FFMPEG ends streaming of a previous file.

    Thanks in advance. :)

    My node media service config

    {
     rtmp: {
       port: 1935,
       chunk_size: 60000,
       gop_cache: true,
       ping: 30,
       ping_timeout: 60
     },
     http: {
       port: 8000,
       mediaroot: './media',
       allow_origin: '*'
     },
     trans: {
       ffmpeg: 'E:/Red Matrix/node-stream-master/node-stream-master/usr/bin/ffmpeg.exe',
       tasks: [
         {
           app: 'live',
           hls: true,
           hlsFlags: '[hls_time=2:hls_list_size=3:hls_flags=delete_segments]',
           dash: true,
           dashFlags: '[f=dash:window_size=3:extra_window_size=5]'
         }
       ]
     }
    };

    FFMPEG stream function

    function ffmpegStream(stream){

     var proc = ffmpeg()
     .input('D:/Videos/1.MP4')
       .on('error', function (err) {
         console.log('An error occurred: ' + err.message);
       })
       .on('end', function (e) {

         console.log('Processing end !' + JSON.stringify(this));

          ffmpegStream('D:/Videos/2.MP4')
       })
       .on('done', function() {
         console.log('Processing finished !');

       })
       .save('./media/live/abc/index.m3u8');
    }
  • mov : Support default-base-is-moof.

    1er juillet 2014, par Yusuke Nakamura
    mov : Support default-base-is-moof.
    

    default-base-is-moof shall be set to track fragments compatible with DASH
    Media Segments. So, this is a fundamental support for ISOBMFF ver. DASH.
    This is meaningful only when base-data-offset-present is absent and two or
    more track fragments are present in a movie fragment.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavformat/isom.h
    • [DBH] libavformat/mov.c
  • FFmpeg remove silence with exact duration detected by detect silence

    17 mars 2021, par dav

    I have an audio file, that have some silences, which I am detecting with ffmpeg detectsilence and then trying to remove with removesilence, however there is some strange behavior. Specifically :

    &#xA;

    1) File's Basic info based on ffprobe show_streams

    &#xA;

    Input #0, mp3, from &#x27;my_file.mp3&#x27;:&#xA;  Metadata:&#xA;    encoder         : Lavf58.64.100&#xA;  Duration: 00:00:25.22, start: 0.046042, bitrate: 32 kb/s&#xA;    Stream #0:0: Audio: mp3, 24000 Hz, mono, fltp, 32 kb/s&#xA;

    &#xA;

    2) Using detectsilence

    &#xA;

    ffmpeg -i my_file.mp3 -af silencedetect=noise=-50dB:d=0.2 -f null -&#xA;

    &#xA;

    I get this result

    &#xA;

    [mp3float @ 000001ee50074280] overread, skip -7 enddists: -1 -1&#xA;[silencedetect @ 000001ee5008a1c0] silence_start: 6.21417&#xA;[silencedetect @ 000001ee5008a1c0] silence_end: 6.91712 | silence_duration: 0.702958&#xA;[silencedetect @ 000001ee5008a1c0] silence_start: 16.44&#xA;[silencedetect @ 000001ee5008a1c0] silence_end: 17.1547 | silence_duration: 0.714708&#xA;[mp3float @ 000001ee50074280] overread, skip -10 enddists: -3 -3&#xA;[mp3float @ 000001ee50074280] overread, skip -5 enddists: -4 -4&#xA;[silencedetect @ 000001ee5008a1c0] silence_start: 24.4501&#xA;size=N/A time=00:00:25.17 bitrate=N/A speed=1.32e&#x2B;03x&#xA;video:0kB audio:1180kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown&#xA;[silencedetect @ 000001ee5008a1c0] silence_end: 25.176 | silence_duration: 0.725917&#xA;

    &#xA;

    That also match the values and points based on Adobe Audition

    &#xA;

    my file adobe audition silences

    &#xA;

    So far all good.

    &#xA;

    3) Now, based on some calculations (which is based on application's logic on what should be the final duration of the audio) I am trying to delete the silence with "0.725917"s duration. For that, based on ffmpeg docs (https://ffmpeg.org/ffmpeg-filters.html#silencedetect)

    &#xA;

    &#xA;

    Trim all silence encountered from beginning to end where there is more&#xA;than 1 second of silence in audio :&#xA;silenceremove=stop_periods=-1:stop_duration=1:stop_threshold=-90dB

    &#xA;

    &#xA;

    I run this command

    &#xA;

    ffmpeg -i my_file.mp3 -af silenceremove=stop_periods=-1:stop_threshold=-50dB:stop_duration=0.72 result1.mp3&#xA;

    &#xA;

    So, I am expecting that it should delete only the silence with "0.725917" duration (the last one in the above image), however it is deleting the silence that starts at 16.44s with duration of "0.714708"s. Please see the following comparison :

    &#xA;

    my file and result1 adobe audition silence comparison

    &#xA;

    4) Running detectsilence on result1.mp3 with same options gives even stranger results

    &#xA;

    ffmpeg -i result1.mp3 -af silencedetect=noise=-50dB:d=0.2 -f null -&#xA;

    &#xA;

    result

    &#xA;

    [mp3float @ 0000017723404280] overread, skip -5 enddists: -4 -4&#xA;[silencedetect @ 0000017723419540] silence_start: 6.21417&#xA;[silencedetect @ 0000017723419540] silence_end: 6.92462 | silence_duration: 0.710458&#xA;[mp3float @ 0000017723404280] overread, skip -7 enddists: -6 -6&#xA;[mp3float @ 0000017723404280] overread, skip -7 enddists: -2 -2&#xA;[mp3float @ 0000017723404280] overread, skip -6 enddists: -1 -1&#xA;    Last message repeated 1 times&#xA;[silencedetect @ 0000017723419540] silence_start: 23.7308&#xA;size=N/A time=00:00:24.45 bitrate=N/A speed=1.33e&#x2B;03x&#xA;video:0kB audio:1146kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown&#xA;[silencedetect @ 0000017723419540] silence_end: 24.456 | silence_duration: 0.725167&#xA;

    &#xA;

    So, the results are :

    &#xA;

      &#xA;
    • With command to remove silences that are longer than "0.72 second", a silence that was "0.714708"s, got removed and - a silence with "0.725917"s remained as is (well, actually changed a little - as per 3rd point)
    • &#xA;

    • The first silence that had started at "6.21417" and had a duration of "0.702958"s, suddenly now has a duration of "0.710458"s
    • &#xA;

    • The 3rd silence that had started at "24.4501" (which now starts at 23.7308 - obviously because the 2nd silence was removed) and had a duration of "0.725917", now suddenly is "0.725167"s (this one is not a big difference, but still why even removing other silence, this silence's duration should change at all).
    • &#xA;

    &#xA;

    Accordingly the expected results are :

    &#xA;

      &#xA;
    • Only the silences that match the provided condition (stop_duration=0.72) should be removed. In this specific example only the last one, but in general any silence that matches the condition of the length - irrelevant of their positioning (start, end or in the middle)
    • &#xA;

    • Other silences should remain with same exact duration they were before
    • &#xA;

    &#xA;

    FFMpeg : 4.2.4-1ubuntu0.1, Ubuntu : 20.04.2

    &#xA;

    Some attempts and results, while playing with ffmpeg options

    &#xA;

    a)

    &#xA;

    ffmpeg -i my_file.mp3 -af silenceremove=stop_periods=-1:stop_threshold=-50dB:stop_duration=0.72:detection=peak tmp1.mp3&#xA;

    &#xA;

    result :&#xA;First and second silences are removed, 3rd silence's duration remains exactly the same

    &#xA;

    b)

    &#xA;

    ffmpeg -i my_file.mp3 -af silenceremove=stop_periods=-1:stop_threshold=-50dB:stop_duration=0.71 tmp_0.71.mp3&#xA;

    &#xA;

    result :&#xA;First and second silences are removed, 3rd silence remains, but the duration becomes "0.72075"s

    &#xA;

    c)

    &#xA;

    ffmpeg -i my_file.mp3 -af silenceremove=stop_periods=-1:stop_threshold=-50dB:stop_duration=0.7 tmp_0.7.mp3&#xA;

    &#xA;

    result :&#xA;all 3 silence are removed

    &#xA;

    d) the edge case

    &#xA;

    this command still removes the second silence (after which the first silence become exactly as in point #4 and last silence becomes "0.721375")

    &#xA;

    ffmpeg -i my_file.mp3 -af silenceremove=stop_periods=-1:stop_threshold=-50dB:stop_duration=0.72335499999 tmp_0.72335499999.mp3&#xA;

    &#xA;

    but this one, again does not remove any silence :

    &#xA;

    ffmpeg -i my_file.mp3 -af silenceremove=stop_periods=-1:stop_threshold=-50dB:stop_duration=0.723355 tmp_0.723355.mp3&#xA;

    &#xA;

    e) window param case 0.03

    &#xA;

    ffmpeg -i my_file.mp3 -af silenceremove=stop_periods=-1:stop_threshold=-50dB:stop_duration=0.72:window=0.03 window_0.03.mp3&#xA;

    &#xA;

    does not remove any silence, but the detect silence

    &#xA;

    ffmpeg -i window_0.03.mp3 -af silencedetect=noise=-50dB:d=0.2 -f null -&#xA;

    &#xA;

    gives this result (compare with silences in result1.mp3 - from point #4 )

    &#xA;

    [mp3float @ 000001c5c8824280] overread, skip -5 enddists: -4 -4&#xA;[silencedetect @ 000001c5c883a040] silence_start: 6.21417&#xA;[silencedetect @ 000001c5c883a040] silence_end: 6.92462 | silence_duration: 0.710458&#xA;[mp3float @ 000001c5c8824280] overread, skip -7 enddists: -6 -6&#xA;[mp3float @ 000001c5c8824280] overread, skip -7 enddists: -2 -2&#xA;[silencedetect @ 000001c5c883a040] silence_start: 16.4424&#xA;[silencedetect @ 000001c5c883a040] silence_end: 17.1555 | silence_duration: 0.713167&#xA;[mp3float @ 000001c5c8824280] overread, skip -6 enddists: -1 -1&#xA;    Last message repeated 1 times&#xA;[silencedetect @ 000001c5c883a040] silence_start: 24.4508&#xA;size=N/A time=00:00:25.17 bitrate=N/A speed=1.24e&#x2B;03x&#xA;video:0kB audio:1180kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown&#xA;[silencedetect @ 000001c5c883a040] silence_end: 25.176 | silence_duration: 0.725167&#xA;

    &#xA;

    f) window case 0.01

    &#xA;

    ffmpeg -i my_file.mp3 -af silenceremove=stop_periods=-1:stop_threshold=-50dB:stop_duration=0.72:window=0.01 window_0.01.mp3&#xA;

    &#xA;

    removes first and second silences, the detect silence with same params has the following result

    &#xA;

    [mp3float @ 000001ea631d4280] overread, skip -5 enddists: -4 -4&#xA;    Last message repeated 1 times&#xA;[mp3float @ 000001ea631d4280] overread, skip -7 enddists: -2 -2&#xA;[mp3float @ 000001ea631d4280] overread, skip -6 enddists: -1 -1&#xA;    Last message repeated 1 times&#xA;[silencedetect @ 000001ea631ea1c0] silence_start: 23.0108&#xA;size=N/A time=00:00:23.73 bitrate=N/A speed=1.2e&#x2B;03x&#xA;video:0kB audio:1113kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown&#xA;[silencedetect @ 000001ea631ea1c0] silence_end: 23.736 | silence_duration: 0.725167&#xA;

    &#xA;


    &#xA;

    Any thoughts, ideas, points are much appreciated.

    &#xA;