mirror of
https://github.com/antebudimir/tempus.git
synced 2025-12-31 17:43:32 +00:00
Removed logs
This commit is contained in:
parent
88a7d509db
commit
8b44f8476f
1 changed files with 1 additions and 8 deletions
|
|
@ -79,20 +79,13 @@ public class Media implements Parcelable {
|
|||
this.path = child.getPath();
|
||||
this.size = child.getSize() != null ? child.getSize() : 0;
|
||||
this.container = child.getContentType();
|
||||
this.bitrate = child.getBitRate();
|
||||
this.bitrate = child.getBitRate() != null ? child.getBitRate() : 0;
|
||||
this.extension = child.getSuffix();
|
||||
this.added = child.getCreated().getTime();
|
||||
this.playCount = 0;
|
||||
this.lastPlay = 0;
|
||||
this.rating = child.getUserRating() != null ? child.getUserRating() : 0;
|
||||
this.type = child.getType();
|
||||
|
||||
Log.i(TAG, "Title: " + child.getTitle());
|
||||
Log.i(TAG, "ContentType: " + child.getContentType());
|
||||
Log.i(TAG, "Bitrate: " + child.getBitRate());
|
||||
Log.i(TAG, "Suffix: " + child.getSuffix());
|
||||
Log.i(TAG, "TranscodedContentType: " + child.getTranscodedContentType());
|
||||
Log.i(TAG, "TranscodedCSuffix: " + child.getTranscodedSuffix());
|
||||
}
|
||||
|
||||
public Media(PodcastEpisode podcastEpisode) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue