removed apache tika; outline for audio metadata done;
This commit is contained in:
32
core/src/zero1hd/rhythmbullet/audio/AudioMetadata.java
Executable file
32
core/src/zero1hd/rhythmbullet/audio/AudioMetadata.java
Executable 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
|
||||
}
|
||||
|
||||
|
||||
}
|
Reference in New Issue
Block a user