git-svn-id: https://svn.salfter.gotdns.org/svn/tagger@124 1b90f75b-8b96-4784-87c0-14078182fce6
		
			
				
	
	
		
			31 lines
		
	
	
		
			626 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			626 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
| #ifndef _ID3MODIFY_H
 | |
| #define _ID3MODIFY_H
 | |
| 
 | |
| #include <iostream>
 | |
| #include <fstream>
 | |
| #include <unistd.h>
 | |
| 
 | |
| // taglib
 | |
| #include <tstring.h>
 | |
| #include <tlist.h>
 | |
| #include <mpegfile.h>
 | |
| #include <id3v1tag.h>
 | |
| #include <id3v2tag.h>
 | |
| #include <id3v2frame.h>
 | |
| #include <attachedpictureframe.h>
 | |
| #include <vorbisfile.h>
 | |
| #include <flacfile.h>
 | |
| #include <xiphcomment.h>
 | |
| 
 | |
| // mpeg4ip/faad2
 | |
| #include "mp4.h"
 | |
| 
 | |
| using namespace std;
 | |
| using namespace TagLib;
 | |
| 
 | |
| int modifytag (char* filename, char* title, char* artist, char* album,
 | |
| 			   char* tracknum, char* year, char* genre, char* comment,
 | |
| 			   char* imgfilename, int imgtype);
 | |
| 
 | |
| #endif // _ID3MODIFY_H
 |