Trying to figure out ffmpeg, currently working on getting 24bit/96khz FLAC files into 16bit/48khz.
ffmpeg FLAC 24 bit 96khz to 16 bit 48khz
27.8k Views Asked by Corey At
2
There are 2 best solutions below
0
Steve Kinney
On
As a bash script, that produces new files with -16 appended to their names; one could rename then delete the original files easily in the script but I'm a little too paranoid for that.
#!/bin/sh
# requires: ffmpeg
for f in *.flac;
do
echo "Processing $f"
ffmpeg -i "$f" -sample_fmt s16 -ar 48000 "${f%.flac}-16.flac"
done
Related Questions in AUDIO
- Play multiple audio files in a slider
- Unity3d AudioSource not creatable
- JavaFX can't play mp3 files
- iPhone simultaneous sound output
- Phonegap Build App - Play Audio
- HTML5 Audio pause not working
- Java boolean play button issue (play over and over again with each click)
- import a sound externally or from the library? AS3
- Set audio source
- Saving a sound bite as a ringtone
- Using OnAudioFilterRead with playOnAwake
- Audio recorded with Samsung does not play on iOS
- fftw of 16bit Audio :: peak appearing wrong at 2f
- How to Export an audio file with effect in iOS
- Tried multiple solutions onsite, none worked: Play <audio> on Konami code
Related Questions in FFMPEG
- Extract bytes of specific stream from mpegts file using ffmpeg
- running ffmpeg command in java Process hangs in waitFor()
- ffmpeg stream rtsp to mpegts
- Android receive RTP/UDP audio stream from VLC/ffmpeg
- error - /usr/bin/ld: cannot find -lavutil in ubuntu 15.04
- webcam displayed on LAN not to the internet
- ffserver - invalid codec name libvpx
- ffmpeg to extract a video one frame per second?
- how to extract audio from video in c using ffmpeg library?
- How to extract audio form video using ffmpeg in C++?
- ffmpeg to validate video format is genune and store error into string
- FFMPEG concat videos
- Why so many partial content requests in Firefox when streaming mp4 video on Apache?
- FFServer streaming H.264 from Logitech C920 without re-encoding
- Fragment shader does not show any colour when compiled with vs2013
Related Questions in BITRATE
- Adaptive Bitrate streaming in ios
- Bit-rate calculation in Jpeg2000 image compression
- ffmpeg FLAC 24 bit 96khz to 16 bit 48khz
- Finding characters per sec using asynchronous mode
- Determining the uncompressed bit-rate of a video
- What is the difference between baud rate and bit rate?
- Simulate video dissemination with different bitrate on the network
- How can I read the properties of an audio file in Objective-C for iOS?
- Does there exist any android api that returns mediafile bitrate, framerate etc?
- How to get Sampling rate and frequency of music file (MP3) in android?
- What exactly does bitrate mean in an video/audio file?
- How to change bitrate of a video using opencv python library
- How to determine .mp3 bit rate without downloading it?
- What is the correct way to set maxrate on android ffmpeg library?
- MPMoviePlayerController MovieAccessLogEvent - Inflated observedBitrate
Related Questions in FLAC
- How to convert AY music file to FLAC preserving metadata in Linux?
- play FLAC from resources of web server in HTML
- ffmpeg FLAC 24 bit 96khz to 16 bit 48khz
- .wav vs .flac format for short game sound effects
- Packging LEFT and RIGHT channel data
- Python 3.x: Extract front cover from FLAC file and save
- Java audio conversion fails, Unsupported conversion: FLAC from MPEG2L3 22050.0 Hz
- Metaflac outputs an hexdump instead of text
- Linux script to transfer (ID3) tags from FLAC to MP3
- How to get metadata info from Flac file using LibFlac
- Compiling Issue with SFBAudioEngine
- Is there any crossbrowser solution for playing flac? (or is it possible in theory to make one)
- How accurate is mutagen track length info
- Converting FLAC file collection to ALAC in another directory with shell script
- Out of ffmpeg and flac which should be used to convert wav files to flac? Why?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Basic example
ffmpeg -sample_fmtsffmpeg -h encoder=flacaresample filter example
Either example will result in the same output: you can verify with the hash muxer.
Changing the dithering method
See the
-dither_methodoption for a list of available dithering methods and additional resampling options. Example:SoX resampler
FFmpeg supports two resamplers: the default swresample library, and the external SoX resampler (soxr).
To use soxr your
ffmpegmust be compiled with--enable-libsoxr. Then choose it with the-resampleroption:Or use the aresample filter to do it all:
More info