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...
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?
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...
7
Solved
What's a quick and easy way to view and edit ID3 tags (artist, album, etc.) using C#?
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?
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...
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...
10
Solved
I am looking for the best or any way to set the Album Art of mp3s using PHP.
Suggestions?
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...
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...
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...
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...
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:...
0
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...
Venn asked 23/2, 2011 at 0:17
1 Next >
© 2022 - 2024 — McMap. All rights reserved.