Skip to main content
Filter by
Sorted by
Tagged with
2 votes
1 answer
100 views

I am trying to learn how to use the FFmpeg libav* libraries but have encountered an issue when encoding to FLAC audio. Running FFmpeg 5.1.7 I have copied the transcoding.c example from https://www....
SomeGuy's user avatar
  • 31
4 votes
2 answers
133 views

Is FLAC decoded PCM guaranteed to start at the sample of an arbitrary seekpoint, if we fetch via HTTP range request from the seekpoints noted offset (on a fixed frame size e.g. 1024)? I encounter ...
Gabriel Wolf's user avatar
2 votes
1 answer
374 views

I have a userscript where I'd like to cache audio files from audio elements. fetch() isn't viable here as I have to wait for it to fetch to get a blob out of it. Is there a way to use the audio ...
SeetheMoar's user avatar
0 votes
1 answer
1k views

I have tons of small flac files, which I need to merge into tons of slightly bigger flac files, while also appending random silence at the beginning of each file. For example, I need to merge: a) ...
Artur's user avatar
  • 13
0 votes
1 answer
523 views

I'm a newby to web development and I'm stuck with retrieving metadata like Composer from FLAC audiofiles. I tried to extract this information with jsmediatags.js and musicmetadata.js in Chrome with ...
metusman's user avatar
0 votes
1 answer
195 views

I do have several audio files in a directory. In program.CS (vs2022 - Angular 14 with c# backend), I used static files or serverfiles to access the directory. The directory is set to be browseable ...
D052057's user avatar
  • 185
0 votes
1 answer
325 views

I have the following script on linux: arecord -t raw -f S16_LE -r 44100 -c 1 | split -d -b 882000 --filter='flac - -f --endian little --sign signed --channels 1 --bps 2 --sample-rate 44100 -s -o &...
frsalarcon's user avatar
0 votes
1 answer
1k views

The problem As per this post, I use the following command to convert a flac file to mp3 while keeping all metadata: ffmpeg -i input.flac -ab 320k -map_metadata 0 -id3v2_version 3 output.mp3 When ...
Clueless's user avatar
0 votes
1 answer
580 views

I am trying to get Twitter spaces audio (.ts) files into a format I can easily edit, on OSX. So far I was able to convert the files in bulk to .flac with this: for i in *.ts; do name=`echo "$i&...
Yan White's user avatar
0 votes
0 answers
1k views

I am trying to write a User-defined Model in C++ for FLAC in Visual Studio Express 2010 C++. Initially, I am trying to run (debug and build) the built-in Strain-softening Model based on the Mohr-...
Dipaloke's user avatar
3 votes
0 answers
2k views

I have a collection of .mp3 files that have a lot of metadata on them, and a collection of those same tracks as .flac files with no metadata. I'd like to be able to simply copy the metadata from an ....
Pete_Set's user avatar
0 votes
1 answer
1k views

ffprobe -hide_banner -loglevel panic -show_streams -of json 01e8adee-b0f9-4569-a5f5-b2d69d1f7088.flac output:- { "streams": [ { "index": 0, ...
Zahid M Shaikh's user avatar
2 votes
1 answer
2k views

I am trying to convert flac files to mp3 format, using pydub for conversion and mutagen for tags and album art copy. Convert a flac file to a 320Kbps mp3: from pydub import AudioSegment path_flac = '...
Chunpin's user avatar
  • 87
0 votes
1 answer
871 views

Every one of my music folders are set up like Artist > Year Album > Track 01.flac Track 02.flac Track 03.flac folder.jpg, jpeg, png, etc And what I need to do is if folder.* is available. if [ -...
satanobsidian's user avatar
0 votes
1 answer
4k views

I have an album of flac files, but track 15 appears to be broken or corrupted, it wont play in vlc media player on my windows 10 computer, and I have tried importing it to Audacity but with no luck. ...
Martin's user avatar
  • 1,582
1 vote
0 answers
327 views

I'm trying to code a media player to learn and practice Python, what I'm currently trying to do is to display the cover of the FLAC file in a window and manage to do so seperatedly from the media ...
Abraham Márquez's user avatar
5 votes
2 answers
5k views

Some software uses audio/flac. Some uses audio/x-flac. MDN suggests that x-flac is "non-standard". But based on what? But this appears to be the official registry for audio/ types... and ...
jrochkind's user avatar
  • 23.4k
6 votes
1 answer
2k views

I am using the following command to cut a FLAC file: ffmpeg -i input.flac -ss 10s -t 10s -c copy output.flac output.flac contains the correct duration of audio. However, all media players show its ...
George Tian's user avatar
0 votes
1 answer
592 views

I would like write an simple (only one exe) music player. The player is work if I want play mp3, but didn't work if I want use MadFLAC Filter. I can't connect of the MadFLAC pins. Always drop ...
Zserigta's user avatar
0 votes
1 answer
2k views

I'm converting .flac and .mp3 audio files to .m4a using ffmpeg with libfdk_aac (Fraunhofer AAC encoder) like this: ffmpeg -i "001.flac" -c:a libfdk_aac "001.m4a" This works fine, ...
Rumpl's user avatar
  • 343
0 votes
1 answer
2k views

I have created a HLS stream from a FLAC file with an output of FLAC using the following command: ffmpeg -i 10-brass-in-pocket.flac -map 0:a -c:a:0 flac -f hls -hls_playlist_type vod -master_pl_name ...
Myles McDonnell's user avatar
1 vote
1 answer
392 views

I have a FLAC audio file that I want to slice into 5 second segments. I don't need to resample or change the data in any way. What tools/libraries are there for this? Should I be looking at ffmpeg? ...
Myles McDonnell's user avatar
1 vote
4 answers
573 views

Thanks for accepting me :) I'm making a project to order a lot of album of my collection and I'm classifying the albums by their complete length, currently I am doing it manually but it is quite ...
javier's user avatar
  • 11
2 votes
1 answer
5k views

Is there a command to tell me what type of metadata container is using a file? Something like: command myfile.flac saying: vorbis comment or id3v2.
Izaya's user avatar
  • 1,598
2 votes
0 answers
544 views

I converted a wav file into several .flac chunks to play with Media Source Extensions (MSE) in the browser. I used ffmpeg and the following command to generate de chunks: ffmpeg -i long_input_44100....
Sergio's user avatar
  • 28.9k

1
2 3 4 5