id3

C# how to read things like ID3 tag for a video files [closed]

血红的双手。 提交于 2019-12-08 18:40:29
Closed . This question needs to be more focused . It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post . Closed 11 months ago . I was wondering if there anyway to read things like ID3 tag for a video file? Sultan Check out TaglibSharp http://www.novell.com/products/linuxpackages/opensuse11.1/taglib-sharp.html Try to use taglib-sharp.dll may help. 来源: https://stackoverflow.com/questions/4411519/c-sharp-how-to-read-things-like-id3-tag-for-a-video-files

How do you Edit Video ID3v2 Tags in Java

偶尔善良 提交于 2019-12-08 10:02:46
问题 I have been doing some research on ID3V2 tags and Video Formats such as MP4 and WMV. The two top libraries for editing ID3V2 tags seem to be: Entagged and Jaudiotagger Both of these support only audio formats. ( They support M4A and WMA but not MP4 and WMV ) I guess first off why is this? Then are they any alternatives. 回答1: It appears JID3 will do the trick. It doesn't have any restrictions on extension. http://jid3.blinkenlights.org/ Now hopefully someone finds this open-source project a

python id3 tag unicode

一笑奈何 提交于 2019-12-08 10:00:46
问题 I have a mp3 with my artist tag in russian. All english meta data prints normally but the russian shows up as question marks. How can I force the module to use unicode or utf8 encoding? python from ID3 import * import glob import re import os for name in glob.glob('*.mp3'): id3info = ID3(name) print id3info I am using this library: http://id3-py.sourceforge.net/ 回答1: You can't do Unicode in ID3v1, and that module only does ID3v1 (and it doesn't even do it correctly). If you're explicitly

ruby reading files from S3 with open-URI

时光总嘲笑我的痴心妄想 提交于 2019-12-08 07:31:04
问题 I'm having some problems reading a file from S3. I want to be able to load the ID3 tags remotely, but using open-URI doesn't work, it gives me the following error: ruby-1.8.7-p302 > c=TagLib2::File.new(open(URI.parse("http://recordtemple.com.s3.amazonaws.com/music/745/original/The%20Stranger.mp3?1292096514"))) TypeError: can't convert Tempfile into String from (irb):8:in `initialize' from (irb):8:in `new' from (irb):8 However, if i download the same file and put it on my desktop (ie no need

Trouble playing mp3s after id3 image edit

故事扮演 提交于 2019-12-08 01:57:22
问题 Due to hardware restrictions, the software we produce tries to ensure that any audio file it imports into it's library (ready to be copied onto the hardware) is an acceptable bit rate. Recently we've started using FFmpeg to convert a number of different audio types to mp3 to allow them to be imported and used on our hardware. Whilst the conversion works fine and the mp3 files work on our hardware afterwards, we're having issues specifically when adding an album art to the ID3 tags of the mp3.

taglib : how to edit Album Artist?

混江龙づ霸主 提交于 2019-12-07 10:33:44
How to modify the "Album Artist" field of a MP3 file with the library TagLib ? Is there something similar to : f.tag()->setArtist("blabla"); ? scotchi ID3v2 doesn't actually support a field called "album artist". iTunes uses the TPE2 frame, which is supposed to be: TPE2 The 'Band/Orchestra/Accompaniment' frame is used for additional information about the performers in the recording. For a complete list of frames see http://id3.org/id3v2.3.0#Declared_ID3v2_frames . To write that with TagLib, this would do the trick: #include <mpegfile.h> #include <id3v2tag.h> #include <textidentificationframe.h

Ripping a CD to mp3 in C# - third party component or api out there?

蹲街弑〆低调 提交于 2019-12-07 03:36:00
问题 We're working on a project that requires the ripping of audio tracks from CDs to MP3s (ideally also retrieving the track information from CDDB or similar). More background information: Various music labels send us CDs of music which we then deliver to people via an online delivery system. We're looking at automating the process of converting those CDs into MP3s with full track information where possible. We want to produce a simple desktop application that allows a member of editorial staff

Python - Add ID3 tags to mp3 file that has NO tags

杀马特。学长 韩版系。学妹 提交于 2019-12-06 19:44:23
问题 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 tried ID3, eyed3 and mutagen. Most of the time if a file has no ID3 tag these modules fail. Can someone recommend a good ID3 tag editor library that will work through loops? What else do I need to know about editing/adding ID3 tags when they're 100% blank? It's getting frustrating trying library

TagLib# Windows distribution? Or another good ID3 reader?

偶尔善良 提交于 2019-12-06 15:16:14
问题 I wanted to write a quick program to get the file organization of my MP3 files back into sync with the info in my ID3 tags... I had tried to get the Windows Media Format SDK, but when I go to install it says it can only run on WinXP. I found someone on here suggest TagLib#, which looked REALLY good, from the code examples. Problem is it seems the official site is gone, and the other links I've found to a hosting on Novell's servers is also down. Anyone know where I can still get a distro of

Reading id3v2 frames with TagLib in Powershell

醉酒当歌 提交于 2019-12-06 07:35:05
I'm trying to read a file's id3v2 tag information using the TagLib# library with Powershell. Reading the standard tag properties is not a problem (artist, title etc.), but I'm having difficulty figuring out how to read the ID3v2 frames (specifically the COMMENT). Can anyone provide a simple example as to how to accomplish this? Documentation on this is scarce it seems. This seems to work for me - could you please clarify your question with what isn't working? # load the TagLib# assembly into PowerShell [Reflection.Assembly]::LoadFrom("C:\taglib-sharp.dll") # grab the MP3 file with TagLib $file