removed apache tika; outline for audio metadata done;

This commit is contained in:
2018-07-02 02:02:58 -05:00
parent 8f70d72ed1
commit 31bc3eb273
2 changed files with 32 additions and 1 deletions

View File

@@ -0,0 +1,32 @@
package zero1hd.rhythmbullet.audio;
import com.badlogic.gdx.files.FileHandle;
import com.badlogic.gdx.graphics.Texture;
import com.badlogic.gdx.utils.Disposable;
public class AudioMetadata implements Disposable {
private String author;
private String length;
private Texture albumCover;
private String lastPlayed;
private FileHandle fileHandle;
public AudioMetadata(FileHandle fileHandle) {
this.fileHandle = fileHandle;
}
public void loadAlbumCover() {
}
public void unloadAlbumCover() {
}
@Override
public void dispose() {
// TODO Auto-generated method stub
}
}