Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (60)

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

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

  • Ffmpeg used to slow down mp3. Some audio players get length wrong [closed]

    14 août 2023, par AlanFRCPath

    I have used ffmpeg to slow down an audio file using :

    


    ffmpeg -i input.mp3 -filter:a "atempo=0.8" -vn output.mp3

    


    It produces a 45'55" output from a 36'44" input as expected.

    


    In linux mplayer shows the output file as 45'55" as does ffprobe but XMMS shows it as double at 91'10". The audioplayer in my car which plays mp3 files on USB keys also misreads it length.

    


    Can anyone provide some insight into what is going on here ?

    


  • vaapi_encode_h265 : Reduce SAR to valid range

    28 octobre 2018, par Mark Thompson
    vaapi_encode_h265 : Reduce SAR to valid range
    

    Matching previous commit for H.264.

    • [DH] libavcodec/vaapi_encode_h265.c
  • Is it possible to encode an audio stream with the exact length (to millisecond) ?

    27 avril 2019, par v010dya

    I am looking to create an output file with a length exactly 30 seconds in either mp3, aac, or vorbis codecs. I have used avconv (and also tried ffmpeg) with the following command :

    avconv  -i input_file_here -c:a aac -b:a 320k -t 30 out.mp4

    This produces the output, stating that it has encoded exactly 30 seconds, but then :

    $ avprobe out.mp4
    avprobe version v13_dev0-1648-gc4642788e, Copyright (c) 2007-2018 the Libav developers
     built on Apr 24 2019 15:49:35 with gcc 7 (Ubuntu 7.3.0-27ubuntu1~18.04)
    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'out.mp4':
     Metadata:
       major_brand     : isom
       minor_version   : 512
       compatible_brands: isomiso2mp41
       encoder         : Lavf57.83.100
     Duration: 00:00:30.02, start: 0.023220, bitrate: 323 kb/s
       Stream #0:0(und): Audio: aac (LC) [mp4a / 0x6134706D]
         44100 Hz, stereo, fltp, 321 kb/s (default)
       Metadata:
         handler_name    : SoundHandler
    # avprobe output

    When i encode in mp3 it correctly displays that it does more than 30 seconds during the encoding. When i try vorbis it does slightly less than 30 seconds.

    Is it possible to achieve the length of 30 seconds to the millisecond using any tool (i prefer either avconv).