ffmpeg resample para flac cliques / ruído altos

1

Estou usando o ffmpeg para fazer uma nova amostra de um arquivo DSD para o Flac & mp3. Eu não tive nenhum problema com a resample mp3, mas com o flac resample sempre há um clique alto no final de uma faixa, como visto nesta imagem:

Estou usando um comando básico na linha de comando:

ffmpeg -i input.dsf -ar 192000 -acodec flac output.flac

Saída:

ffmpeg version 2.8.5 Copyright (c) 2000-2016 the FFmpeg developers
  built with Apple LLVM version 7.0.2 (clang-700.1.81)
  configuration: --prefix=/usr/local/Cellar/ffmpeg/2.8.5 --enable-shared --enable-pthreads --enable-gpl --enable-version3 --enable-hardcoded-tables --enable-avresample --cc=clang --host-cflags= --host-ldflags= --enable-opencl --enable-libx264 --enable-libmp3lame --enable-libvo-aacenc --enable-libxvid --enable-vda
  libavutil      54. 31.100 / 54. 31.100
  libavcodec     56. 60.100 / 56. 60.100
  libavformat    56. 40.101 / 56. 40.101
  libavdevice    56.  4.100 / 56.  4.100
  libavfilter     5. 40.101 /  5. 40.101
  libavresample   2.  1.  0 /  2.  1.  0
  libswscale      3.  1.101 /  3.  1.101
  libswresample   1.  2.101 /  1.  2.101
  libpostproc    53.  3.100 / 53.  3.100
[mjpeg @ 0x7fe617809000] Changeing bps to 8
[dsf @ 0x7fe617000000] Estimating duration from bitrate, this may be inaccurate
Input #0, dsf, from 'input.dsf':
  Metadata:
    title           : Bach Brandenburg no. 6 - Allegro
    artist          : Florilegium
    album           : Brandenburg Concertos
    track           : 3
    Tool Version    : 18.0.212
    genre           : Classical
    composer        : Bach
    Catalog #       : 35914
    Format          : DSD
    ISRC            : NLA460912792
    Label           : Channel Classics
    Tool Name       : Media Center
    date            : 2014
  Duration: 00:06:00.31, bitrate: 5644 kb/s
    Stream #0:0: Audio: dsd_lsbf_planar, 352800 Hz, stereo, fltp, 5644 kb/s
    Stream #0:1: Video: mjpeg, yuvj444p(pc, bt470bg/unknown/unknown), 1429x1417 [SAR 300:300 DAR 1429:1417], 90k tbr, 90k tbn, 90k tbc
    Metadata:
      title           : Picture
      comment         : Cover (front)
[flac @ 0x7fe617122000] encoding as 24 bits-per-sample
Output #0, flac, to 'output.flac':
  Metadata:
    title           : Bach Brandenburg no. 6 - Allegro
    artist          : Florilegium
    album           : Brandenburg Concertos
    TRACKNUMBER     : 3
    Tool Version    : 18.0.212
    genre           : Classical
    composer        : Bach
    Catalog #       : 35914
    Format          : DSD
    ISRC            : NLA460912792
    Label           : Channel Classics
    Tool Name       : Media Center
    date            : 2014
    encoder         : Lavf56.40.101
    Stream #0:0: Audio: flac, 192000 Hz, stereo, s32 (24 bit), 128 kb/s
    Metadata:
      encoder         : Lavc56.60.100 flac
Stream mapping:
  Stream #0:0 -> #0:0 (dsd_lsbf_planar (native) -> flac (native))
Press [q] to stop, [?] for help
size=  306541kB time=00:05:58.10 bitrate=7012.3kbits/s    
video:0kB audio:306532kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 0.002733%
    
por Sjoerd Staal 13.07.2017 / 17:51

1 resposta

0

Tente alterar -ar 192000 para -ar 176400 .

Também encontrei isso quando toco dsf com ffmpeg no meu iPhone. Quando eu configurei minha taxa de amostragem de saída (também conhecida como a taxa de reamostragem) para 48000, obtive o ruído de clique no final do áudio, mas quando altero a taxa de amostragem de saída para 44100, tudo está bem. Eu acho que isso é porque a amostra de amostra, porque a taxa de amostragem de dsd é medida por 44100, como dsd64 é 64 * 44100.

Apenas um pensamento, ainda não provado!

    
por 04.12.2017 / 02:08