id3 Questions

5

Solved

FFMPEG is really a great tool. I know it can edit ID3 tags and even remove all tags in a row : ffmpeg -i tagged.mp3 -map_metadata -1 untagged.mp3 But even after that, there's still the cover ima...
Gruel asked 25/11, 2013 at 12:26

3

Does AVRCP 1.3 support album art? Based on list of media attributes, album art is not included in the list. If AVRCP 1.3 do support album art, how do the information pass?
Petrolatum asked 1/7, 2013 at 12:11

3

Solved

Re-organizing a large MP3 library for my friend's MP3 Player, I have the need to name the Title ID3 tag the same as the file name, and doing this via Windows Properties takes forever, so I was wond...
Tun asked 2/11, 2012 at 1:32

7

Solved

What's a quick and easy way to view and edit ID3 tags (artist, album, etc.) using C#?
Keramic asked 16/9, 2008 at 0:40

10

How could I detect (preferably with Python) duplicate MP3 files that can be encoded with different bitrates (but they are the same song) and ID3 tags that can be incorrect? I know I can do an MD5 ...
Pardo asked 24/1, 2009 at 16:14

4

Solved

I'm reading in an id3 tag where the size of each frame is specified in 3 bytes. How would I be able to utilize this value as an int?
British asked 27/3, 2012 at 19:45

2

Solved

I get a lot of podcasts that have no ID3 tags in them. I've tried a number of tools that I could use to loop through directories and add title and artist info to the ID3 tags, but they fail. I've t...
Weisman asked 21/8, 2013 at 23:18

3

Lately, I've been trying to write a program that can change the ID3 tags of an mp3 file. I managed to write code to get those tags quite easily, but I have no idea how to write code to modify...
Ocelot asked 11/8, 2011 at 18:52

10

Solved

I am looking for the best or any way to set the Album Art of mp3s using PHP. Suggestions?
Subcontract asked 11/7, 2009 at 18:31

2

I convert FLAC to MP3 using ffmpeg -i x.flac -f mp3 -vn -b:a 64K x.mp3 and I add album art using ffmpeg -i x.mp3 -i x.jpg -map 0:0 -map 1:0 -c copy -id3v2_version 3 -metadata:s:v title="Album...
Scathe asked 19/7, 2014 at 13:5

5

Solved

Currently I'm working on a music project, dealing with user mp3 uploads. The problem is that I can't find an id3 library that will work correctly for all files. I have tried id3-ruby and Mp3Info l...
Balderas asked 9/6, 2009 at 21:9

4

Solved

I am working to change ID3 tags, the metadata in audio files, such as: Artist Title Album etc. And the core point,. that edited ID3 tags should be shown only into my app.
Emissary asked 14/3, 2012 at 18:5

1

I'm generating an audio file programmatically, and I'd like to add metadata to it, such as the title and artist. I don't particularly care what format the file is written in, as long as AVPlayer wi...
Ponytail asked 2/3, 2018 at 15:0

2

Solved

I have a list of audio URLs in a TableView, so every time I tapped on each cell on didSelectRowAt this method will be called func tableView(_ tableView: UITableView, didSelectRowAt indexPath: Inde...
Decor asked 5/4, 2018 at 2:41

1

Solved

So over the years between getting copied from one PC/hard drive to the next, my music collection is in a bit of a mess, so I want to go through each one programmatically and update the file m...
Fungal asked 25/7, 2017 at 8:55

3

Solved

What is the current status of TagLib# (TagLib sharp)? The official homepage www.taglib-sharp.com (link removed due to the NSFW nature of the new site that's parked at that address. -BtL) doesn't e...
Upanchor asked 11/1, 2009 at 17:46

1

Solved

I'm attempting to write a utility for inserting my own information against recorded videos, however it seems there isn't a library out there for accomplishing this. In my latest attempt at doing t...
Midgett asked 1/3, 2017 at 16:3

2

I need to extract ID3 tags and meta-data of remote mp3 files. I wrote few lines that could get ID3 tags of local file: from mutagen.mp3 import MP3 import urllib2 audio = MP3("Whistle.mp3") song...
Barthol asked 12/11, 2014 at 14:26

4

Solved

I have tried to find the file people are talking about namely php_id3.dll. I have read that you can install it with the id 3 on wamp but when i google it i get all sorts of scamsites. Does anyone ...
Wien asked 29/7, 2012 at 12:39

4

Solved

I would like to scan music files and read/write metadata using Elixir (this whole project is about learning Elixir - so please don't tell me to use Python!). As I understand it, I have two choices:...
Menorah asked 23/5, 2015 at 21:18

0

How do I parse timed_id3 values taken from a HLS stream chunk? Twitch stream chunks contain info like encoding time in a 3rd data stream that ffprobe identifies as timed_id3, the extracted data is...
Y asked 30/9, 2016 at 2:23

3

Solved

I'm trying to save new artist and title id3 tags into tracks. Loading tags from tracks working good, also editing title for track is working fine. But when i try to edit performer (artist) it didn'...
Oribelle asked 25/6, 2013 at 8:2

3

Solved

Based on the answer of ebidel, one can read id3v1 tags by using jDataView: document.querySelector('input[type="file"]').onchange = function (e) { var reader = new FileReader(); reader.onload = ...
Nf asked 26/11, 2013 at 9:8

3

Solved

I've been having quite a difficult time extracting ID3 information from an MP3 being streamed over Live HTTP Streaming (using the Wowza media server, if anyone is curious). I know that the tags (ri...

1

Solved

I'm looking for a way to modify ID3 tags with Swift. More specifically, I want to write the Album Art image to an mp3/m4a file. A Swift library would be the best, but I'll take anything that can ...
Nickolai asked 15/5, 2015 at 16:4

© 2022 - 2024 — McMap. All rights reserved.