簡體   English   中英

如何更新默認歌曲元數據?

[英]How to update the default song metadata?

我想更新曲目,專輯,流派,藝術家和歌曲封面圖像(如Musicmatch)的歌曲元數據字段。

我試圖尋找更新元的代碼找不到任何解決方案。

您的問題不是問題,也沒有詳細說明。 但我可以從Google示例中給您提供一個出色的Media Player,該示例名為UAMP(通用Android Media Player),它可以處理有關Android Media Player的所有內容。 鏈接

UAMP使用MediaMetadataCompat更新歌曲元數據,如下面的代碼段所示。

fun MediaMetadataCompat.Builder.from(jsonMusic: JsonMusic): MediaMetadataCompat.Builder {
// The duration from the JSON is given in seconds, but the rest of the code works in
// milliseconds. Here's where we convert to the proper units.
val durationMs = TimeUnit.SECONDS.toMillis(jsonMusic.duration)

id = jsonMusic.id
title = jsonMusic.title
artist = jsonMusic.artist
album = jsonMusic.album
duration = durationMs
genre = jsonMusic.genre
mediaUri = jsonMusic.source
albumArtUri = jsonMusic.image
trackNumber = jsonMusic.trackNumber
trackCount = jsonMusic.totalTrackCount
flag = MediaItem.FLAG_PLAYABLE

// To make things easier for *displaying* these, set the display properties as well.
displayTitle = jsonMusic.title
displaySubtitle = jsonMusic.artist
displayDescription = jsonMusic.album
displayIconUri = jsonMusic.image

// Add downloadStatus to force the creation of an "extras" bundle in the resulting
// MediaMetadataCompat object. This is needed to send accurate metadata to the
// media session during updates.
downloadStatus = STATUS_NOT_DOWNLOADED

// Allow it to be used in the typical builder style.
return this

}

通過此組件,您可以在通知,鎖定屏幕和主屏幕中更新歌曲數據。

要更新歌曲的元數據,我們可以使用ID3標簽進行。 我們可以更新這些使用Mp3Tag編輯器- https://github.com/aminb/id3r ,MyID3()編輯器- https://github.com/ericfarng/jid3lib和Jaudiotagger - https://github.com/Adonai/jaudiotagger

Mp3Tag編輯器-僅支持Mp3歌曲類型MyID3編輯器-可以輕松編輯歌曲,但未更新提供的所有字段Jaudiotagger-支持Mp3,Flac,OggVorbis,Mp4,Aiff,Wav,Wma,Dsf音頻格式它更新了數據而沒有任何問題

try {
      val audioFile = AudioFileIO.read(file)
            val tag = audioFile?.tagOrCreateAndSetDefault
             tag?.setField(FieldKey.ARTIST, binding?.tiArtist?.text?.toString())
            tag?.setField(FieldKey.ALBUM, binding?.tiAlbum?.text?.toString())
            tag?.setField(FieldKey.GENRE, binding?.tiGenre?.text?.toString())
            tag?.setField(FieldKey.TITLE, binding?.tiTrack?.text?.toString())

            // Handle the image setting
            try {
                    val pfd = contentResolver.openFileDescriptor(imageUri, "r") ?: return

                    val fis = FileInputStream(pfd.fileDescriptor)
                    val imgBytes = JavaUtils.readFully(fis)
                    val cover = AndroidArtwork()
                    cover.binaryData = imgBytes
                    cover.mimeType = ImageFormats.getMimeTypeForBinarySignature(byteArray)
                    cover.description = ""
                    cover.pictureType = PictureTypes.DEFAULT_ID
                    tag?.deleteArtworkField()
                    tag?.setField(cover)
                    fis.close()

              // to do check the file write option for both internal and external card
             // Handle the Storage Access FrameWork API if song is from SD card
            if (audioFile?.file?.let { SafUtils.isSafNeeded(it, this) } == true) {
              // Handle writing into SD card
              // Check if SAF permission is provided then only we can update metadata 
             // If SAF Permission is not provided. EACCESS : Permission Denied error is displayed 
            // After the permission success then only we can update meta.
                 writeIntoSDCard()
            } else {
                // Handle writing into internal card
                writeInInternalStorage()
            }
         } catch (e: Exception) { }
        } catch (e: Exception) {
            // Show error on failure while writing
        } catch (e: Error) {
            // Show error on failure while writing
        }      

編寫元數據

// After update refresh the file else the changes will not be reflected
AudioFileIO.write(audioFile)
MediaScannerConnection.scanFile(context, arrayOf(file?.absolutePath ?: ""), null, null)

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM