Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (77)

  • 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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

  • ffmpeg volumn not work in complex filter

    6 février 2018, par rick lee

    "volumn" filter not work in complex filter.
    the audio that converted volumn is not affected.

    env : Mac OS 10.12.6

    ffmpeg -i /path/bg.mp3 -y -filter_complex [0:0]volume=0[output] -map
    [output] -acodec libmp3lame -write_xing 0 /path/mixed.mp3

    full log =====================================================================

    liqideMacBook-Pro:pinyin-api work$ ffmpeg -i
    /Users/work/dev/codebase/pinyin/pinyin-api/test/resources/bg_audio2.mp3
    -y -filter_complex [0:0]volume=0.1[output] -map [output] -acodec
    libmp3lame -f mp3 -write_xing 0 /Users/work/dev/codebase/pinyin/pinyin-
    api/test/resources/mixed3.mp3
    ffmpeg version 3.4.1 Copyright (c) 2000-2017 the FFmpeg developers
     built with Apple LLVM version 9.0.0 (clang-900.0.39.2)
     configuration: --prefix=/usr/local/Cellar/ffmpeg/3.4.1 --enable-
    shared --enable-pthreads --enable-version3 --enable-hardcoded-tables --
    enable-avresample --cc=clang --host-cflags= --host-ldflags= --enable-
    gpl --enable-libmp3lame --enable-libx264 --enable-libxvid --enable-
    opencl --enable-videotoolbox --disable-lzma
     libavutil      55. 78.100 / 55. 78.100
     libavcodec     57.107.100 / 57.107.100
     libavformat    57. 83.100 / 57. 83.100
     libavdevice    57. 10.100 / 57. 10.100
     libavfilter     6.107.100 /  6.107.100
     libavresample   3.  7.  0 /  3.  7.  0
     libswscale      4.  8.100 /  4.  8.100
     libswresample   2.  9.100 /  2.  9.100
     libpostproc    54.  7.100 / 54.  7.100
    Input #0, mp3, from '/Users/work/dev/codebase/pinyin/pinyin-
    api/test/resources/bg_audio2.mp3':
     Metadata:
       title           : 喜洋洋
       album           : 贺岁新年音乐会
       encoder         : Lavf56.4.101
     Duration: 00:02:43.58, start: 0.025057, bitrate: 128 kb/s
       Stream #0:0: Audio: mp3, 44100 Hz, stereo, s16p, 128 kb/s
    Stream mapping:
     Stream #0:0 (mp3) -> volume
     volume -> Stream #0:0 (libmp3lame)
    Press [q] to stop, [?] for help
    Output #0, mp3, to '/Users/work/dev/codebase/pinyin/pinyin-
    api/test/resources/mixed3.mp3':
     Metadata:
       TIT2            : 喜洋洋
       TALB            : 贺岁新年音乐会
       TSSE            : Lavf57.83.100
       Stream #0:0: Audio: mp3 (libmp3lame), 44100 Hz, stereo, fltp
       Metadata:
         encoder         : Lavc57.107.100 libmp3lame
    [libmp3lame @ 0x7fad80001a00] Trying to remove 1152 samples, but the
    queue is empty
    size=    2556kB time=00:02:43.57 bitrate= 128.0kbits/s speed=51.7x
    video:0kB audio:2556kB subtitle:0kB other streams:0kB global
    headers:0kB muxing overhead: 0.003782%
    liqideMacBook-Pro:pinyin-api work$

    =====================================================================

  • Anomalie #4086 (Nouveau) : Exception pour le proxy

    2 février 2018, par - Equipement

    Bonjour. Quand j’ajoute une exception pour le proxy (dans le menu [Configuration] / [Fonctions avancées]), j’ai constaté que certaines exceptions fonctionnent et que d’autres ne fonctionnent pas. Je précise que je renseigne une seule exception à la fois.

    Dans inc/distant.php, la fonction need_proxy effectue en particulier les tests suivants :

            and (strpos(" $http_noproxy ", " $host ") === false
                and (strpos(" $http_noproxy ", " $domain ") === false)))
    

    D’après php.net/manual/fr/function.strpos.php, la fonction strpos ( string $haystack , mixed $needle [, int $offset = 0 ] ) cherche la position numérique de la première occurrence de needle dans la chaîne de caractères haystack.

    Aussi, la fonction need_proxy semble chercher la position du host dans la chaîne http_noproxy (puis chercher la position du domaine dans la chaîne http_noproxy).

    En remplaçant le code précité, par le code ci-dessous, cela fonctionne à chaque exception testée :

            and (strpos($host, $http_noproxy) === false
                and (strpos($domain, $http_noproxy) === false)))
    

    Cordialement,
    Equipement

  • Get ffmpeg information in friendly way

    17 décembre 2020, par JBernardo

    Every time I try to get some information about my video files with ffmpeg, it pukes a lot of useless information mixed with good things.

    



    I'm using ffmpeg -i name_of_the_video.mpg.

    



    There are any possibilities to get that in a friendly way ? I mean JSON would be great (and even ugly XML is fine).

    



    By now, I made my application parse the data with regex but there are lots of nasty corners that appear on some specific video files. I fixed all that I encountered, but there may be more.

    



    I wanted something like :

    



    {
  "Stream 0": {
     "type": "Video",
     "codec": "h264",
     "resolution": "720x480"
  },
  "Stream 1": {
     "type": "Audio",
     "bitrate": "128 kbps",
     "channels": 2
  }
}