Recherche avancée

Médias (0)

Mot : - Tags -/utilisateurs

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

Autres articles (100)

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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (8070)

  • Merge commit '95f1004bdfdf2d26c330c1d4b7c4ac9352d60b18'

    20 mai 2017, par Clément Bœsch
    Merge commit '95f1004bdfdf2d26c330c1d4b7c4ac9352d60b18'
    

    * commit '95f1004bdfdf2d26c330c1d4b7c4ac9352d60b18' :
    dashenc : add mandatory id to AdaptationSet and Period in manifest

    Merged-by : Clément Bœsch <u@pkh.me>

    • [DH] libavformat/dashenc.c
  • MPEG-DASH MPD file not playing correctly

    24 juin 2017, par CMOS

    So I am working on generating a very simple MPD manifest file for my MPEG-DASH videos and I cannot figure out what is wrong. Here is my current manifest file

    &lt;?xml version="1.0" ?>
    <mpd xmlns="urn:mpeg:dash:schema:mpd:2011" minbuffertime="PT1.500S" type="static" mediapresentationduration="PT0H9M21.795S" maxsegmentduration="PT0H0M1.001S" profiles="urn:mpeg:dash:profile:isoff-on-demand:2011">
       <period>
           <baseurl>https://mysite/uploads/sources/resolution_640/bitrate_1400/</baseurl>
           <adaptationset mimetype="video/mp4">
               <contentcomponent contenttype="video"></contentcomponent>
               <representation bandwidth="1400000">
                 <segmentlist duration="119">
                   <initialization sourceurl="https://mysite/uploads/sources/resolution_640/bitrate_1400/640x360_1400Kpbs_0.mp4"></initialization>
                   <segmenturl media="https://mysite/uploads/sources/resolution_640/bitrate_1400/640x360_1400Kpbs_1.mp4"></segmenturl>
                   <segmenturl media="https://mysite/uploads/sources/resolution_640/bitrate_1400/640x360_1400Kpbs_2.mp4"></segmenturl>
                   <segmenturl media="https://mysite/uploads/sources/resolution_640/bitrate_1400/640x360_1400Kpbs_3.mp4"></segmenturl>
                 </segmentlist>
               </representation>
           </adaptationset>
       </period>
    </mpd>

    This MPD file validates using every validator I can find. The urls for the segments are obscured for security reasons but they are all open, public and viewable individually. But when I try to run the manifest file, depending on the player I get. "No supported source found within manifest" or simply nothing happens.

    Any idea how this could be wrong ? I am currently using media url’s as absolute paths but I have also tried paths relative to the BaseURL with no luck. Any info on how I can make a very simple MPEG-Dash manifest structure would be great. I am using FFMPEG to split my video up into 150 frame segments. Thanks !

  • How to detect the silence at the end of an audio file ?

    1er janvier 2024, par Ali Akber

    I am trying to detect silence at the end of an audio file.
    &#xA;I have made some progress with ffmpeg library. Here I used silencedetect to list all the silences in an audio file.

    &#xA;&#xA;

    ffmpeg -i audio.wav -af silencedetect=n=-50dB:d=0.5 -f null - 2> /home/aliakber/log.txt&#xA;

    &#xA;&#xA;

    Here is the output of the command :

    &#xA;&#xA;

    —With silence at the front and end of the audio file—

    &#xA;&#xA;

    [silencedetect @ 0x1043060] silence_start: 0.484979&#xA;[silencedetect @ 0x1043060] silence_end: 1.36898 | silence_duration: 0.884&#xA;[silencedetect @ 0x1043060] silence_start: 2.57298&#xA;[silencedetect @ 0x1043060] silence_end: 3.48098 | silence_duration: 0.908&#xA;[silencedetect @ 0x1043060] silence_start: 4.75698&#xA;size=N/A time=00:00:05.56 bitrate=N/A&#xA;

    &#xA;&#xA;

    —Without silence at the front and end of the audio file—

    &#xA;&#xA;

    [silencedetect @ 0x106fd60] silence_start: 0.353333&#xA;[silencedetect @ 0x106fd60] silence_end: 1.25867 | silence_duration: 0.905333&#xA;[silencedetect @ 0x106fd60] silence_start: 2.46533&#xA;[silencedetect @ 0x106fd60] silence_end: 3.37067 | silence_duration: 0.905333&#xA;size=N/A time=00:00:04.61 bitrate=N/A&#xA;

    &#xA;&#xA;

    But I want something more flexible so that I can manipulate the output and do further task depending on the result.
    &#xA;I want to get the output something like true or false. If there is a certain period of silence exists at the end of the audio file it will return true and false otherwise.

    &#xA;&#xA;

    Can someone suggest me an easy way to achieve this ?

    &#xA;