[6.10.0]
[fea] [音乐、媒体信息分离车型]
This commit is contained in:
@@ -42,6 +42,7 @@ import com.mogo.och.common.module.manager.loop.BizLoopManager
|
|||||||
//import com.mogo.och.bridge.utils.CoordinateCalculateRouteUtil
|
//import com.mogo.och.bridge.utils.CoordinateCalculateRouteUtil
|
||||||
//import com.mogo.och.bridge.utils.CoordinateCalculateRouteUtil
|
//import com.mogo.och.bridge.utils.CoordinateCalculateRouteUtil
|
||||||
import com.mogo.och.common.module.view.DebugFloatWindow
|
import com.mogo.och.common.module.view.DebugFloatWindow
|
||||||
|
import com.mogo.och.common.module.wigets.media.MediaBeanManager
|
||||||
import com.zhjt.mogo.adas.data.bean.AutopilotStatistics
|
import com.zhjt.mogo.adas.data.bean.AutopilotStatistics
|
||||||
import mogo.telematics.pad.MessagePad
|
import mogo.telematics.pad.MessagePad
|
||||||
import mogo_msg.MogoReportMsg
|
import mogo_msg.MogoReportMsg
|
||||||
@@ -71,6 +72,7 @@ object DebugDataDispatch {
|
|||||||
const val scanner = "scanner"
|
const val scanner = "scanner"
|
||||||
const val ota = "ota"
|
const val ota = "ota"
|
||||||
const val video = "video"
|
const val video = "video"
|
||||||
|
const val mediaMusic = "mediaAndMusic"
|
||||||
|
|
||||||
// adb shell am broadcast -a com.mogo.launcher.debug -f 0x011000000 --es type "location" --es path "1111/11111"
|
// adb shell am broadcast -a com.mogo.launcher.debug -f 0x011000000 --es type "location" --es path "1111/11111"
|
||||||
// adb shell am broadcast -a com.mogo.launcher.debug -f 0x011000000 --es type "globalPath" --es path "sy73.json"
|
// adb shell am broadcast -a com.mogo.launcher.debug -f 0x011000000 --es type "globalPath" --es path "sy73.json"
|
||||||
@@ -100,6 +102,11 @@ object DebugDataDispatch {
|
|||||||
|
|
||||||
}
|
}
|
||||||
when (type) {
|
when (type) {
|
||||||
|
mediaMusic -> {
|
||||||
|
val musicList = MediaBeanManager.getMusicList()
|
||||||
|
val mediaList = MediaBeanManager.getMediaList()
|
||||||
|
CallerLogger.d(TAG,"${mediaList}\n${musicList}")
|
||||||
|
}
|
||||||
video -> {
|
video -> {
|
||||||
val ota = intent.getIntExtra("video",0)
|
val ota = intent.getIntExtra("video",0)
|
||||||
// rtmp://video.zhidaozhixing.com/live/861130041693196C_2
|
// rtmp://video.zhidaozhixing.com/live/861130041693196C_2
|
||||||
|
|||||||
@@ -5,18 +5,16 @@ import android.media.MediaFormat
|
|||||||
import android.net.Uri
|
import android.net.Uri
|
||||||
import android.os.Environment
|
import android.os.Environment
|
||||||
import android.text.TextUtils
|
import android.text.TextUtils
|
||||||
import com.google.gson.reflect.TypeToken
|
|
||||||
import com.mogo.commons.AbsMogoApplication
|
import com.mogo.commons.AbsMogoApplication
|
||||||
import com.mogo.eagle.core.data.config.FunctionBuildConfig
|
|
||||||
import com.mogo.eagle.core.utilcode.download.DownloadUtils
|
import com.mogo.eagle.core.utilcode.download.DownloadUtils
|
||||||
import com.mogo.eagle.core.utilcode.download.callback.IDownloadListener
|
import com.mogo.eagle.core.utilcode.download.callback.IDownloadListener
|
||||||
import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger
|
import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger
|
||||||
import com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant.Companion.M_OCHCOMMON
|
import com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant.Companion.M_OCHCOMMON
|
||||||
import com.mogo.eagle.core.utilcode.util.GsonUtils
|
|
||||||
import com.mogo.eagle.core.utilcode.util.ThreadUtils
|
import com.mogo.eagle.core.utilcode.util.ThreadUtils
|
||||||
import com.mogo.och.common.module.manager.logchainanalytic.OchChainLogManager
|
import com.mogo.och.common.module.manager.logchainanalytic.OchChainLogManager
|
||||||
import com.mogo.och.common.module.manager.logchainanalytic.OchChainLogManager.EVENT_KEY_INFE_WITH_MUSIC
|
import com.mogo.och.common.module.manager.logchainanalytic.OchChainLogManager.EVENT_KEY_INFE_WITH_MUSIC
|
||||||
import com.mogo.och.common.module.utils.FileUtils
|
import com.mogo.och.common.module.utils.FileUtils
|
||||||
|
import com.mogo.och.common.module.wigets.media.MediaBeanManager
|
||||||
import com.mogo.och.common.module.wigets.media.MediaPlayLogger
|
import com.mogo.och.common.module.wigets.media.MediaPlayLogger
|
||||||
import java.io.File
|
import java.io.File
|
||||||
import java.io.FileOutputStream
|
import java.io.FileOutputStream
|
||||||
@@ -40,10 +38,7 @@ object AuditionCacheManager {
|
|||||||
ThreadUtils.getIoPool().execute {
|
ThreadUtils.getIoPool().execute {
|
||||||
val localAdDataList = mutableListOf<MusicData>()
|
val localAdDataList = mutableListOf<MusicData>()
|
||||||
try {
|
try {
|
||||||
val datas: MusicDataList = GsonUtils.fromJson(
|
localAdDataList.addAll(MediaBeanManager.getMusicList())
|
||||||
FunctionBuildConfig.musicUrlConfig, object : TypeToken<MusicDataList>() {}.type
|
|
||||||
)
|
|
||||||
localAdDataList.addAll(datas.musics)
|
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
e.printStackTrace()
|
e.printStackTrace()
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +1,5 @@
|
|||||||
package com.mogo.och.common.module.manager.audition
|
package com.mogo.och.common.module.manager.audition
|
||||||
|
|
||||||
|
|
||||||
data class MusicDataList(val musics: MutableList<MusicData>)
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 音乐文件
|
* 音乐文件
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -1,14 +1,106 @@
|
|||||||
package com.mogo.och.common.module.wigets.media
|
package com.mogo.och.common.module.wigets.media
|
||||||
|
|
||||||
data class MediaDataList(val medias: MutableList<MediaItem>)
|
import com.google.gson.reflect.TypeToken
|
||||||
|
import com.mogo.eagle.core.data.config.FunctionBuildConfig
|
||||||
|
import com.mogo.eagle.core.utilcode.mogo.AppIdentityModeUtils
|
||||||
|
import com.mogo.eagle.core.utilcode.mogo.Vehicle
|
||||||
|
import com.mogo.eagle.core.utilcode.util.GsonUtils
|
||||||
|
import com.mogo.och.common.module.manager.audition.MusicData
|
||||||
|
|
||||||
|
object MediaBeanManager {
|
||||||
|
|
||||||
|
private var datasGlobal: MediaDataWithVehicle? = null
|
||||||
|
|
||||||
|
fun getMusicList(): MutableList<MusicData> {
|
||||||
|
if (datasGlobal == null) {
|
||||||
|
datasGlobal = GsonUtils.fromJson(
|
||||||
|
FunctionBuildConfig.mediaUrlConfig,
|
||||||
|
object : TypeToken<MediaDataWithVehicle?>() {}.type
|
||||||
|
)
|
||||||
|
}
|
||||||
|
return when (AppIdentityModeUtils.getVehicle(FunctionBuildConfig.appIdentityMode)) {
|
||||||
|
Vehicle.T1T2 -> {
|
||||||
|
datasGlobal?.T1T2?.musics?:mutableListOf()
|
||||||
|
}
|
||||||
|
|
||||||
|
Vehicle.B1 -> {
|
||||||
|
datasGlobal?.B1?.musics?:mutableListOf()
|
||||||
|
}
|
||||||
|
|
||||||
|
Vehicle.B2 -> {
|
||||||
|
datasGlobal?.B1?.musics?:mutableListOf()
|
||||||
|
}
|
||||||
|
|
||||||
|
Vehicle.M1 -> {
|
||||||
|
datasGlobal?.M1?.musics?:mutableListOf()
|
||||||
|
}
|
||||||
|
|
||||||
|
else -> {
|
||||||
|
mutableListOf()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun getMediaList(): MutableList<MediaItem> {
|
||||||
|
if (datasGlobal == null) {
|
||||||
|
datasGlobal = GsonUtils.fromJson(
|
||||||
|
FunctionBuildConfig.mediaUrlConfig,
|
||||||
|
object : TypeToken<MediaDataWithVehicle?>() {}.type
|
||||||
|
)
|
||||||
|
}
|
||||||
|
return when (AppIdentityModeUtils.getVehicle(FunctionBuildConfig.appIdentityMode)) {
|
||||||
|
Vehicle.T1T2 -> {
|
||||||
|
datasGlobal?.T1T2?.medias?:mutableListOf()
|
||||||
|
}
|
||||||
|
|
||||||
|
Vehicle.B1 -> {
|
||||||
|
datasGlobal?.B1?.medias?:mutableListOf()
|
||||||
|
}
|
||||||
|
|
||||||
|
Vehicle.B2 -> {
|
||||||
|
datasGlobal?.B1?.medias?:mutableListOf()
|
||||||
|
}
|
||||||
|
|
||||||
|
Vehicle.M1 -> {
|
||||||
|
datasGlobal?.M1?.medias?:mutableListOf()
|
||||||
|
}
|
||||||
|
|
||||||
|
else -> {
|
||||||
|
mutableListOf()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
data class MediaDataWithVehicleList(val musicDataWithEnvList: MutableList<MediaDataWithVehicle>) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
data class MediaDataWithVehicle(
|
||||||
|
val B1: B1,
|
||||||
|
val B2: B2,
|
||||||
|
val T1T2: T1T2,
|
||||||
|
val M1: M1,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
data class B1(val medias: MutableList<MediaItem>, val musics: MutableList<MusicData>)
|
||||||
|
data class B2(val medias: MutableList<MediaItem>, val musics: MutableList<MusicData>)
|
||||||
|
data class T1T2(val medias: MutableList<MediaItem>, val musics: MutableList<MusicData>)
|
||||||
|
data class M1(val medias: MutableList<MediaItem>, val musics: MutableList<MusicData>)
|
||||||
|
|
||||||
|
data class MediaBean(
|
||||||
|
val medias: MutableList<MediaItem>,
|
||||||
|
val musics: MutableList<MusicData>,
|
||||||
|
)
|
||||||
|
|
||||||
data class MediaItem(
|
data class MediaItem(
|
||||||
var priority:Int,
|
var priority: Int,
|
||||||
var fileUrl: String,
|
var fileUrl: String,
|
||||||
var fileType: Int,
|
var fileType: Int,
|
||||||
var coverImageUrl: String,
|
var coverImageUrl: String,
|
||||||
var title: String,
|
var title: String,
|
||||||
val isTemp:Boolean = false
|
val isTemp: Boolean = false
|
||||||
) {
|
) {
|
||||||
companion object {
|
companion object {
|
||||||
const val MEDIA_TYPE_IMAGE = 1
|
const val MEDIA_TYPE_IMAGE = 1
|
||||||
|
|||||||
@@ -195,10 +195,7 @@ object MediaDataSourceManager {
|
|||||||
private fun getMediaDataFromLocalConfig(): List<MediaItem> {
|
private fun getMediaDataFromLocalConfig(): List<MediaItem> {
|
||||||
val localAdDataList = mutableListOf<MediaItem>()
|
val localAdDataList = mutableListOf<MediaItem>()
|
||||||
try {
|
try {
|
||||||
val datas: MediaDataList = GsonUtils.fromJson(
|
localAdDataList.addAll(MediaBeanManager.getMediaList())
|
||||||
FunctionBuildConfig.mediaUrlConfig, object : TypeToken<MediaDataList>() {}.type
|
|
||||||
)
|
|
||||||
localAdDataList.addAll(datas.medias)
|
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
e.printStackTrace()
|
e.printStackTrace()
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"mogo": {
|
"mogo": {
|
||||||
"b1passenger": {
|
"B1": {
|
||||||
"medias": [
|
"medias": [
|
||||||
{
|
{
|
||||||
"fileUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1676357256102/1.jpg",
|
"fileUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1676357256102/1.jpg",
|
||||||
@@ -74,7 +74,7 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"b2passenger": {
|
"B2": {
|
||||||
"medias": [
|
"medias": [
|
||||||
{
|
{
|
||||||
"fileUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1681716116231/6923474a99a1983c9a0410ad3357888d.mov",
|
"fileUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1681716116231/6923474a99a1983c9a0410ad3357888d.mov",
|
||||||
@@ -92,7 +92,7 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"t1t2passengeroch": {
|
"T1T2": {
|
||||||
"medias": [
|
"medias": [
|
||||||
{
|
{
|
||||||
"fileUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1655708499497/大运会合作解说版.m4v",
|
"fileUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1655708499497/大运会合作解说版.m4v",
|
||||||
@@ -122,9 +122,131 @@
|
|||||||
"priority": 2,
|
"priority": 2,
|
||||||
"title": "多视角体验蘑菇车联自动驾驶"
|
"title": "多视角体验蘑菇车联自动驾驶"
|
||||||
}
|
}
|
||||||
|
],
|
||||||
|
"musics": [
|
||||||
|
{
|
||||||
|
"id": "1",
|
||||||
|
"md5": "C24399007B8DBAAEAA6EF448A25393CE",
|
||||||
|
"songName": "钢琴曲",
|
||||||
|
"songUrl": "android.resource://com.mogo.launcher.f/raw/piano_music.mp3",
|
||||||
|
"songUrlType": "local",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332930796/taxt_p_music_head_05.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718213773/taxt_p_music_bottom_05.png",
|
||||||
|
"tag": [
|
||||||
|
"放松"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "2",
|
||||||
|
"md5": "ECA45497D915E0B933E45B5A5411B30E",
|
||||||
|
"songName": "唯美的梦",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523329643/beautiful_dream.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332917335/taxt_p_music_head_04.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718199388/taxt_p_music_bottom_04.png",
|
||||||
|
"tag": [
|
||||||
|
"放松"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "3",
|
||||||
|
"md5": "8FA0DE702443CD05BCA6DB1B7E6BE036",
|
||||||
|
"songName": "有趣的时光",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523382842/fun_times.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332904487/taxt_p_music_head_03.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718184532/taxt_p_music_bottom_03.png",
|
||||||
|
"tag": [
|
||||||
|
"欢快"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "4",
|
||||||
|
"md5": "FB1EF41BC69216AAA90323F3FBABDDDF",
|
||||||
|
"songName": "游乐场",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523484705/playground_fun.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332890890/taxt_p_music_head_02.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718167794/taxt_p_music_bottom_02.png",
|
||||||
|
"tag": [
|
||||||
|
"欢快"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "5",
|
||||||
|
"md5": "B721B4FBAE2D472F875A3A539135337A",
|
||||||
|
"songName": "鼓舞我",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523537118/uplift_me.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332876104/taxt_p_music_head_01.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718149545/taxt_p_music_bottom_01.png",
|
||||||
|
"tag": [
|
||||||
|
"动感"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "6",
|
||||||
|
"md5": "836B99E70B7BC5C2283D602DF60F45F2",
|
||||||
|
"songName": "假日乐趣",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523604653/summer_fun.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332876104/taxt_p_music_head_01.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718149545/taxt_p_music_bottom_01.png",
|
||||||
|
"tag": [
|
||||||
|
"动感"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7",
|
||||||
|
"md5": "6B0B9FEF15B0FC8F1A1EAB6793DE5C02",
|
||||||
|
"songName": "伟大梦想",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523656707/dreaming_big.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332876104/taxt_p_music_head_01.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718149545/taxt_p_music_bottom_01.png",
|
||||||
|
"tag": [
|
||||||
|
"浪漫"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "8",
|
||||||
|
"md5": "3E8EE95E9E838709601D8BB8E2CC6B2A",
|
||||||
|
"songName": "钢琴映像",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523740974/piano_reflections.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332890890/taxt_p_music_head_02.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718167794/taxt_p_music_bottom_02.png",
|
||||||
|
"tag": [
|
||||||
|
"浪漫"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "9",
|
||||||
|
"md5": "59D695BB96DF67DBC0F5B064D727DA4A",
|
||||||
|
"songName": "宁静的景色",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523785714/serene_view.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332917335/taxt_p_music_head_04.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718199388/taxt_p_music_bottom_04.png",
|
||||||
|
"tag": [
|
||||||
|
"静谧"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "10",
|
||||||
|
"md5": "1FBFA6AB04AA76168FDFDAFB0E189F4D",
|
||||||
|
"songName": "困倦小猫",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523857450/sleepy_cat.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332876104/taxt_p_music_head_01.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718149545/taxt_p_music_bottom_01.png",
|
||||||
|
"tag": [
|
||||||
|
"静谧"
|
||||||
|
]
|
||||||
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"m1passenger": {
|
"M1": {
|
||||||
"medias": [
|
"medias": [
|
||||||
{
|
{
|
||||||
"fileUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1655708499497/大运会合作解说版.m4v",
|
"fileUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1655708499497/大运会合作解说版.m4v",
|
||||||
@@ -154,11 +276,133 @@
|
|||||||
"priority": 2,
|
"priority": 2,
|
||||||
"title": "多视角体验蘑菇车联自动驾驶"
|
"title": "多视角体验蘑菇车联自动驾驶"
|
||||||
}
|
}
|
||||||
|
],
|
||||||
|
"musics": [
|
||||||
|
{
|
||||||
|
"id": "1",
|
||||||
|
"md5": "C24399007B8DBAAEAA6EF448A25393CE",
|
||||||
|
"songName": "钢琴曲",
|
||||||
|
"songUrl": "android.resource://com.mogo.launcher.f/raw/piano_music.mp3",
|
||||||
|
"songUrlType": "local",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332930796/taxt_p_music_head_05.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718213773/taxt_p_music_bottom_05.png",
|
||||||
|
"tag": [
|
||||||
|
"放松"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "2",
|
||||||
|
"md5": "ECA45497D915E0B933E45B5A5411B30E",
|
||||||
|
"songName": "唯美的梦",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523329643/beautiful_dream.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332917335/taxt_p_music_head_04.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718199388/taxt_p_music_bottom_04.png",
|
||||||
|
"tag": [
|
||||||
|
"放松"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "3",
|
||||||
|
"md5": "8FA0DE702443CD05BCA6DB1B7E6BE036",
|
||||||
|
"songName": "有趣的时光",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523382842/fun_times.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332904487/taxt_p_music_head_03.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718184532/taxt_p_music_bottom_03.png",
|
||||||
|
"tag": [
|
||||||
|
"欢快"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "4",
|
||||||
|
"md5": "FB1EF41BC69216AAA90323F3FBABDDDF",
|
||||||
|
"songName": "游乐场",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523484705/playground_fun.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332890890/taxt_p_music_head_02.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718167794/taxt_p_music_bottom_02.png",
|
||||||
|
"tag": [
|
||||||
|
"欢快"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "5",
|
||||||
|
"md5": "B721B4FBAE2D472F875A3A539135337A",
|
||||||
|
"songName": "鼓舞我",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523537118/uplift_me.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332876104/taxt_p_music_head_01.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718149545/taxt_p_music_bottom_01.png",
|
||||||
|
"tag": [
|
||||||
|
"动感"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "6",
|
||||||
|
"md5": "836B99E70B7BC5C2283D602DF60F45F2",
|
||||||
|
"songName": "假日乐趣",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523604653/summer_fun.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332876104/taxt_p_music_head_01.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718149545/taxt_p_music_bottom_01.png",
|
||||||
|
"tag": [
|
||||||
|
"动感"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7",
|
||||||
|
"md5": "6B0B9FEF15B0FC8F1A1EAB6793DE5C02",
|
||||||
|
"songName": "伟大梦想",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523656707/dreaming_big.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332876104/taxt_p_music_head_01.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718149545/taxt_p_music_bottom_01.png",
|
||||||
|
"tag": [
|
||||||
|
"浪漫"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "8",
|
||||||
|
"md5": "3E8EE95E9E838709601D8BB8E2CC6B2A",
|
||||||
|
"songName": "钢琴映像",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523740974/piano_reflections.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332890890/taxt_p_music_head_02.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718167794/taxt_p_music_bottom_02.png",
|
||||||
|
"tag": [
|
||||||
|
"浪漫"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "9",
|
||||||
|
"md5": "59D695BB96DF67DBC0F5B064D727DA4A",
|
||||||
|
"songName": "宁静的景色",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523785714/serene_view.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332917335/taxt_p_music_head_04.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718199388/taxt_p_music_bottom_04.png",
|
||||||
|
"tag": [
|
||||||
|
"静谧"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "10",
|
||||||
|
"md5": "1FBFA6AB04AA76168FDFDAFB0E189F4D",
|
||||||
|
"songName": "困倦小猫",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523857450/sleepy_cat.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332876104/taxt_p_music_head_01.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718149545/taxt_p_music_bottom_01.png",
|
||||||
|
"tag": [
|
||||||
|
"静谧"
|
||||||
|
]
|
||||||
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"dali": {
|
"dali": {
|
||||||
"b1passenger": {
|
"B1": {
|
||||||
"medias": [
|
"medias": [
|
||||||
{
|
{
|
||||||
"fileUrl": "https://img.zhidaozhixing.com/fileServer/defaultPath/e6b517469d016169621298c18f7e5bbe/dl.mp4",
|
"fileUrl": "https://img.zhidaozhixing.com/fileServer/defaultPath/e6b517469d016169621298c18f7e5bbe/dl.mp4",
|
||||||
@@ -244,7 +488,7 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"b2passenger": {
|
"B2": {
|
||||||
"medias": [
|
"medias": [
|
||||||
{
|
{
|
||||||
"fileUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1681716116231/6923474a99a1983c9a0410ad3357888d.mov",
|
"fileUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1681716116231/6923474a99a1983c9a0410ad3357888d.mov",
|
||||||
@@ -262,7 +506,7 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"t1t2passengerochd": {
|
"T1T2": {
|
||||||
"medias": [
|
"medias": [
|
||||||
{
|
{
|
||||||
"fileUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1655708499497/大运会合作解说版.m4v",
|
"fileUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1655708499497/大运会合作解说版.m4v",
|
||||||
@@ -294,7 +538,7 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"m1passenger": {
|
"M1": {
|
||||||
"medias": [
|
"medias": [
|
||||||
{
|
{
|
||||||
"fileUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1655708499497/大运会合作解说版.m4v",
|
"fileUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1655708499497/大运会合作解说版.m4v",
|
||||||
@@ -324,11 +568,133 @@
|
|||||||
"priority": 2,
|
"priority": 2,
|
||||||
"title": "多视角体验蘑菇车联自动驾驶"
|
"title": "多视角体验蘑菇车联自动驾驶"
|
||||||
}
|
}
|
||||||
|
],
|
||||||
|
"musics": [
|
||||||
|
{
|
||||||
|
"id": "1",
|
||||||
|
"md5": "C24399007B8DBAAEAA6EF448A25393CE",
|
||||||
|
"songName": "钢琴曲",
|
||||||
|
"songUrl": "android.resource://com.mogo.launcher.f/raw/piano_music.mp3",
|
||||||
|
"songUrlType": "local",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332930796/taxt_p_music_head_05.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718213773/taxt_p_music_bottom_05.png",
|
||||||
|
"tag": [
|
||||||
|
"放松"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "2",
|
||||||
|
"md5": "ECA45497D915E0B933E45B5A5411B30E",
|
||||||
|
"songName": "唯美的梦",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523329643/beautiful_dream.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332917335/taxt_p_music_head_04.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718199388/taxt_p_music_bottom_04.png",
|
||||||
|
"tag": [
|
||||||
|
"放松"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "3",
|
||||||
|
"md5": "8FA0DE702443CD05BCA6DB1B7E6BE036",
|
||||||
|
"songName": "有趣的时光",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523382842/fun_times.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332904487/taxt_p_music_head_03.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718184532/taxt_p_music_bottom_03.png",
|
||||||
|
"tag": [
|
||||||
|
"欢快"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "4",
|
||||||
|
"md5": "FB1EF41BC69216AAA90323F3FBABDDDF",
|
||||||
|
"songName": "游乐场",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523484705/playground_fun.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332890890/taxt_p_music_head_02.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718167794/taxt_p_music_bottom_02.png",
|
||||||
|
"tag": [
|
||||||
|
"欢快"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "5",
|
||||||
|
"md5": "B721B4FBAE2D472F875A3A539135337A",
|
||||||
|
"songName": "鼓舞我",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523537118/uplift_me.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332876104/taxt_p_music_head_01.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718149545/taxt_p_music_bottom_01.png",
|
||||||
|
"tag": [
|
||||||
|
"动感"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "6",
|
||||||
|
"md5": "836B99E70B7BC5C2283D602DF60F45F2",
|
||||||
|
"songName": "假日乐趣",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523604653/summer_fun.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332876104/taxt_p_music_head_01.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718149545/taxt_p_music_bottom_01.png",
|
||||||
|
"tag": [
|
||||||
|
"动感"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7",
|
||||||
|
"md5": "6B0B9FEF15B0FC8F1A1EAB6793DE5C02",
|
||||||
|
"songName": "伟大梦想",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523656707/dreaming_big.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332876104/taxt_p_music_head_01.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718149545/taxt_p_music_bottom_01.png",
|
||||||
|
"tag": [
|
||||||
|
"浪漫"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "8",
|
||||||
|
"md5": "3E8EE95E9E838709601D8BB8E2CC6B2A",
|
||||||
|
"songName": "钢琴映像",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523740974/piano_reflections.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332890890/taxt_p_music_head_02.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718167794/taxt_p_music_bottom_02.png",
|
||||||
|
"tag": [
|
||||||
|
"浪漫"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "9",
|
||||||
|
"md5": "59D695BB96DF67DBC0F5B064D727DA4A",
|
||||||
|
"songName": "宁静的景色",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523785714/serene_view.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332917335/taxt_p_music_head_04.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718199388/taxt_p_music_bottom_04.png",
|
||||||
|
"tag": [
|
||||||
|
"静谧"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "10",
|
||||||
|
"md5": "1FBFA6AB04AA76168FDFDAFB0E189F4D",
|
||||||
|
"songName": "困倦小猫",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523857450/sleepy_cat.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332876104/taxt_p_music_head_01.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718149545/taxt_p_music_bottom_01.png",
|
||||||
|
"tag": [
|
||||||
|
"静谧"
|
||||||
|
]
|
||||||
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"yantai": {
|
"yantai": {
|
||||||
"b1passenger": {
|
"B1": {
|
||||||
"medias": [
|
"medias": [
|
||||||
{
|
{
|
||||||
"fileUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1681210971943/yangmadou.mp4",
|
"fileUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1681210971943/yangmadou.mp4",
|
||||||
@@ -346,7 +712,7 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"b2passenger": {
|
"B2": {
|
||||||
"medias": [
|
"medias": [
|
||||||
{
|
{
|
||||||
"fileUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1681716116231/6923474a99a1983c9a0410ad3357888d.mov",
|
"fileUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1681716116231/6923474a99a1983c9a0410ad3357888d.mov",
|
||||||
@@ -364,7 +730,7 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"t1t2passengeroch": {
|
"T1T2": {
|
||||||
"medias": [
|
"medias": [
|
||||||
{
|
{
|
||||||
"fileUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1655708499497/大运会合作解说版.m4v",
|
"fileUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1655708499497/大运会合作解说版.m4v",
|
||||||
@@ -396,7 +762,7 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"m1passenger": {
|
"M1": {
|
||||||
"medias": [
|
"medias": [
|
||||||
{
|
{
|
||||||
"fileUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1655708499497/大运会合作解说版.m4v",
|
"fileUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1655708499497/大运会合作解说版.m4v",
|
||||||
@@ -426,11 +792,133 @@
|
|||||||
"priority": 2,
|
"priority": 2,
|
||||||
"title": "多视角体验蘑菇车联自动驾驶"
|
"title": "多视角体验蘑菇车联自动驾驶"
|
||||||
}
|
}
|
||||||
|
],
|
||||||
|
"musics": [
|
||||||
|
{
|
||||||
|
"id": "1",
|
||||||
|
"md5": "C24399007B8DBAAEAA6EF448A25393CE",
|
||||||
|
"songName": "钢琴曲",
|
||||||
|
"songUrl": "android.resource://com.mogo.launcher.f/raw/piano_music.mp3",
|
||||||
|
"songUrlType": "local",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332930796/taxt_p_music_head_05.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718213773/taxt_p_music_bottom_05.png",
|
||||||
|
"tag": [
|
||||||
|
"放松"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "2",
|
||||||
|
"md5": "ECA45497D915E0B933E45B5A5411B30E",
|
||||||
|
"songName": "唯美的梦",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523329643/beautiful_dream.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332917335/taxt_p_music_head_04.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718199388/taxt_p_music_bottom_04.png",
|
||||||
|
"tag": [
|
||||||
|
"放松"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "3",
|
||||||
|
"md5": "8FA0DE702443CD05BCA6DB1B7E6BE036",
|
||||||
|
"songName": "有趣的时光",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523382842/fun_times.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332904487/taxt_p_music_head_03.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718184532/taxt_p_music_bottom_03.png",
|
||||||
|
"tag": [
|
||||||
|
"欢快"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "4",
|
||||||
|
"md5": "FB1EF41BC69216AAA90323F3FBABDDDF",
|
||||||
|
"songName": "游乐场",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523484705/playground_fun.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332890890/taxt_p_music_head_02.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718167794/taxt_p_music_bottom_02.png",
|
||||||
|
"tag": [
|
||||||
|
"欢快"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "5",
|
||||||
|
"md5": "B721B4FBAE2D472F875A3A539135337A",
|
||||||
|
"songName": "鼓舞我",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523537118/uplift_me.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332876104/taxt_p_music_head_01.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718149545/taxt_p_music_bottom_01.png",
|
||||||
|
"tag": [
|
||||||
|
"动感"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "6",
|
||||||
|
"md5": "836B99E70B7BC5C2283D602DF60F45F2",
|
||||||
|
"songName": "假日乐趣",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523604653/summer_fun.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332876104/taxt_p_music_head_01.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718149545/taxt_p_music_bottom_01.png",
|
||||||
|
"tag": [
|
||||||
|
"动感"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7",
|
||||||
|
"md5": "6B0B9FEF15B0FC8F1A1EAB6793DE5C02",
|
||||||
|
"songName": "伟大梦想",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523656707/dreaming_big.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332876104/taxt_p_music_head_01.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718149545/taxt_p_music_bottom_01.png",
|
||||||
|
"tag": [
|
||||||
|
"浪漫"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "8",
|
||||||
|
"md5": "3E8EE95E9E838709601D8BB8E2CC6B2A",
|
||||||
|
"songName": "钢琴映像",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523740974/piano_reflections.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332890890/taxt_p_music_head_02.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718167794/taxt_p_music_bottom_02.png",
|
||||||
|
"tag": [
|
||||||
|
"浪漫"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "9",
|
||||||
|
"md5": "59D695BB96DF67DBC0F5B064D727DA4A",
|
||||||
|
"songName": "宁静的景色",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523785714/serene_view.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332917335/taxt_p_music_head_04.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718199388/taxt_p_music_bottom_04.png",
|
||||||
|
"tag": [
|
||||||
|
"静谧"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "10",
|
||||||
|
"md5": "1FBFA6AB04AA76168FDFDAFB0E189F4D",
|
||||||
|
"songName": "困倦小猫",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523857450/sleepy_cat.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332876104/taxt_p_music_head_01.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718149545/taxt_p_music_bottom_01.png",
|
||||||
|
"tag": [
|
||||||
|
"静谧"
|
||||||
|
]
|
||||||
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"saas": {
|
"saas": {
|
||||||
"b1passenger": {
|
"B1": {
|
||||||
"medias": [
|
"medias": [
|
||||||
{
|
{
|
||||||
"fileUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1676357256102/1.jpg",
|
"fileUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1676357256102/1.jpg",
|
||||||
@@ -504,7 +992,7 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"b2passenger": {
|
"B2": {
|
||||||
"medias": [
|
"medias": [
|
||||||
{
|
{
|
||||||
"fileUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1681716116231/6923474a99a1983c9a0410ad3357888d.mov",
|
"fileUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1681716116231/6923474a99a1983c9a0410ad3357888d.mov",
|
||||||
@@ -522,7 +1010,7 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"t1t2passengeroch": {
|
"T1T2": {
|
||||||
"medias": [
|
"medias": [
|
||||||
{
|
{
|
||||||
"fileUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1655708499497/大运会合作解说版.m4v",
|
"fileUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1655708499497/大运会合作解说版.m4v",
|
||||||
@@ -552,9 +1040,131 @@
|
|||||||
"priority": 2,
|
"priority": 2,
|
||||||
"title": "多视角体验蘑菇车联自动驾驶"
|
"title": "多视角体验蘑菇车联自动驾驶"
|
||||||
}
|
}
|
||||||
|
],
|
||||||
|
"musics": [
|
||||||
|
{
|
||||||
|
"id": "1",
|
||||||
|
"md5": "C24399007B8DBAAEAA6EF448A25393CE",
|
||||||
|
"songName": "钢琴曲",
|
||||||
|
"songUrl": "android.resource://com.mogo.launcher.f/raw/piano_music.mp3",
|
||||||
|
"songUrlType": "local",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332930796/taxt_p_music_head_05.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718213773/taxt_p_music_bottom_05.png",
|
||||||
|
"tag": [
|
||||||
|
"放松"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "2",
|
||||||
|
"md5": "ECA45497D915E0B933E45B5A5411B30E",
|
||||||
|
"songName": "唯美的梦",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523329643/beautiful_dream.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332917335/taxt_p_music_head_04.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718199388/taxt_p_music_bottom_04.png",
|
||||||
|
"tag": [
|
||||||
|
"放松"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "3",
|
||||||
|
"md5": "8FA0DE702443CD05BCA6DB1B7E6BE036",
|
||||||
|
"songName": "有趣的时光",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523382842/fun_times.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332904487/taxt_p_music_head_03.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718184532/taxt_p_music_bottom_03.png",
|
||||||
|
"tag": [
|
||||||
|
"欢快"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "4",
|
||||||
|
"md5": "FB1EF41BC69216AAA90323F3FBABDDDF",
|
||||||
|
"songName": "游乐场",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523484705/playground_fun.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332890890/taxt_p_music_head_02.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718167794/taxt_p_music_bottom_02.png",
|
||||||
|
"tag": [
|
||||||
|
"欢快"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "5",
|
||||||
|
"md5": "B721B4FBAE2D472F875A3A539135337A",
|
||||||
|
"songName": "鼓舞我",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523537118/uplift_me.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332876104/taxt_p_music_head_01.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718149545/taxt_p_music_bottom_01.png",
|
||||||
|
"tag": [
|
||||||
|
"动感"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "6",
|
||||||
|
"md5": "836B99E70B7BC5C2283D602DF60F45F2",
|
||||||
|
"songName": "假日乐趣",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523604653/summer_fun.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332876104/taxt_p_music_head_01.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718149545/taxt_p_music_bottom_01.png",
|
||||||
|
"tag": [
|
||||||
|
"动感"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7",
|
||||||
|
"md5": "6B0B9FEF15B0FC8F1A1EAB6793DE5C02",
|
||||||
|
"songName": "伟大梦想",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523656707/dreaming_big.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332876104/taxt_p_music_head_01.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718149545/taxt_p_music_bottom_01.png",
|
||||||
|
"tag": [
|
||||||
|
"浪漫"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "8",
|
||||||
|
"md5": "3E8EE95E9E838709601D8BB8E2CC6B2A",
|
||||||
|
"songName": "钢琴映像",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523740974/piano_reflections.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332890890/taxt_p_music_head_02.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718167794/taxt_p_music_bottom_02.png",
|
||||||
|
"tag": [
|
||||||
|
"浪漫"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "9",
|
||||||
|
"md5": "59D695BB96DF67DBC0F5B064D727DA4A",
|
||||||
|
"songName": "宁静的景色",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523785714/serene_view.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332917335/taxt_p_music_head_04.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718199388/taxt_p_music_bottom_04.png",
|
||||||
|
"tag": [
|
||||||
|
"静谧"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "10",
|
||||||
|
"md5": "1FBFA6AB04AA76168FDFDAFB0E189F4D",
|
||||||
|
"songName": "困倦小猫",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523857450/sleepy_cat.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332876104/taxt_p_music_head_01.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718149545/taxt_p_music_bottom_01.png",
|
||||||
|
"tag": [
|
||||||
|
"静谧"
|
||||||
|
]
|
||||||
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"m1passenger": {
|
"M1": {
|
||||||
"medias": [
|
"medias": [
|
||||||
{
|
{
|
||||||
"fileUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1655708499497/大运会合作解说版.m4v",
|
"fileUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1655708499497/大运会合作解说版.m4v",
|
||||||
@@ -584,6 +1194,128 @@
|
|||||||
"priority": 2,
|
"priority": 2,
|
||||||
"title": "多视角体验蘑菇车联自动驾驶"
|
"title": "多视角体验蘑菇车联自动驾驶"
|
||||||
}
|
}
|
||||||
|
],
|
||||||
|
"musics": [
|
||||||
|
{
|
||||||
|
"id": "1",
|
||||||
|
"md5": "C24399007B8DBAAEAA6EF448A25393CE",
|
||||||
|
"songName": "钢琴曲",
|
||||||
|
"songUrl": "android.resource://com.mogo.launcher.f/raw/piano_music.mp3",
|
||||||
|
"songUrlType": "local",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332930796/taxt_p_music_head_05.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718213773/taxt_p_music_bottom_05.png",
|
||||||
|
"tag": [
|
||||||
|
"放松"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "2",
|
||||||
|
"md5": "ECA45497D915E0B933E45B5A5411B30E",
|
||||||
|
"songName": "唯美的梦",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523329643/beautiful_dream.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332917335/taxt_p_music_head_04.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718199388/taxt_p_music_bottom_04.png",
|
||||||
|
"tag": [
|
||||||
|
"放松"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "3",
|
||||||
|
"md5": "8FA0DE702443CD05BCA6DB1B7E6BE036",
|
||||||
|
"songName": "有趣的时光",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523382842/fun_times.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332904487/taxt_p_music_head_03.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718184532/taxt_p_music_bottom_03.png",
|
||||||
|
"tag": [
|
||||||
|
"欢快"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "4",
|
||||||
|
"md5": "FB1EF41BC69216AAA90323F3FBABDDDF",
|
||||||
|
"songName": "游乐场",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523484705/playground_fun.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332890890/taxt_p_music_head_02.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718167794/taxt_p_music_bottom_02.png",
|
||||||
|
"tag": [
|
||||||
|
"欢快"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "5",
|
||||||
|
"md5": "B721B4FBAE2D472F875A3A539135337A",
|
||||||
|
"songName": "鼓舞我",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523537118/uplift_me.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332876104/taxt_p_music_head_01.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718149545/taxt_p_music_bottom_01.png",
|
||||||
|
"tag": [
|
||||||
|
"动感"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "6",
|
||||||
|
"md5": "836B99E70B7BC5C2283D602DF60F45F2",
|
||||||
|
"songName": "假日乐趣",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523604653/summer_fun.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332876104/taxt_p_music_head_01.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718149545/taxt_p_music_bottom_01.png",
|
||||||
|
"tag": [
|
||||||
|
"动感"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7",
|
||||||
|
"md5": "6B0B9FEF15B0FC8F1A1EAB6793DE5C02",
|
||||||
|
"songName": "伟大梦想",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523656707/dreaming_big.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332876104/taxt_p_music_head_01.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718149545/taxt_p_music_bottom_01.png",
|
||||||
|
"tag": [
|
||||||
|
"浪漫"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "8",
|
||||||
|
"md5": "3E8EE95E9E838709601D8BB8E2CC6B2A",
|
||||||
|
"songName": "钢琴映像",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523740974/piano_reflections.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332890890/taxt_p_music_head_02.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718167794/taxt_p_music_bottom_02.png",
|
||||||
|
"tag": [
|
||||||
|
"浪漫"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "9",
|
||||||
|
"md5": "59D695BB96DF67DBC0F5B064D727DA4A",
|
||||||
|
"songName": "宁静的景色",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523785714/serene_view.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332917335/taxt_p_music_head_04.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718199388/taxt_p_music_bottom_04.png",
|
||||||
|
"tag": [
|
||||||
|
"静谧"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "10",
|
||||||
|
"md5": "1FBFA6AB04AA76168FDFDAFB0E189F4D",
|
||||||
|
"songName": "困倦小猫",
|
||||||
|
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523857450/sleepy_cat.mp3",
|
||||||
|
"songUrlType": "cloud",
|
||||||
|
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332876104/taxt_p_music_head_01.png",
|
||||||
|
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718149545/taxt_p_music_bottom_01.png",
|
||||||
|
"tag": [
|
||||||
|
"静谧"
|
||||||
|
]
|
||||||
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,754 +0,0 @@
|
|||||||
{
|
|
||||||
"mogo": {
|
|
||||||
"t1t2passenger": {
|
|
||||||
"musics": [
|
|
||||||
{
|
|
||||||
"id": "1",
|
|
||||||
"md5": "C24399007B8DBAAEAA6EF448A25393CE",
|
|
||||||
"songName": "钢琴曲",
|
|
||||||
"songUrl": "android.resource://com.mogo.launcher.f/raw/piano_music.mp3",
|
|
||||||
"songUrlType": "local",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332930796/taxt_p_music_head_05.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718213773/taxt_p_music_bottom_05.png",
|
|
||||||
"tag": [
|
|
||||||
"放松"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "2",
|
|
||||||
"md5": "ECA45497D915E0B933E45B5A5411B30E",
|
|
||||||
"songName": "唯美的梦",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523329643/beautiful_dream.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332917335/taxt_p_music_head_04.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718199388/taxt_p_music_bottom_04.png",
|
|
||||||
"tag": [
|
|
||||||
"放松"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "3",
|
|
||||||
"md5": "8FA0DE702443CD05BCA6DB1B7E6BE036",
|
|
||||||
"songName": "有趣的时光",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523382842/fun_times.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332904487/taxt_p_music_head_03.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718184532/taxt_p_music_bottom_03.png",
|
|
||||||
"tag": [
|
|
||||||
"欢快"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "4",
|
|
||||||
"md5": "FB1EF41BC69216AAA90323F3FBABDDDF",
|
|
||||||
"songName": "游乐场",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523484705/playground_fun.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332890890/taxt_p_music_head_02.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718167794/taxt_p_music_bottom_02.png",
|
|
||||||
"tag": [
|
|
||||||
"欢快"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "5",
|
|
||||||
"md5": "B721B4FBAE2D472F875A3A539135337A",
|
|
||||||
"songName": "鼓舞我",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523537118/uplift_me.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332876104/taxt_p_music_head_01.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718149545/taxt_p_music_bottom_01.png",
|
|
||||||
"tag": [
|
|
||||||
"动感"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "6",
|
|
||||||
"md5": "836B99E70B7BC5C2283D602DF60F45F2",
|
|
||||||
"songName": "假日乐趣",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523604653/summer_fun.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332876104/taxt_p_music_head_01.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718149545/taxt_p_music_bottom_01.png",
|
|
||||||
"tag": [
|
|
||||||
"动感"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "7",
|
|
||||||
"md5": "6B0B9FEF15B0FC8F1A1EAB6793DE5C02",
|
|
||||||
"songName": "伟大梦想",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523656707/dreaming_big.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332876104/taxt_p_music_head_01.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718149545/taxt_p_music_bottom_01.png",
|
|
||||||
"tag": [
|
|
||||||
"浪漫"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "8",
|
|
||||||
"md5": "3E8EE95E9E838709601D8BB8E2CC6B2A",
|
|
||||||
"songName": "钢琴映像",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523740974/piano_reflections.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332890890/taxt_p_music_head_02.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718167794/taxt_p_music_bottom_02.png",
|
|
||||||
"tag": [
|
|
||||||
"浪漫"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "9",
|
|
||||||
"md5": "59D695BB96DF67DBC0F5B064D727DA4A",
|
|
||||||
"songName": "宁静的景色",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523785714/serene_view.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332917335/taxt_p_music_head_04.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718199388/taxt_p_music_bottom_04.png",
|
|
||||||
"tag": [
|
|
||||||
"静谧"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "10",
|
|
||||||
"md5": "1FBFA6AB04AA76168FDFDAFB0E189F4D",
|
|
||||||
"songName": "困倦小猫",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523857450/sleepy_cat.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332876104/taxt_p_music_head_01.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718149545/taxt_p_music_bottom_01.png",
|
|
||||||
"tag": [
|
|
||||||
"静谧"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"m1passenger": {
|
|
||||||
"musics": [
|
|
||||||
{
|
|
||||||
"id": "1",
|
|
||||||
"md5": "C24399007B8DBAAEAA6EF448A25393CE",
|
|
||||||
"songName": "钢琴曲",
|
|
||||||
"songUrl": "android.resource://com.mogo.launcher.f/raw/piano_music.mp3",
|
|
||||||
"songUrlType": "local",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332930796/taxt_p_music_head_05.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718213773/taxt_p_music_bottom_05.png",
|
|
||||||
"tag": [
|
|
||||||
"放松"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "2",
|
|
||||||
"md5": "ECA45497D915E0B933E45B5A5411B30E",
|
|
||||||
"songName": "唯美的梦",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523329643/beautiful_dream.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332917335/taxt_p_music_head_04.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718199388/taxt_p_music_bottom_04.png",
|
|
||||||
"tag": [
|
|
||||||
"放松"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "3",
|
|
||||||
"md5": "8FA0DE702443CD05BCA6DB1B7E6BE036",
|
|
||||||
"songName": "有趣的时光",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523382842/fun_times.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332904487/taxt_p_music_head_03.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718184532/taxt_p_music_bottom_03.png",
|
|
||||||
"tag": [
|
|
||||||
"欢快"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "4",
|
|
||||||
"md5": "FB1EF41BC69216AAA90323F3FBABDDDF",
|
|
||||||
"songName": "游乐场",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523484705/playground_fun.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332890890/taxt_p_music_head_02.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718167794/taxt_p_music_bottom_02.png",
|
|
||||||
"tag": [
|
|
||||||
"欢快"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "5",
|
|
||||||
"md5": "B721B4FBAE2D472F875A3A539135337A",
|
|
||||||
"songName": "鼓舞我",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523537118/uplift_me.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332876104/taxt_p_music_head_01.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718149545/taxt_p_music_bottom_01.png",
|
|
||||||
"tag": [
|
|
||||||
"动感"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "6",
|
|
||||||
"md5": "836B99E70B7BC5C2283D602DF60F45F2",
|
|
||||||
"songName": "假日乐趣",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523604653/summer_fun.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332876104/taxt_p_music_head_01.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718149545/taxt_p_music_bottom_01.png",
|
|
||||||
"tag": [
|
|
||||||
"动感"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "7",
|
|
||||||
"md5": "6B0B9FEF15B0FC8F1A1EAB6793DE5C02",
|
|
||||||
"songName": "伟大梦想",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523656707/dreaming_big.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332876104/taxt_p_music_head_01.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718149545/taxt_p_music_bottom_01.png",
|
|
||||||
"tag": [
|
|
||||||
"浪漫"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "8",
|
|
||||||
"md5": "3E8EE95E9E838709601D8BB8E2CC6B2A",
|
|
||||||
"songName": "钢琴映像",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523740974/piano_reflections.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332890890/taxt_p_music_head_02.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718167794/taxt_p_music_bottom_02.png",
|
|
||||||
"tag": [
|
|
||||||
"浪漫"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "9",
|
|
||||||
"md5": "59D695BB96DF67DBC0F5B064D727DA4A",
|
|
||||||
"songName": "宁静的景色",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523785714/serene_view.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332917335/taxt_p_music_head_04.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718199388/taxt_p_music_bottom_04.png",
|
|
||||||
"tag": [
|
|
||||||
"静谧"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "10",
|
|
||||||
"md5": "1FBFA6AB04AA76168FDFDAFB0E189F4D",
|
|
||||||
"songName": "困倦小猫",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523857450/sleepy_cat.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332876104/taxt_p_music_head_01.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718149545/taxt_p_music_bottom_01.png",
|
|
||||||
"tag": [
|
|
||||||
"静谧"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"dali": {
|
|
||||||
"m1passenger": {
|
|
||||||
"musics": [
|
|
||||||
{
|
|
||||||
"id": "1",
|
|
||||||
"md5": "C24399007B8DBAAEAA6EF448A25393CE",
|
|
||||||
"songName": "钢琴曲",
|
|
||||||
"songUrl": "android.resource://com.mogo.launcher.f/raw/piano_music.mp3",
|
|
||||||
"songUrlType": "local",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332930796/taxt_p_music_head_05.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718213773/taxt_p_music_bottom_05.png",
|
|
||||||
"tag": [
|
|
||||||
"放松"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "2",
|
|
||||||
"md5": "ECA45497D915E0B933E45B5A5411B30E",
|
|
||||||
"songName": "唯美的梦",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523329643/beautiful_dream.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332917335/taxt_p_music_head_04.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718199388/taxt_p_music_bottom_04.png",
|
|
||||||
"tag": [
|
|
||||||
"放松"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "3",
|
|
||||||
"md5": "8FA0DE702443CD05BCA6DB1B7E6BE036",
|
|
||||||
"songName": "有趣的时光",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523382842/fun_times.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332904487/taxt_p_music_head_03.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718184532/taxt_p_music_bottom_03.png",
|
|
||||||
"tag": [
|
|
||||||
"欢快"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "4",
|
|
||||||
"md5": "FB1EF41BC69216AAA90323F3FBABDDDF",
|
|
||||||
"songName": "游乐场",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523484705/playground_fun.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332890890/taxt_p_music_head_02.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718167794/taxt_p_music_bottom_02.png",
|
|
||||||
"tag": [
|
|
||||||
"欢快"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "5",
|
|
||||||
"md5": "B721B4FBAE2D472F875A3A539135337A",
|
|
||||||
"songName": "鼓舞我",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523537118/uplift_me.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332876104/taxt_p_music_head_01.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718149545/taxt_p_music_bottom_01.png",
|
|
||||||
"tag": [
|
|
||||||
"动感"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "6",
|
|
||||||
"md5": "836B99E70B7BC5C2283D602DF60F45F2",
|
|
||||||
"songName": "假日乐趣",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523604653/summer_fun.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332876104/taxt_p_music_head_01.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718149545/taxt_p_music_bottom_01.png",
|
|
||||||
"tag": [
|
|
||||||
"动感"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "7",
|
|
||||||
"md5": "6B0B9FEF15B0FC8F1A1EAB6793DE5C02",
|
|
||||||
"songName": "伟大梦想",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523656707/dreaming_big.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332876104/taxt_p_music_head_01.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718149545/taxt_p_music_bottom_01.png",
|
|
||||||
"tag": [
|
|
||||||
"浪漫"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "8",
|
|
||||||
"md5": "3E8EE95E9E838709601D8BB8E2CC6B2A",
|
|
||||||
"songName": "钢琴映像",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523740974/piano_reflections.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332890890/taxt_p_music_head_02.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718167794/taxt_p_music_bottom_02.png",
|
|
||||||
"tag": [
|
|
||||||
"浪漫"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "9",
|
|
||||||
"md5": "59D695BB96DF67DBC0F5B064D727DA4A",
|
|
||||||
"songName": "宁静的景色",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523785714/serene_view.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332917335/taxt_p_music_head_04.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718199388/taxt_p_music_bottom_04.png",
|
|
||||||
"tag": [
|
|
||||||
"静谧"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "10",
|
|
||||||
"md5": "1FBFA6AB04AA76168FDFDAFB0E189F4D",
|
|
||||||
"songName": "困倦小猫",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523857450/sleepy_cat.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332876104/taxt_p_music_head_01.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718149545/taxt_p_music_bottom_01.png",
|
|
||||||
"tag": [
|
|
||||||
"静谧"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"yantai": {
|
|
||||||
"m1passenger": {
|
|
||||||
"musics": [
|
|
||||||
{
|
|
||||||
"id": "1",
|
|
||||||
"md5": "C24399007B8DBAAEAA6EF448A25393CE",
|
|
||||||
"songName": "钢琴曲",
|
|
||||||
"songUrl": "android.resource://com.mogo.launcher.f/raw/piano_music.mp3",
|
|
||||||
"songUrlType": "local",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332930796/taxt_p_music_head_05.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718213773/taxt_p_music_bottom_05.png",
|
|
||||||
"tag": [
|
|
||||||
"放松"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "2",
|
|
||||||
"md5": "ECA45497D915E0B933E45B5A5411B30E",
|
|
||||||
"songName": "唯美的梦",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523329643/beautiful_dream.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332917335/taxt_p_music_head_04.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718199388/taxt_p_music_bottom_04.png",
|
|
||||||
"tag": [
|
|
||||||
"放松"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "3",
|
|
||||||
"md5": "8FA0DE702443CD05BCA6DB1B7E6BE036",
|
|
||||||
"songName": "有趣的时光",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523382842/fun_times.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332904487/taxt_p_music_head_03.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718184532/taxt_p_music_bottom_03.png",
|
|
||||||
"tag": [
|
|
||||||
"欢快"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "4",
|
|
||||||
"md5": "FB1EF41BC69216AAA90323F3FBABDDDF",
|
|
||||||
"songName": "游乐场",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523484705/playground_fun.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332890890/taxt_p_music_head_02.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718167794/taxt_p_music_bottom_02.png",
|
|
||||||
"tag": [
|
|
||||||
"欢快"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "5",
|
|
||||||
"md5": "B721B4FBAE2D472F875A3A539135337A",
|
|
||||||
"songName": "鼓舞我",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523537118/uplift_me.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332876104/taxt_p_music_head_01.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718149545/taxt_p_music_bottom_01.png",
|
|
||||||
"tag": [
|
|
||||||
"动感"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "6",
|
|
||||||
"md5": "836B99E70B7BC5C2283D602DF60F45F2",
|
|
||||||
"songName": "假日乐趣",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523604653/summer_fun.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332876104/taxt_p_music_head_01.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718149545/taxt_p_music_bottom_01.png",
|
|
||||||
"tag": [
|
|
||||||
"动感"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "7",
|
|
||||||
"md5": "6B0B9FEF15B0FC8F1A1EAB6793DE5C02",
|
|
||||||
"songName": "伟大梦想",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523656707/dreaming_big.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332876104/taxt_p_music_head_01.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718149545/taxt_p_music_bottom_01.png",
|
|
||||||
"tag": [
|
|
||||||
"浪漫"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "8",
|
|
||||||
"md5": "3E8EE95E9E838709601D8BB8E2CC6B2A",
|
|
||||||
"songName": "钢琴映像",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523740974/piano_reflections.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332890890/taxt_p_music_head_02.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718167794/taxt_p_music_bottom_02.png",
|
|
||||||
"tag": [
|
|
||||||
"浪漫"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "9",
|
|
||||||
"md5": "59D695BB96DF67DBC0F5B064D727DA4A",
|
|
||||||
"songName": "宁静的景色",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523785714/serene_view.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332917335/taxt_p_music_head_04.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718199388/taxt_p_music_bottom_04.png",
|
|
||||||
"tag": [
|
|
||||||
"静谧"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "10",
|
|
||||||
"md5": "1FBFA6AB04AA76168FDFDAFB0E189F4D",
|
|
||||||
"songName": "困倦小猫",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523857450/sleepy_cat.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332876104/taxt_p_music_head_01.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718149545/taxt_p_music_bottom_01.png",
|
|
||||||
"tag": [
|
|
||||||
"静谧"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"saas": {
|
|
||||||
"t1t2passenger": {
|
|
||||||
"musics": [
|
|
||||||
{
|
|
||||||
"id": "1",
|
|
||||||
"md5": "C24399007B8DBAAEAA6EF448A25393CE",
|
|
||||||
"songName": "钢琴曲",
|
|
||||||
"songUrl": "android.resource://com.mogo.launcher.f/raw/piano_music.mp3",
|
|
||||||
"songUrlType": "local",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332930796/taxt_p_music_head_05.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718213773/taxt_p_music_bottom_05.png",
|
|
||||||
"tag": [
|
|
||||||
"放松"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "2",
|
|
||||||
"md5": "ECA45497D915E0B933E45B5A5411B30E",
|
|
||||||
"songName": "唯美的梦",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523329643/beautiful_dream.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332917335/taxt_p_music_head_04.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718199388/taxt_p_music_bottom_04.png",
|
|
||||||
"tag": [
|
|
||||||
"放松"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "3",
|
|
||||||
"md5": "8FA0DE702443CD05BCA6DB1B7E6BE036",
|
|
||||||
"songName": "有趣的时光",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523382842/fun_times.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332904487/taxt_p_music_head_03.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718184532/taxt_p_music_bottom_03.png",
|
|
||||||
"tag": [
|
|
||||||
"欢快"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "4",
|
|
||||||
"md5": "FB1EF41BC69216AAA90323F3FBABDDDF",
|
|
||||||
"songName": "游乐场",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523484705/playground_fun.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332890890/taxt_p_music_head_02.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718167794/taxt_p_music_bottom_02.png",
|
|
||||||
"tag": [
|
|
||||||
"欢快"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "5",
|
|
||||||
"md5": "B721B4FBAE2D472F875A3A539135337A",
|
|
||||||
"songName": "鼓舞我",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523537118/uplift_me.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332876104/taxt_p_music_head_01.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718149545/taxt_p_music_bottom_01.png",
|
|
||||||
"tag": [
|
|
||||||
"动感"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "6",
|
|
||||||
"md5": "836B99E70B7BC5C2283D602DF60F45F2",
|
|
||||||
"songName": "假日乐趣",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523604653/summer_fun.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332876104/taxt_p_music_head_01.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718149545/taxt_p_music_bottom_01.png",
|
|
||||||
"tag": [
|
|
||||||
"动感"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "7",
|
|
||||||
"md5": "6B0B9FEF15B0FC8F1A1EAB6793DE5C02",
|
|
||||||
"songName": "伟大梦想",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523656707/dreaming_big.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332876104/taxt_p_music_head_01.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718149545/taxt_p_music_bottom_01.png",
|
|
||||||
"tag": [
|
|
||||||
"浪漫"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "8",
|
|
||||||
"md5": "3E8EE95E9E838709601D8BB8E2CC6B2A",
|
|
||||||
"songName": "钢琴映像",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523740974/piano_reflections.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332890890/taxt_p_music_head_02.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718167794/taxt_p_music_bottom_02.png",
|
|
||||||
"tag": [
|
|
||||||
"浪漫"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "9",
|
|
||||||
"md5": "59D695BB96DF67DBC0F5B064D727DA4A",
|
|
||||||
"songName": "宁静的景色",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523785714/serene_view.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332917335/taxt_p_music_head_04.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718199388/taxt_p_music_bottom_04.png",
|
|
||||||
"tag": [
|
|
||||||
"静谧"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "10",
|
|
||||||
"md5": "1FBFA6AB04AA76168FDFDAFB0E189F4D",
|
|
||||||
"songName": "困倦小猫",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523857450/sleepy_cat.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332876104/taxt_p_music_head_01.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718149545/taxt_p_music_bottom_01.png",
|
|
||||||
"tag": [
|
|
||||||
"静谧"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"m1passenger": {
|
|
||||||
"musics": [
|
|
||||||
{
|
|
||||||
"id": "1",
|
|
||||||
"md5": "C24399007B8DBAAEAA6EF448A25393CE",
|
|
||||||
"songName": "钢琴曲",
|
|
||||||
"songUrl": "android.resource://com.mogo.launcher.f/raw/piano_music.mp3",
|
|
||||||
"songUrlType": "local",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332930796/taxt_p_music_head_05.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718213773/taxt_p_music_bottom_05.png",
|
|
||||||
"tag": [
|
|
||||||
"放松"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "2",
|
|
||||||
"md5": "ECA45497D915E0B933E45B5A5411B30E",
|
|
||||||
"songName": "唯美的梦",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523329643/beautiful_dream.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332917335/taxt_p_music_head_04.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718199388/taxt_p_music_bottom_04.png",
|
|
||||||
"tag": [
|
|
||||||
"放松"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "3",
|
|
||||||
"md5": "8FA0DE702443CD05BCA6DB1B7E6BE036",
|
|
||||||
"songName": "有趣的时光",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523382842/fun_times.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332904487/taxt_p_music_head_03.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718184532/taxt_p_music_bottom_03.png",
|
|
||||||
"tag": [
|
|
||||||
"欢快"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "4",
|
|
||||||
"md5": "FB1EF41BC69216AAA90323F3FBABDDDF",
|
|
||||||
"songName": "游乐场",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523484705/playground_fun.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332890890/taxt_p_music_head_02.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718167794/taxt_p_music_bottom_02.png",
|
|
||||||
"tag": [
|
|
||||||
"欢快"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "5",
|
|
||||||
"md5": "B721B4FBAE2D472F875A3A539135337A",
|
|
||||||
"songName": "鼓舞我",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523537118/uplift_me.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332876104/taxt_p_music_head_01.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718149545/taxt_p_music_bottom_01.png",
|
|
||||||
"tag": [
|
|
||||||
"动感"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "6",
|
|
||||||
"md5": "836B99E70B7BC5C2283D602DF60F45F2",
|
|
||||||
"songName": "假日乐趣",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523604653/summer_fun.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332876104/taxt_p_music_head_01.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718149545/taxt_p_music_bottom_01.png",
|
|
||||||
"tag": [
|
|
||||||
"动感"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "7",
|
|
||||||
"md5": "6B0B9FEF15B0FC8F1A1EAB6793DE5C02",
|
|
||||||
"songName": "伟大梦想",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523656707/dreaming_big.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332876104/taxt_p_music_head_01.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718149545/taxt_p_music_bottom_01.png",
|
|
||||||
"tag": [
|
|
||||||
"浪漫"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "8",
|
|
||||||
"md5": "3E8EE95E9E838709601D8BB8E2CC6B2A",
|
|
||||||
"songName": "钢琴映像",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523740974/piano_reflections.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332890890/taxt_p_music_head_02.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718167794/taxt_p_music_bottom_02.png",
|
|
||||||
"tag": [
|
|
||||||
"浪漫"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "9",
|
|
||||||
"md5": "59D695BB96DF67DBC0F5B064D727DA4A",
|
|
||||||
"songName": "宁静的景色",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523785714/serene_view.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332917335/taxt_p_music_head_04.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718199388/taxt_p_music_bottom_04.png",
|
|
||||||
"tag": [
|
|
||||||
"静谧"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "10",
|
|
||||||
"md5": "1FBFA6AB04AA76168FDFDAFB0E189F4D",
|
|
||||||
"songName": "困倦小猫",
|
|
||||||
"songUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709523857450/sleepy_cat.mp3",
|
|
||||||
"songUrlType": "cloud",
|
|
||||||
"coverHeadImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1711332876104/taxt_p_music_head_01.png",
|
|
||||||
"coverBottomImageUrl": "https://img.zhidaozhixing.com/fileServer/online_car_hailing/1709718149545/taxt_p_music_bottom_01.png",
|
|
||||||
"tag": [
|
|
||||||
"静谧"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -8,7 +8,6 @@ project.android.productFlavors {
|
|||||||
buildConfigField 'int', 'ttsLanguage', "1" // 仅中文
|
buildConfigField 'int', 'ttsLanguage', "1" // 仅中文
|
||||||
buildConfigField 'String', 'URLs', "\"${readFileToJson("mogo").replace("\"", "\\\"")}\""
|
buildConfigField 'String', 'URLs', "\"${readFileToJson("mogo").replace("\"", "\\\"")}\""
|
||||||
buildConfigField 'String', 'mediaUrlConfig', "\"${readMediaUrlConfigFromJsonFile("mogo").replace("\"", "\\\"")}\""
|
buildConfigField 'String', 'mediaUrlConfig', "\"${readMediaUrlConfigFromJsonFile("mogo").replace("\"", "\\\"")}\""
|
||||||
buildConfigField 'String', 'musicUrlConfig', "\"${readMusicUrlConfigFromJsonFile("mogo").replace("\"", "\\\"")}\""
|
|
||||||
}
|
}
|
||||||
yantai {
|
yantai {
|
||||||
dimension "project"
|
dimension "project"
|
||||||
@@ -16,7 +15,6 @@ project.android.productFlavors {
|
|||||||
buildConfigField 'int', 'ttsLanguage', "1 << 1" // 中英韩
|
buildConfigField 'int', 'ttsLanguage', "1 << 1" // 中英韩
|
||||||
buildConfigField 'String', 'URLs', "\"${readFileToJson("yantai").replace("\"", "\\\"")}\""
|
buildConfigField 'String', 'URLs', "\"${readFileToJson("yantai").replace("\"", "\\\"")}\""
|
||||||
buildConfigField 'String', 'mediaUrlConfig', "\"${readMediaUrlConfigFromJsonFile("yantai").replace("\"", "\\\"")}\""
|
buildConfigField 'String', 'mediaUrlConfig', "\"${readMediaUrlConfigFromJsonFile("yantai").replace("\"", "\\\"")}\""
|
||||||
buildConfigField 'String', 'musicUrlConfig', "\"${readMusicUrlConfigFromJsonFile("yantai").replace("\"", "\\\"")}\""
|
|
||||||
}
|
}
|
||||||
|
|
||||||
dali {
|
dali {
|
||||||
@@ -25,7 +23,6 @@ project.android.productFlavors {
|
|||||||
buildConfigField 'int', 'ttsLanguage', "1" // 仅中文
|
buildConfigField 'int', 'ttsLanguage', "1" // 仅中文
|
||||||
buildConfigField 'String', 'URLs', "\"${readFileToJson("dali").replace("\"", "\\\"")}\""
|
buildConfigField 'String', 'URLs', "\"${readFileToJson("dali").replace("\"", "\\\"")}\""
|
||||||
buildConfigField 'String', 'mediaUrlConfig', "\"${readMediaUrlConfigFromJsonFile("dali").replace("\"", "\\\"")}\""
|
buildConfigField 'String', 'mediaUrlConfig', "\"${readMediaUrlConfigFromJsonFile("dali").replace("\"", "\\\"")}\""
|
||||||
buildConfigField 'String', 'musicUrlConfig', "\"${readMusicUrlConfigFromJsonFile("dali").replace("\"", "\\\"")}\""
|
|
||||||
}
|
}
|
||||||
saas {
|
saas {
|
||||||
dimension "project"
|
dimension "project"
|
||||||
@@ -33,7 +30,6 @@ project.android.productFlavors {
|
|||||||
buildConfigField 'int', 'ttsLanguage', "1" // 仅中文
|
buildConfigField 'int', 'ttsLanguage', "1" // 仅中文
|
||||||
buildConfigField 'String', 'URLs', "\"${readFileToJson("saas").replace("\"", "\\\"")}\""
|
buildConfigField 'String', 'URLs', "\"${readFileToJson("saas").replace("\"", "\\\"")}\""
|
||||||
buildConfigField 'String', 'mediaUrlConfig', "\"${readMediaUrlConfigFromJsonFile("saas").replace("\"", "\\\"")}\""
|
buildConfigField 'String', 'mediaUrlConfig', "\"${readMediaUrlConfigFromJsonFile("saas").replace("\"", "\\\"")}\""
|
||||||
buildConfigField 'String', 'musicUrlConfig', "\"${readMusicUrlConfigFromJsonFile("saas").replace("\"", "\\\"")}\""
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// 配置网络环境,QA、线上、演示
|
// 配置网络环境,QA、线上、演示
|
||||||
|
|||||||
@@ -13,17 +13,9 @@ Object readMediaUrlConfigFromJsonFile(env){
|
|||||||
def jsonSlurper = new JsonSlurper()
|
def jsonSlurper = new JsonSlurper()
|
||||||
// 解析json
|
// 解析json
|
||||||
def config = jsonSlurper.parse(file)
|
def config = jsonSlurper.parse(file)
|
||||||
def flavorNames = variantVehicleName()
|
|
||||||
def jsonOutput = new JsonOutput()
|
def jsonOutput = new JsonOutput()
|
||||||
def getKey = flavorNames
|
printf("----------------"+config.get(env))
|
||||||
config.get(env).each {key, value ->
|
return jsonOutput.toJson(config.get(env))
|
||||||
// 匹配flavor对应的 json
|
|
||||||
if(flavorNames.toLowerCase().contains(key)){
|
|
||||||
getKey = key
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return jsonOutput.toJson(config.get(env).get(getKey))
|
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
e.printStackTrace()
|
e.printStackTrace()
|
||||||
}
|
}
|
||||||
@@ -32,35 +24,6 @@ Object readMediaUrlConfigFromJsonFile(env){
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 读取各车型宣传视频本地配置
|
|
||||||
* @param env
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
Object readMusicUrlConfigFromJsonFile(env){
|
|
||||||
try {
|
|
||||||
// 加载config.json 文件
|
|
||||||
File file = new File("${rootDir}/app/config/MusicUrlConfig.json")
|
|
||||||
def jsonSlurper = new JsonSlurper()
|
|
||||||
// 解析json
|
|
||||||
def config = jsonSlurper.parse(file)
|
|
||||||
def flavorNames = variantVehicleName()
|
|
||||||
def jsonOutput = new JsonOutput()
|
|
||||||
def getKey = flavorNames
|
|
||||||
config.get(env).each {key, value ->
|
|
||||||
// 匹配flavor对应的 json
|
|
||||||
if(flavorNames.toLowerCase().contains(key)){
|
|
||||||
getKey = key
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return jsonOutput.toJson(config.get(env).get(getKey))
|
|
||||||
} catch (IOException e) {
|
|
||||||
e.printStackTrace()
|
|
||||||
}
|
|
||||||
return null
|
|
||||||
}
|
|
||||||
|
|
||||||
def variantVehicleName() {
|
def variantVehicleName() {
|
||||||
if(gradle.startParameter.taskNames.size()>0) {
|
if(gradle.startParameter.taskNames.size()>0) {
|
||||||
for (String taskName : gradle.startParameter.taskNames) {
|
for (String taskName : gradle.startParameter.taskNames) {
|
||||||
@@ -106,5 +69,4 @@ ext {
|
|||||||
isDriver = this.&isDriver
|
isDriver = this.&isDriver
|
||||||
isBaiLing = this.&isBaiLing
|
isBaiLing = this.&isBaiLing
|
||||||
readMediaUrlConfigFromJsonFile = this.&readMediaUrlConfigFromJsonFile
|
readMediaUrlConfigFromJsonFile = this.&readMediaUrlConfigFromJsonFile
|
||||||
readMusicUrlConfigFromJsonFile = this.&readMusicUrlConfigFromJsonFile
|
|
||||||
}
|
}
|
||||||
@@ -56,7 +56,6 @@ object ConfigStartUp {
|
|||||||
|
|
||||||
// 各车型宣传视频本地配置json
|
// 各车型宣传视频本地配置json
|
||||||
FunctionBuildConfig.mediaUrlConfig = BuildConfig.mediaUrlConfig
|
FunctionBuildConfig.mediaUrlConfig = BuildConfig.mediaUrlConfig
|
||||||
FunctionBuildConfig.musicUrlConfig = BuildConfig.musicUrlConfig
|
|
||||||
|
|
||||||
//是否支持Patch升级
|
//是否支持Patch升级
|
||||||
FunctionBuildConfig.isSupportPatchUpgrade = BuildConfig.IS_SUPPORT_PATCH_UPGRADE
|
FunctionBuildConfig.isSupportPatchUpgrade = BuildConfig.IS_SUPPORT_PATCH_UPGRADE
|
||||||
|
|||||||
Reference in New Issue
Block a user