如何對媒資進(jìn)行內(nèi)容理解
智能媒資結(jié)構(gòu)化服務(wù)是面向內(nèi)容密度高的長視頻,提供理解、翻譯、提煉等產(chǎn)品化服務(wù),幫助用戶對重點內(nèi)容進(jìn)行識別、標(biāo)記、重組以及反復(fù)觀看。該服務(wù)支持對媒資進(jìn)行智能內(nèi)容分析,并將分析結(jié)果以結(jié)構(gòu)化數(shù)據(jù)的形式存儲在媒資中。通過媒資接口,用戶可以方便地獲取與媒資關(guān)聯(lián)的AI分析結(jié)果,從而提升長內(nèi)容閱讀效率。
使用限制
目前開通的地域為華北 2(北京)、華東 2(上海)、華東 1(杭州),其他地域暫不支持。
費用說明
該功能目前處于公測階段,暫不收費。
使用流程
注冊新媒資(RegisterMediaInfo)或針對已有媒資提交(SubmitMediaAiAnalysisJob),觸發(fā)結(jié)構(gòu)化分析任務(wù)。
分析完成后,任務(wù)結(jié)果存將存儲在媒資對應(yīng)的OSS路徑下的"ice-generated"文件夾。路徑不支持自定義。
待結(jié)果轉(zhuǎn)存完成后,系統(tǒng)發(fā)送回調(diào)通知(MediaAiAnalysisComplete)。
調(diào)用GetMediaInfo接口,獲取結(jié)構(gòu)化智能標(biāo)簽信息。
前提條件
提交標(biāo)簽任務(wù)
注冊新媒資觸發(fā)標(biāo)簽任務(wù)(RegisterMediaInfo)
如果您有新的媒資需要進(jìn)行分析,在注冊新媒資時可以同時觸發(fā)標(biāo)簽任務(wù)。您可以選擇傳入智能標(biāo)簽?zāi)0澹⊿martTagTemplateId),這樣就能使用智能標(biāo)簽?zāi)0暹M(jìn)行分析。接口配置詳情請參見RegisterMediaInfo - 注冊內(nèi)容庫資源。
當(dāng)前的智能媒資結(jié)構(gòu)化服務(wù)僅支持在注冊媒資時傳入智能標(biāo)簽?zāi)0澹恢С滞ㄟ^上傳類接口直接傳入模板。
請求參數(shù)(支持傳入標(biāo)簽?zāi)0?b>)
名稱 | 類型 | 必填 | 描述 | 示例值 |
SmartTagTemplateId | string | 否 | 智能標(biāo)簽?zāi)0?/p>
| S00000101-300080 |
基于已有媒資提交結(jié)構(gòu)化分析任務(wù)(SubmitMediaAiAnalysisJob)
如果您已有媒資,并希望進(jìn)行結(jié)構(gòu)化分析,可以使用該接口。您需要提供相關(guān)的任務(wù)參數(shù),包括參數(shù)模板、回調(diào)URL、自定義數(shù)據(jù)等。任務(wù)完成后,將回調(diào)通知您的服務(wù)器,并存儲分析結(jié)果在用戶的OSS路徑下的"ice-generated"文件夾中。接口配置詳情請參見SubmitMediaAiAnalysisJob。
入?yún)⑹纠?/b>
{
"AnalysisParams": "{\"NlpParams\":{\"SummarizationEnabled\":true,\"SourceLanguage\":\"cn\",\"AutoChaptersEnabled\":true,\"TargetLanguages\":\"en\",\"MeetingAssistanceEnabled\":true,\"DiarizationEnabled\":true,\"SummarizationTypes\":\"Paragraph,Conversational,QuestionsAnswering,MindMap\",\"TranslationEnabled\":true,\"SpeakerCount\":2}}",
"Input": "{\"Media\": \"****0d30005971efbfc4f7f6c75a6302****\", \"Type\": \"Media\"}"
}
系統(tǒng)發(fā)送回調(diào)通知
回調(diào)設(shè)置
通過SubmitMediaAiAnalysisJob提交結(jié)構(gòu)化分析或通過RegisterMediaInfo觸發(fā)自動標(biāo)簽分析任務(wù)時,在接口請求參數(shù)中傳入一個包含HTTP(S)或MNS回調(diào)地址的UserData參數(shù),一旦標(biāo)簽任務(wù)完成并將結(jié)果寫回媒資后,系統(tǒng)會給用戶發(fā)送回調(diào)通知。
用戶在收到回調(diào)通知后,可以調(diào)用GetMediaInfo接口,傳入媒資ID,以獲取與媒資關(guān)聯(lián)的結(jié)構(gòu)化智能標(biāo)簽信息。
回調(diào)事件類型
媒資AI分析并入庫完成(MediaAiAnalysisComplete)
消息體示例:
{
"EventType": "MediaAiAnalysisComplete",
"UserId": 183320223010****,
"EventTime": "2022-06-23T13:11:33Z",
"MessageBody": {
"Status":"Success", // AI信息是否入庫成功 取值:Success/Failed
"JobStatus": "AnalyzeSuccess", // AI 任務(wù)狀態(tài) 取值:AnalyzeSuccess/AnalyzeFailed
"Type": "StandardSmartTag" // AI 任務(wù)類型,取值:StandardSmartTag
"MediaId":"****b391419aj294m83b459f7435****" // 媒資 ID
}
}
消息體參數(shù)字段說明詳情請參見事件列表。
獲取媒資信息(GetMediaInfo)
通過調(diào)用該接口,您可以獲取媒資的結(jié)構(gòu)化智能標(biāo)簽信息。根據(jù)您的需求,可以選擇是否返回詳細(xì)信息。接口配置詳情請參見GetMediaInfo - 獲取媒資內(nèi)容信息。
請求參數(shù)(選擇是否返回詳細(xì)信息)
名稱 | 類型 | 必填 | 描述 | 示例值 |
ReturnDetailedInfo | string | 否 | 配置對應(yīng)媒資字段是否返回詳細(xì)信息。不配置時,默認(rèn)AiRoughData.StandardSmartTagJob = false。
| {"AiRoughData.StandardSmartTagJob": true} |
返回示例
{ "RequestId": "2FDE2411-DB8D-4A9A-875B-275798F14A5E", "MediaInfo": { "MediaId": "****20b48fb04483915d4f2cd8ac****", "MediaBasicInfo": { "MediaId": "****20b48fb04483915d4f2cd8ac****", "InputURL": "https://example-bucket.oss-cn-shanghai.aliyuncs.com/example.mp4", "MediaType": "video", "BusinessType": "general", "Source": "oss", "Title": "標(biāo)題", "Description": "描述", "Category": "分類", "MediaTags": "標(biāo)簽,tag1", "CoverURL": "http://example-bucket.oss-cn-shanghai.aliyuncs.com/example.png?Expires=<ExpireTime>&OSSAccessKeyId=<OSSAccessKeyId>&Signature=<Signature>&security-token=<SecurityToken>", "UserData": "userDataTest", "Status": "Normal", "CreateTime": "2020-12-26T04:11:08Z", "ModifiedTime": "2020-12-26T04:11:10Z", "DeletedTime": "2020-12-26T04:11:15Z", "SpriteImages": "[{\"bucket\":\"example-bucket\",\"count\":\"32\",\"iceJobId\":\"******83ec44d58b2069def2e******\",\"location\":\"oss-cn-shanghai\",\"snapshotRegular\":\"example/example-{Count}.jpg\",\"spriteRegular\":\"example/example-{TileCount}.jpg\",\"templateId\":\"******e438b14ff39293eaec25******\",\"tileCount\":\"1\"}]", "CateId": 3048, "Biz": "ICE", "UploadSource": "general", "CateName": "cateName", "ReferenceId": "123-1234" }, "FileInfoList": [ { "FileBasicInfo": { "FileName": "example.mp4", "FileStatus": "Normal", "FileType": "source_file", "FileSize": "30611502", "FileUrl": "http://example-bucket.oss-cn-shanghai.aliyuncs.com/example.mp4?Expires=<ExpireTime>&OSSAccessKeyId=<OSSAccessKeyId>&Signature=<Signature>&security-token=<SecurityToken>", "Region": "cn-shanghai", "FormatName": "mov,mp4,m4a,3gp,3g2,mj2", "Duration": "216.206667", "Bitrate": "1132.68", "Width": "960", "Height": "540", "CreateTime": "2020-12-26T04:11:08Z", "ModifiedTime": "2020-12-26T04:11:10Z" }, "AudioStreamInfoList": [ { "Index": "1", "CodecName": "aac", "CodecLongName": "AAC (Advanced Audio Coding)", "CodecTimeBase": "1/24000", "CodecTagString": "mp4a", "CodecTag": "0x6134706d", "Profile": "High", "SampleFmt": "fltp", "SampleRate": "44100", "Channels": "2", "ChannelLayout": "stereo", "Timebase": "1/44100", "StartTime": "0.000000", "Duration": "16.200998", "Bitrate": "127.794", "Fps": "8", "NumFrames": "10", "Lang": "und" } ], "VideoStreamInfoList": [ { "Index": "0", "CodecName": "h264", "CodecLongName": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", "Profile": "High", "CodecTimeBase": "1/48", "CodecTagString": "[0][0][0][0]", "CodecTag": "0x0000", "Width": "960", "Height": "540", "HasBFrames": "2", "Sar": "0:1", "Dar": "0:1", "PixFmt": "yuv420p", "Level": "30", "Fps": "24.0", "AvgFPS": "24.0", "Timebase": "1/12288", "StartTime": "0.081706", "Duration": "216.206706", "Bitrate": "1001.594", "NumFrames": "5184", "Lang": "und", "Rotate": "0", "Nb_frames": "5184" } ], "SubtitleStreamInfoList": [ { "Index": "1", "CodecName": "srt", "CodecLongName": "SubRip Text", "CodecTimeBase": "29.97", "CodecTagString": "unicode", "CodecTag": "unicode", "Timebase": "30", "StartTime": "0", "Duration": "1", "Lang": "und" } ] } ], "AiRoughData": { // 多模搜入門版標(biāo)簽 "Result": "https://sample-bucket.cn-shanghai.aliyuncs.com/result.json", "Status": "Analyzing", "SaveType": "TEXT", "AiCategory": "生活", "AiJobId": "****483915d4f2cd8ac20b48fb04****", // 標(biāo)準(zhǔn)版標(biāo)簽 "StandardSmartTagJob": { "AiJobId": "xxx", "Status": "Success", "ResultUrl": "http://xx.oss-cn-shanghai.aliyuncs.com/result2.txt", "Results": [ { "Data": "{\"autoChapters\":[{\"start\":29830,\"headline\":\"外貌困擾與解決方式\",\"summary\":\"對話中提到了外貌困擾給女性帶來的傷害,以及解決這個問題的兩種方法:一是通過自身努力獲得成就,二是接受大眾審美。然而,這兩種方式都需要強(qiáng)大的心理承受能力。同時,對于選擇接受大眾審美的人,既會受到認(rèn)同者的贊賞,又會受到不認(rèn)同者的指責(zé)。因此,需要在心理上做好準(zhǔn)備,以應(yīng)對外界的質(zhì)疑和傷害。\",\"end\":169720,\"id\":1}],\"meetingAssistance\":{\"keywords\":[\"困擾\",\"外貌\",\"標(biāo)簽\",\"指責(zé)\",\"認(rèn)同大眾\",\"心理\",\"網(wǎng)紅\",\"女性\",\"屈服\",\"審美\",\"基因\"]}}", "Type": "NLP" } ] } } } }
{ "RequestId": "2FDE2411-DB8D-4A9A-875B-275798F14A5E", "MediaInfo": { "MediaId": "****20b48fb04483915d4f2cd8ac****", "MediaBasicInfo": { "MediaId": "****20b48fb04483915d4f2cd8ac****", "InputURL": "https://example-bucket.oss-cn-shanghai.aliyuncs.com/example.mp4", "MediaType": "video", "BusinessType": "general", "Source": "oss", "Title": "標(biāo)題", "Description": "描述", "Category": "分類", "MediaTags": "標(biāo)簽,tag1", "CoverURL": "http://example-bucket.oss-cn-shanghai.aliyuncs.com/example.png?Expires=<ExpireTime>&OSSAccessKeyId=<OSSAccessKeyId>&Signature=<Signature>&security-token=<SecurityToken>", "UserData": "userDataTest", "Status": "Normal", "CreateTime": "2020-12-26T04:11:08Z", "ModifiedTime": "2020-12-26T04:11:10Z", "DeletedTime": "2020-12-26T04:11:15Z", "SpriteImages": "[{\"bucket\":\"example-bucket\",\"count\":\"32\",\"iceJobId\":\"******83ec44d58b2069def2e******\",\"location\":\"oss-cn-shanghai\",\"snapshotRegular\":\"example/example-{Count}.jpg\",\"spriteRegular\":\"example/example-{TileCount}.jpg\",\"templateId\":\"******e438b14ff39293eaec25******\",\"tileCount\":\"1\"}]", "CateId": 3048, "Biz": "ICE", "UploadSource": "general", "CateName": "cateName", "ReferenceId": "123-1234" }, "FileInfoList": [ { "FileBasicInfo": { "FileName": "example.mp4", "FileStatus": "Normal", "FileType": "source_file", "FileSize": "30611502", "FileUrl": "http://example-bucket.oss-cn-shanghai.aliyuncs.com/example.mp4?Expires=<ExpireTime>&OSSAccessKeyId=<OSSAccessKeyId>&Signature=<Signature>&security-token=<SecurityToken>", "Region": "cn-shanghai", "FormatName": "mov,mp4,m4a,3gp,3g2,mj2", "Duration": "216.206667", "Bitrate": "1132.68", "Width": "960", "Height": "540", "CreateTime": "2020-12-26T04:11:08Z", "ModifiedTime": "2020-12-26T04:11:10Z" }, "AudioStreamInfoList": [ { "Index": "1", "CodecName": "aac", "CodecLongName": "AAC (Advanced Audio Coding)", "CodecTimeBase": "1/24000", "CodecTagString": "mp4a", "CodecTag": "0x6134706d", "Profile": "High", "SampleFmt": "fltp", "SampleRate": "44100", "Channels": "2", "ChannelLayout": "stereo", "Timebase": "1/44100", "StartTime": "0.000000", "Duration": "16.200998", "Bitrate": "127.794", "Fps": "8", "NumFrames": "10", "Lang": "und" } ], "VideoStreamInfoList": [ { "Index": "0", "CodecName": "h264", "CodecLongName": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", "Profile": "High", "CodecTimeBase": "1/48", "CodecTagString": "[0][0][0][0]", "CodecTag": "0x0000", "Width": "960", "Height": "540", "HasBFrames": "2", "Sar": "0:1", "Dar": "0:1", "PixFmt": "yuv420p", "Level": "30", "Fps": "24.0", "AvgFPS": "24.0", "Timebase": "1/12288", "StartTime": "0.081706", "Duration": "216.206706", "Bitrate": "1001.594", "NumFrames": "5184", "Lang": "und", "Rotate": "0", "Nb_frames": "5184" } ], "SubtitleStreamInfoList": [ { "Index": "1", "CodecName": "srt", "CodecLongName": "SubRip Text", "CodecTimeBase": "29.97", "CodecTagString": "unicode", "CodecTag": "unicode", "Timebase": "30", "StartTime": "0", "Duration": "1", "Lang": "und" } ] } ], "AiRoughData": { // 多模搜入門版標(biāo)簽 "Result": "https://sample-bucket.cn-shanghai.aliyuncs.com/result.json", "Status": "Analyzing", "SaveType": "TEXT", "AiCategory": "生活", "AiJobId": "****483915d4f2cd8ac20b48fb04****", // 標(biāo)準(zhǔn)版智能標(biāo)簽 "StandardSmartTagJob": { "AiJobId": "xxx", "Status": "Success", "ResultUrl": "http://xx.oss-cn-shanghai.aliyuncs.com/result2.txt", "Results":[ { "Data":"{\"autoChapters\":[{\"start\":29830,\"headline\":\"外貌困擾與解決方式\",\"summary\":\"對話中提到了外貌困擾給女性帶來的傷害,以及解決這個問題的兩種方法:一是通過自身努力獲得成就,二是接受大眾審美。然而,這兩種方式都需要強(qiáng)大的心理承受能力。同時,對于選擇接受大眾審美的人,既會受到認(rèn)同者的贊賞,又會受到不認(rèn)同者的指責(zé)。因此,需要在心理上做好準(zhǔn)備,以應(yīng)對外界的質(zhì)疑和傷害。\",\"end\":169720,\"id\":1}],\"meetingAssistance\":{\"classifications\":{\"lecture\":0.13275695,\"meeting\":0.148536,\"interview\":0.7187071},\"keywords\":[\"困擾\",\"外貌\",\"標(biāo)簽\",\"指責(zé)\",\"認(rèn)同大眾\",\"心理\",\"網(wǎng)紅\",\"女性\",\"屈服\",\"審美\",\"基因\"],\"keySentences\":[{\"start\":23280,\"sentenceId\":6,\"end\":29330,\"text\":\"而她內(nèi)心最渴望的兩個標(biāo)簽之中,美女這個詞多多少少讓人有些意外。\",\"id\":1},{\"start\":112600,\"sentenceId\":23,\"end\":119828,\"text\":\"我覺得第一種和第二種都需要非常強(qiáng)大的心理,你選哪種都行。\",\"id\":2},{\"start\":120430,\"sentenceId\":24,\"end\":124040,\"text\":\"第一個就是我厲害,我靈魂自由。\",\"id\":3},{\"start\":146730,\"sentenceId\":27,\"end\":152180,\"text\":\"第二種我覺得就更需要強(qiáng)大的心理,還疼又疼你要承受非議。\",\"id\":4},{\"start\":152490,\"sentenceId\":28,\"end\":165983,\"text\":\"同時你要承認(rèn)你向大眾審美屈服了,然后就是那兩撥人都會指責(zé)你,就不認(rèn)同大眾審美的人會指責(zé)你屈服了,認(rèn)同大眾審美的人會指責(zé)你假。\",\"id\":5}]},\"summarization\":{\"conversationalSummary\":[{\"speakerName\":\"發(fā)言人3\",\"speakerId\":\"3\",\"summary\":\"她表示,北大學(xué)霸、網(wǎng)紅、天才少女等標(biāo)簽對于李雪琴來說并不重要,但她內(nèi)心最渴望的兩個標(biāo)簽中,美女這個詞讓人有些意外。\"},{\"speakerName\":\"發(fā)言人1\",\"speakerId\":\"1\",\"summary\":\"詢問對方是否想要給自己標(biāo)簽,是否有外貌問題困擾過自己。他提出了兩種解決方式,一是努力去做專業(yè),有成績;二是干脆去打一針切一刀。最后,他詢問對方對這個問題的看法。\"},{\"speakerName\":\"發(fā)言人2\",\"speakerId\":\"2\",\"summary\":\"她自稱是喜劇從業(yè)者,提到了戰(zhàn)爭美女的話題。她認(rèn)為如果全世界的人都想到她第一個想到的是美女,那么這個世界上的審美就不會對很多女性那么苛刻了。她也分享了自己在生活中感受到的排斥和傷害,認(rèn)為無論是選擇自由還是選擇承受非議,都需要強(qiáng)大的心理。同時,她也指出向大眾審美屈服會被指責(zé)假,而不認(rèn)同大眾審美的人也會指責(zé)你屈服了。她認(rèn)為自己需要想大家心里,才能做到最好。\"}],\"questionsAnsweringSummary\":[{\"answer\":\"喜劇從業(yè)者。\",\"sentenceIdsOfQuestion\":[1],\"sentenceIdsOfAnswer\":[2],\"question\":\"你想給自己什么樣的標(biāo)簽?\"},{\"answer\":\"北大學(xué)霸、網(wǎng)紅、天才少女。\",\"sentenceIdsOfQuestion\":[3],\"sentenceIdsOfAnswer\":[5,6],\"question\":\"別的有沒有什么像是?\"},{\"answer\":\"困擾過,因為受到排斥和傷害。\",\"sentenceIdsOfQuestion\":[8],\"sentenceIdsOfAnswer\":[9,10,11],\"question\":\"外貌問題困擾過你嗎?\"},{\"answer\":\"第一種是通過個人努力和專業(yè)成就來解決,第二種是通過外貌改變來解決。\",\"sentenceIdsOfQuestion\":[18,19,20,21,22],\"sentenceIdsOfAnswer\":[18,19,20,21,22],\"question\":\"你認(rèn)為女性在外貌上困擾的解決方式是什么?\"}],\"paragraphSummary\":\"李雪琴表示她不在乎被標(biāo)簽為喜劇從業(yè)者或戰(zhàn)爭美女等大眾津津樂道的標(biāo)簽,但她希望成為人們第一個想到的美女,這樣世界上對女性的審美就不會那么苛刻。她承認(rèn)外貌問題曾經(jīng)困擾過她,因為她主觀上知道美是多元的,但在生活中感受到的排斥和傷害是真實的。她提到了兩種解決外貌困擾的方法:一是通過努力獲得成就和認(rèn)可,二是接受大眾審美并用自己的人格和美好掩蓋其他人對她的歧視。對于這兩種方法,她認(rèn)為都需要強(qiáng)大的心理,同時也會面臨來自不同方面的指責(zé)。\"},\"transcription\":{\"paragraphs\":[{\"paragraphId\":\"1702974525131500000\",\"words\":[{\"start\":60,\"sentenceId\":1,\"end\":1084,\"text\":\"如果可以\",\"id\":10},{\"start\":1084,\"sentenceId\":1,\"end\":1596,\"text\":\"的話,\",\"id\":20},{\"start\":1600,\"sentenceId\":1,\"end\":1736,\"text\":\"你\",\"id\":30},{\"start\":1736,\"sentenceId\":1,\"end\":1872,\"text\":\"想\",\"id\":40},{\"start\":1872,\"sentenceId\":1,\"end\":2008,\"text\":\"給\",\"id\":50},{\"start\":2008,\"sentenceId\":1,\"end\":2280,\"text\":\"自己\",\"id\":60},{\"start\":2280,\"sentenceId\":1,\"end\":2688,\"text\":\"什么樣\",\"id\":70},{\"start\":2688,\"sentenceId\":1,\"end\":2824,\"text\":\"的\",\"id\":80},{\"start\":2824,\"sentenceId\":1,\"end\":3096,\"text\":\"標(biāo)簽?\",\"id\":90}],\"speakerId\":\"1\"},{\"paragraphId\":\"1702974528451500000\",\"words\":[{\"start\":3380,\"sentenceId\":2,\"end\":4120,\"text\":\"喜劇\",\"id\":100},{\"start\":4120,\"sentenceId\":2,\"end\":5230,\"text\":\"從業(yè)者\",\"id\":110},{\"start\":5230,\"sentenceId\":2,\"end\":5600,\"text\":\"吧。\",\"id\":120}],\"speakerId\":\"2\"},{\"paragraphId\":\"1702974533881500000\",\"words\":[{\"start\":8810,\"sentenceId\":3,\"end\":9320,\"text\":\"別的\",\"id\":130},{\"start\":9320,\"sentenceId\":3,\"end\":10085,\"text\":\"有沒有\(zhòng)",\"id\":140},{\"start\":10085,\"sentenceId\":3,\"end\":10595,\"text\":\"什么\",\"id\":150},{\"start\":10595,\"sentenceId\":3,\"end\":11105,\"text\":\"像是。\",\"id\":160}],\"speakerId\":\"1\"},{\"paragraphId\":\"1702974536176500000\",\"words\":[{\"start\":11105,\"sentenceId\":4,\"end\":11615,\"text\":\"戰(zhàn)爭\",\"id\":170},{\"start\":11615,\"sentenceId\":4,\"end\":12125,\"text\":\"美女,\",\"id\":180},{\"start\":13330,\"sentenceId\":4,\"end\":13690,\"text\":\"可以嗎?\",\"id\":190}],\"speakerId\":\"2\"},{\"paragraphId\":\"1702974538871500000\",\"words\":[{\"start\":13800,\"sentenceId\":5,\"end\":14135,\"text\":\"北\",\"id\":200},{\"start\":14135,\"sentenceId\":5,\"end\":14805,\"text\":\"大學(xué)\",\"id\":210},{\"start\":14805,\"sentenceId\":5,\"end\":15140,\"text\":\"霸、\",\"id\":220},{\"start\":15320,\"sentenceId\":5,\"end\":15620,\"text\":\"網(wǎng)\",\"id\":230},{\"start\":15620,\"sentenceId\":5,\"end\":15920,\"text\":\"紅、\",\"id\":240},{\"start\":16350,\"sentenceId\":5,\"end\":17230,\"text\":\"天才少女,\",\"id\":250},{\"start\":17840,\"sentenceId\":5,\"end\":18224,\"text\":\"對于\",\"id\":260},{\"start\":18224,\"sentenceId\":5,\"end\":18608,\"text\":\"這些\",\"id\":270},{\"start\":18608,\"sentenceId\":5,\"end\":18992,\"text\":\"大眾\",\"id\":280},{\"start\":18992,\"sentenceId\":5,\"end\":19760,\"text\":\"津津樂道\",\"id\":290},{\"start\":19760,\"sentenceId\":5,\"end\":19952,\"text\":\"的\",\"id\":300},{\"start\":19952,\"sentenceId\":5,\"end\":20336,\"text\":\"標(biāo)簽,\",\"id\":310},{\"start\":20770,\"sentenceId\":5,\"end\":21349,\"text\":\"李雪琴\",\"id\":320},{\"start\":21349,\"sentenceId\":5,\"end\":21735,\"text\":\"表現(xiàn)\",\"id\":330},{\"start\":21735,\"sentenceId\":5,\"end\":21928,\"text\":\"得\",\"id\":340},{\"start\":21928,\"sentenceId\":5,\"end\":22700,\"text\":\"毫不在乎。\",\"id\":350},{\"start\":23280,\"sentenceId\":6,\"end\":23458,\"text\":\"而\",\"id\":360},{\"start\":23458,\"sentenceId\":6,\"end\":23636,\"text\":\"她\",\"id\":370},{\"start\":23636,\"sentenceId\":6,\"end\":23992,\"text\":\"內(nèi)心\",\"id\":380},{\"start\":23992,\"sentenceId\":6,\"end\":24170,\"text\":\"最\",\"id\":390},{\"start\":24170,\"sentenceId\":6,\"end\":24526,\"text\":\"渴望\",\"id\":400},{\"start\":24526,\"sentenceId\":6,\"end\":24704,\"text\":\"的\",\"id\":410},{\"start\":24704,\"sentenceId\":6,\"end\":25060,\"text\":\"兩個\",\"id\":420},{\"start\":25060,\"sentenceId\":6,\"end\":25416,\"text\":\"標(biāo)簽\",\"id\":430},{\"start\":25416,\"sentenceId\":6,\"end\":25772,\"text\":\"之中,\",\"id\":440},{\"start\":26420,\"sentenceId\":6,\"end\":26808,\"text\":\"美女\",\"id\":450},{\"start\":26808,\"sentenceId\":6,\"end\":27196,\"text\":\"這個\",\"id\":460},{\"start\":27196,\"sentenceId\":6,\"end\":27390,\"text\":\"詞\",\"id\":470},{\"start\":27390,\"sentenceId\":6,\"end\":28166,\"text\":\"多多少少\",\"id\":480},{\"start\":28166,\"sentenceId\":6,\"end\":28554,\"text\":\"讓人\",\"id\":490},{\"start\":28554,\"sentenceId\":6,\"end\":28942,\"text\":\"有些\",\"id\":500},{\"start\":28942,\"sentenceId\":6,\"end\":29330,\"text\":\"意外。\",\"id\":510}],\"speakerId\":\"3\"},{\"paragraphId\":\"1702974554901500000\",\"words\":[{\"start\":29830,\"sentenceId\":7,\"end\":30366,\"text\":\"我要\",\"id\":520},{\"start\":30366,\"sentenceId\":7,\"end\":31170,\"text\":\"我希望\",\"id\":530},{\"start\":31170,\"sentenceId\":7,\"end\":32510,\"text\":\"如果有一天\",\"id\":540},{\"start\":32510,\"sentenceId\":7,\"end\":33314,\"text\":\"全世界\",\"id\":550},{\"start\":33314,\"sentenceId\":7,\"end\":33582,\"text\":\"的\",\"id\":560},{\"start\":33582,\"sentenceId\":7,\"end\":33850,\"text\":\"人\",\"id\":570},{\"start\":33850,\"sentenceId\":7,\"end\":34386,\"text\":\"想到\",\"id\":580},{\"start\":34386,\"sentenceId\":7,\"end\":34654,\"text\":\"我\",\"id\":590},{\"start\":34654,\"sentenceId\":7,\"end\":35458,\"text\":\"第一個\",\"id\":600},{\"start\":35458,\"sentenceId\":7,\"end\":35994,\"text\":\"想到\",\"id\":610},{\"start\":35994,\"sentenceId\":7,\"end\":36262,\"text\":\"是\",\"id\":620},{\"start\":36262,\"sentenceId\":7,\"end\":36798,\"text\":\"美女,\",\"id\":630},{\"start\":37740,\"sentenceId\":7,\"end\":37974,\"text\":\"那\",\"id\":640},{\"start\":37974,\"sentenceId\":7,\"end\":38208,\"text\":\"我\",\"id\":650},{\"start\":38208,\"sentenceId\":7,\"end\":38676,\"text\":\"覺得\",\"id\":660},{\"start\":38676,\"sentenceId\":7,\"end\":39144,\"text\":\"這個\",\"id\":670},{\"start\":39144,\"sentenceId\":7,\"end\":39846,\"text\":\"世界上\",\"id\":680},{\"start\":39846,\"sentenceId\":7,\"end\":40080,\"text\":\"的\",\"id\":690},{\"start\":40080,\"sentenceId\":7,\"end\":40548,\"text\":\"審美\",\"id\":700},{\"start\":40548,\"sentenceId\":7,\"end\":40782,\"text\":\"就\",\"id\":710},{\"start\":40782,\"sentenceId\":7,\"end\":41250,\"text\":\"不會\",\"id\":720},{\"start\":41250,\"sentenceId\":7,\"end\":41484,\"text\":\"對\",\"id\":730},{\"start\":41484,\"sentenceId\":7,\"end\":41952,\"text\":\"很多\",\"id\":740},{\"start\":41952,\"sentenceId\":7,\"end\":42420,\"text\":\"女性\",\"id\":750},{\"start\":42420,\"sentenceId\":7,\"end\":42888,\"text\":\"那么\",\"id\":760},{\"start\":42888,\"sentenceId\":7,\"end\":43356,\"text\":\"苛刻\",\"id\":770},{\"start\":43356,\"sentenceId\":7,\"end\":43590,\"text\":\"了。\",\"id\":780}],\"speakerId\":\"2\"},{\"paragraphId\":\"1702974568671500000\",\"words\":[{\"start\":43600,\"sentenceId\":8,\"end\":43920,\"text\":\"外貌\",\"id\":790},{\"start\":43920,\"sentenceId\":8,\"end\":44240,\"text\":\"問題\",\"id\":800},{\"start\":44240,\"sentenceId\":8,\"end\":44560,\"text\":\"困擾\",\"id\":810},{\"start\":44560,\"sentenceId\":8,\"end\":44720,\"text\":\"過\",\"id\":820},{\"start\":44720,\"sentenceId\":8,\"end\":44880,\"text\":\"你\",\"id\":830},{\"start\":44880,\"sentenceId\":8,\"end\":45040,\"text\":\"嗎?\",\"id\":840}],\"speakerId\":\"1\"},{\"paragraphId\":\"1702974570361500000\",\"words\":[{\"start\":45290,\"sentenceId\":9,\"end\":45690,\"text\":\"困擾\",\"id\":850},{\"start\":45690,\"sentenceId\":9,\"end\":45890,\"text\":\"過\",\"id\":860},{\"start\":45890,\"sentenceId\":9,\"end\":46090,\"text\":\"我。\",\"id\":870},{\"start\":46480,\"sentenceId\":10,\"end\":47305,\"text\":\"因為我\",\"id\":880},{\"start\":47305,\"sentenceId\":10,\"end\":47580,\"text\":\"我\",\"id\":890},{\"start\":47580,\"sentenceId\":10,\"end\":48130,\"text\":\"主觀\",\"id\":900},{\"start\":48130,\"sentenceId\":10,\"end\":48405,\"text\":\"上\",\"id\":910},{\"start\":48405,\"sentenceId\":10,\"end\":48955,\"text\":\"知道\",\"id\":920},{\"start\":48955,\"sentenceId\":10,\"end\":49230,\"text\":\"美\",\"id\":930},{\"start\":49230,\"sentenceId\":10,\"end\":49505,\"text\":\"是\",\"id\":940},{\"start\":49505,\"sentenceId\":10,\"end\":50055,\"text\":\"多元\",\"id\":950},{\"start\":50055,\"sentenceId\":10,\"end\":50330,\"text\":\"的,\",\"id\":960},{\"start\":50740,\"sentenceId\":10,\"end\":51250,\"text\":\"不應(yīng)該\",\"id\":970},{\"start\":51250,\"sentenceId\":10,\"end\":51420,\"text\":\"從\",\"id\":980},{\"start\":51420,\"sentenceId\":10,\"end\":51760,\"text\":\"外貌\",\"id\":990},{\"start\":51760,\"sentenceId\":10,\"end\":51930,\"text\":\"去\",\"id\":1000},{\"start\":51930,\"sentenceId\":10,\"end\":52270,\"text\":\"界定\",\"id\":1010},{\"start\":52270,\"sentenceId\":10,\"end\":52780,\"text\":\"一個人。\",\"id\":1020},{\"start\":53140,\"sentenceId\":11,\"end\":53812,\"text\":\"但是\",\"id\":1030},{\"start\":53812,\"sentenceId\":11,\"end\":54484,\"text\":\"那是\",\"id\":1040},{\"start\":54484,\"sentenceId\":11,\"end\":55156,\"text\":\"理性\",\"id\":1050},{\"start\":55156,\"sentenceId\":11,\"end\":55492,\"text\":\"上\",\"id\":1060},{\"start\":55492,\"sentenceId\":11,\"end\":55828,\"text\":\"的,\",\"id\":1070},{\"start\":55830,\"sentenceId\":11,\"end\":55984,\"text\":\"但\",\"id\":1080},{\"start\":55984,\"sentenceId\":11,\"end\":56138,\"text\":\"我\",\"id\":1090},{\"start\":56138,\"sentenceId\":11,\"end\":56754,\"text\":\"在生活中\(zhòng)",\"id\":1100},{\"start\":56754,\"sentenceId\":11,\"end\":57216,\"text\":\"感受到\",\"id\":1110},{\"start\":57216,\"sentenceId\":11,\"end\":57370,\"text\":\"的\",\"id\":1120},{\"start\":57370,\"sentenceId\":11,\"end\":57678,\"text\":\"排斥\",\"id\":1130},{\"start\":57678,\"sentenceId\":11,\"end\":57832,\"text\":\"和\",\"id\":1140},{\"start\":57832,\"sentenceId\":11,\"end\":58140,\"text\":\"傷害\",\"id\":1150},{\"start\":58140,\"sentenceId\":11,\"end\":58294,\"text\":\"是\",\"id\":1160},{\"start\":58294,\"sentenceId\":11,\"end\":58756,\"text\":\"真實的。\",\"id\":1170}],\"speakerId\":\"2\"},{\"paragraphId\":\"1702974584141500000\",\"words\":[{\"start\":59070,\"sentenceId\":12,\"end\":59227,\"text\":\"你\",\"id\":1180},{\"start\":59227,\"sentenceId\":12,\"end\":59384,\"text\":\"想\",\"id\":1190},{\"start\":59384,\"sentenceId\":12,\"end\":59698,\"text\":\"我想\",\"id\":1200},{\"start\":59698,\"sentenceId\":12,\"end\":59855,\"text\":\"我\",\"id\":1210},{\"start\":59855,\"sentenceId\":12,\"end\":60169,\"text\":\"之前\",\"id\":1220},{\"start\":60169,\"sentenceId\":12,\"end\":60326,\"text\":\"講,\",\"id\":1230},{\"start\":60330,\"sentenceId\":12,\"end\":60452,\"text\":\"我\",\"id\":1240},{\"start\":60452,\"sentenceId\":12,\"end\":60696,\"text\":\"小的\",\"id\":1250},{\"start\":60696,\"sentenceId\":12,\"end\":60940,\"text\":\"時候,\",\"id\":1260},{\"start\":60940,\"sentenceId\":12,\"end\":61182,\"text\":\"人家\",\"id\":1270},{\"start\":61182,\"sentenceId\":12,\"end\":61303,\"text\":\"就\",\"id\":1280},{\"start\":61303,\"sentenceId\":12,\"end\":61666,\"text\":\"因為我\",\"id\":1290},{\"start\":61666,\"sentenceId\":12,\"end\":61787,\"text\":\"長\",\"id\":1300},{\"start\":61787,\"sentenceId\":12,\"end\":61908,\"text\":\"得\",\"id\":1310},{\"start\":61908,\"sentenceId\":12,\"end\":62271,\"text\":\"不好看\",\"id\":1320},{\"start\":62271,\"sentenceId\":12,\"end\":62392,\"text\":\"胖,\",\"id\":1330},{\"start\":62400,\"sentenceId\":12,\"end\":62714,\"text\":\"然后\",\"id\":1340},{\"start\":62714,\"sentenceId\":12,\"end\":63028,\"text\":\"不跟\",\"id\":1350},{\"start\":63028,\"sentenceId\":12,\"end\":63185,\"text\":\"我\",\"id\":1360},{\"start\":63185,\"sentenceId\":12,\"end\":63499,\"text\":\"玩兒。\",\"id\":1370},{\"start\":64720,\"sentenceId\":13,\"end\":65138,\"text\":\"然后\",\"id\":1380},{\"start\":65138,\"sentenceId\":13,\"end\":65765,\"text\":\"長大了\",\"id\":1390},{\"start\":65765,\"sentenceId\":13,\"end\":66183,\"text\":\"之后\",\"id\":1400},{\"start\":66183,\"sentenceId\":13,\"end\":66601,\"text\":\"也會\",\"id\":1410},{\"start\":66601,\"sentenceId\":13,\"end\":66810,\"text\":\"有\(zhòng)",\"id\":1420},{\"start\":66810,\"sentenceId\":13,\"end\":67228,\"text\":\"男生\",\"id\":1430},{\"start\":67228,\"sentenceId\":13,\"end\":67437,\"text\":\"說\",\"id\":1440},{\"start\":67437,\"sentenceId\":13,\"end\":68064,\"text\":\"我是我\",\"id\":1450},{\"start\":68064,\"sentenceId\":13,\"end\":68482,\"text\":\"之前\",\"id\":1460},{\"start\":68482,\"sentenceId\":13,\"end\":68691,\"text\":\"老\",\"id\":1470},{\"start\":68691,\"sentenceId\":13,\"end\":68900,\"text\":\"說\",\"id\":1480},{\"start\":68900,\"sentenceId\":13,\"end\":69318,\"text\":\"我想\",\"id\":1490},{\"start\":69318,\"sentenceId\":13,\"end\":69527,\"text\":\"找\",\"id\":1500},{\"start\":69527,\"sentenceId\":13,\"end\":69736,\"text\":\"個\",\"id\":1510},{\"start\":69736,\"sentenceId\":13,\"end\":70154,\"text\":\"基因\",\"id\":1520},{\"start\":70154,\"sentenceId\":13,\"end\":70572,\"text\":\"好的。\",\"id\":1530},{\"start\":70730,\"sentenceId\":14,\"end\":71040,\"text\":\"然后\",\"id\":1540},{\"start\":71040,\"sentenceId\":14,\"end\":71350,\"text\":\"包括\",\"id\":1550},{\"start\":71350,\"sentenceId\":14,\"end\":71505,\"text\":\"當(dāng)\",\"id\":1560},{\"start\":71505,\"sentenceId\":14,\"end\":71660,\"text\":\"了\",\"id\":1570},{\"start\":71660,\"sentenceId\":14,\"end\":71970,\"text\":\"成為\",\"id\":1580},{\"start\":71970,\"sentenceId\":14,\"end\":72280,\"text\":\"一個\",\"id\":1590},{\"start\":72280,\"sentenceId\":14,\"end\":72900,\"text\":\"公眾人物\",\"id\":1600},{\"start\":72900,\"sentenceId\":14,\"end\":73210,\"text\":\"之后,\",\"id\":1610},{\"start\":73380,\"sentenceId\":14,\"end\":73544,\"text\":\"當(dāng)\",\"id\":1620},{\"start\":73544,\"sentenceId\":14,\"end\":73708,\"text\":\"網(wǎng)\",\"id\":1630},{\"start\":73708,\"sentenceId\":14,\"end\":73872,\"text\":\"紅\",\"id\":1640},{\"start\":73872,\"sentenceId\":14,\"end\":74200,\"text\":\"也好,\",\"id\":1650},{\"start\":74450,\"sentenceId\":14,\"end\":74624,\"text\":\"我\",\"id\":1660},{\"start\":74624,\"sentenceId\":14,\"end\":74798,\"text\":\"有\(zhòng)",\"id\":1670},{\"start\":74798,\"sentenceId\":14,\"end\":75146,\"text\":\"朋友\",\"id\":1680},{\"start\":75146,\"sentenceId\":14,\"end\":75320,\"text\":\"說\",\"id\":1690},{\"start\":75320,\"sentenceId\":14,\"end\":75494,\"text\":\"長\",\"id\":1700},{\"start\":75494,\"sentenceId\":14,\"end\":75842,\"text\":\"這么\",\"id\":1710},{\"start\":75842,\"sentenceId\":14,\"end\":76190,\"text\":\"難看\",\"id\":1720},{\"start\":76190,\"sentenceId\":14,\"end\":76364,\"text\":\"還\",\"id\":1730},{\"start\":76364,\"sentenceId\":14,\"end\":76712,\"text\":\"出來\",\"id\":1740},{\"start\":76712,\"sentenceId\":14,\"end\":77408,\"text\":\"拋頭露面\",\"id\":1750},{\"start\":77408,\"sentenceId\":14,\"end\":77930,\"text\":\"什么的。\",\"id\":1760},{\"start\":79290,\"sentenceId\":15,\"end\":79634,\"text\":\"會有\(zhòng)",\"id\":1770},{\"start\":79634,\"sentenceId\":15,\"end\":79978,\"text\":\"一些\",\"id\":1780},{\"start\":79978,\"sentenceId\":15,\"end\":80494,\"text\":\"真實的\",\"id\":1790},{\"start\":80494,\"sentenceId\":15,\"end\":80838,\"text\":\"傷害。\",\"id\":1800},{\"start\":80940,\"sentenceId\":16,\"end\":81272,\"text\":\"所以\",\"id\":1810},{\"start\":81272,\"sentenceId\":16,\"end\":81936,\"text\":\"我說如果\",\"id\":1820},{\"start\":81936,\"sentenceId\":16,\"end\":82102,\"text\":\"有\(zhòng)",\"id\":1830},{\"start\":82102,\"sentenceId\":16,\"end\":82434,\"text\":\"大家\",\"id\":1840},{\"start\":82434,\"sentenceId\":16,\"end\":82766,\"text\":\"提到\",\"id\":1850},{\"start\":82766,\"sentenceId\":16,\"end\":82932,\"text\":\"我\",\"id\":1860},{\"start\":82932,\"sentenceId\":16,\"end\":83264,\"text\":\"想到\",\"id\":1870},{\"start\":83264,\"sentenceId\":16,\"end\":83430,\"text\":\"是\",\"id\":1880},{\"start\":83430,\"sentenceId\":16,\"end\":83762,\"text\":\"美女\",\"id\":1890},{\"start\":83762,\"sentenceId\":16,\"end\":83928,\"text\":\"的\",\"id\":1900},{\"start\":83928,\"sentenceId\":16,\"end\":84260,\"text\":\"時候,\",\"id\":1910},{\"start\":85220,\"sentenceId\":16,\"end\":85424,\"text\":\"那\",\"id\":1920},{\"start\":85424,\"sentenceId\":16,\"end\":85628,\"text\":\"我\",\"id\":1930},{\"start\":85628,\"sentenceId\":16,\"end\":86036,\"text\":\"覺得\",\"id\":1940},{\"start\":86036,\"sentenceId\":16,\"end\":86444,\"text\":\"多遠(yuǎn)\",\"id\":1950},{\"start\":86444,\"sentenceId\":16,\"end\":86648,\"text\":\"了\",\"id\":1960},{\"start\":86648,\"sentenceId\":16,\"end\":87056,\"text\":\"我們\",\"id\":1970},{\"start\":87056,\"sentenceId\":16,\"end\":87260,\"text\":\"就\",\"id\":1980},{\"start\":87260,\"sentenceId\":16,\"end\":87668,\"text\":\"肯定\",\"id\":1990},{\"start\":87668,\"sentenceId\":16,\"end\":87872,\"text\":\"有\(zhòng)",\"id\":2000},{\"start\":87872,\"sentenceId\":16,\"end\":88280,\"text\":\"很多\",\"id\":2010},{\"start\":88280,\"sentenceId\":16,\"end\":88688,\"text\":\"女生\",\"id\":2020},{\"start\":88688,\"sentenceId\":16,\"end\":88892,\"text\":\"跟\",\"id\":2030},{\"start\":88892,\"sentenceId\":16,\"end\":89096,\"text\":\"我\",\"id\":2040},{\"start\":89096,\"sentenceId\":16,\"end\":89504,\"text\":\"一樣\",\"id\":2050},{\"start\":89504,\"sentenceId\":16,\"end\":89912,\"text\":\"受到\",\"id\":2060},{\"start\":89912,\"sentenceId\":16,\"end\":90320,\"text\":\"這種\",\"id\":2070},{\"start\":90320,\"sentenceId\":16,\"end\":90728,\"text\":\"外貌\",\"id\":2080},{\"start\":90728,\"sentenceId\":16,\"end\":90932,\"text\":\"上\",\"id\":2090},{\"start\":90932,\"sentenceId\":16,\"end\":91136,\"text\":\"的\",\"id\":2100},{\"start\":91136,\"sentenceId\":16,\"end\":91544,\"text\":\"困擾。\",\"id\":2110},{\"start\":93030,\"sentenceId\":17,\"end\":93159,\"text\":\"那\",\"id\":2120},{\"start\":93159,\"sentenceId\":17,\"end\":93417,\"text\":\"可能\",\"id\":2130},{\"start\":93417,\"sentenceId\":17,\"end\":93675,\"text\":\"大家\",\"id\":2140},{\"start\":93675,\"sentenceId\":17,\"end\":93804,\"text\":\"就\",\"id\":2150},{\"start\":93804,\"sentenceId\":17,\"end\":93933,\"text\":\"不\",\"id\":2160},{\"start\":93933,\"sentenceId\":17,\"end\":94191,\"text\":\"困擾\",\"id\":2170},{\"start\":94191,\"sentenceId\":17,\"end\":94320,\"text\":\"了。\",\"id\":2180}],\"speakerId\":\"2\"},{\"paragraphId\":\"1702974619921500000\",\"words\":[{\"start\":94850,\"sentenceId\":18,\"end\":95190,\"text\":\"但是\",\"id\":2190},{\"start\":95190,\"sentenceId\":18,\"end\":95360,\"text\":\"我\",\"id\":2200},{\"start\":95360,\"sentenceId\":18,\"end\":95870,\"text\":\"因為我\",\"id\":2210},{\"start\":95870,\"sentenceId\":18,\"end\":96210,\"text\":\"看到\",\"id\":2220},{\"start\":96210,\"sentenceId\":18,\"end\":96550,\"text\":\"女性\",\"id\":2230},{\"start\":96550,\"sentenceId\":18,\"end\":96720,\"text\":\"在\",\"id\":2240},{\"start\":96720,\"sentenceId\":18,\"end\":97060,\"text\":\"外貌\",\"id\":2250},{\"start\":97060,\"sentenceId\":18,\"end\":97230,\"text\":\"上\",\"id\":2260},{\"start\":97230,\"sentenceId\":18,\"end\":97570,\"text\":\"困擾\",\"id\":2270},{\"start\":97570,\"sentenceId\":18,\"end\":97740,\"text\":\"她\",\"id\":2280},{\"start\":97740,\"sentenceId\":18,\"end\":97910,\"text\":\"有\(zhòng)",\"id\":2290},{\"start\":97910,\"sentenceId\":18,\"end\":98250,\"text\":\"幾個\",\"id\":2300},{\"start\":98250,\"sentenceId\":18,\"end\":98590,\"text\":\"解決\",\"id\":2310},{\"start\":98590,\"sentenceId\":18,\"end\":98930,\"text\":\"方式。\",\"id\":2320},{\"start\":99470,\"sentenceId\":19,\"end\":100109,\"text\":\"要不然\",\"id\":2330},{\"start\":100109,\"sentenceId\":19,\"end\":100748,\"text\":\"就是說\",\"id\":2340},{\"start\":100748,\"sentenceId\":19,\"end\":100961,\"text\":\"我\",\"id\":2350},{\"start\":100961,\"sentenceId\":19,\"end\":101174,\"text\":\"我\",\"id\":2360},{\"start\":101174,\"sentenceId\":19,\"end\":101600,\"text\":\"靈魂\",\"id\":2370},{\"start\":101600,\"sentenceId\":19,\"end\":102026,\"text\":\"美好,\",\"id\":2380},{\"start\":102030,\"sentenceId\":19,\"end\":102196,\"text\":\"我\",\"id\":2390},{\"start\":102196,\"sentenceId\":19,\"end\":102528,\"text\":\"努力\",\"id\":2400},{\"start\":102528,\"sentenceId\":19,\"end\":102694,\"text\":\"的\",\"id\":2410},{\"start\":102694,\"sentenceId\":19,\"end\":102860,\"text\":\"我\",\"id\":2420},{\"start\":102860,\"sentenceId\":19,\"end\":103192,\"text\":\"去做\",\"id\":2430},{\"start\":103192,\"sentenceId\":19,\"end\":103524,\"text\":\"專業(yè),\",\"id\":2440},{\"start\":103530,\"sentenceId\":19,\"end\":103950,\"text\":\"我要\",\"id\":2450},{\"start\":103950,\"sentenceId\":19,\"end\":104160,\"text\":\"紅,\",\"id\":2460},{\"start\":104160,\"sentenceId\":19,\"end\":104556,\"text\":\"我要\",\"id\":2470},{\"start\":104556,\"sentenceId\":19,\"end\":104754,\"text\":\"有\(zhòng)",\"id\":2480},{\"start\":104754,\"sentenceId\":19,\"end\":105150,\"text\":\"成績。\",\"id\":2490},{\"start\":105500,\"sentenceId\":20,\"end\":105839,\"text\":\"另一個\",\"id\":2500},{\"start\":105839,\"sentenceId\":20,\"end\":106178,\"text\":\"就是我\",\"id\":2510},{\"start\":106178,\"sentenceId\":20,\"end\":106517,\"text\":\"跟你講\",\"id\":2520},{\"start\":106517,\"sentenceId\":20,\"end\":106743,\"text\":\"那么\",\"id\":2530},{\"start\":106743,\"sentenceId\":20,\"end\":106856,\"text\":\"多\",\"id\":2540},{\"start\":106856,\"sentenceId\":20,\"end\":107082,\"text\":\"道理\",\"id\":2550},{\"start\":107082,\"sentenceId\":20,\"end\":107308,\"text\":\"干嘛?\",\"id\":2560},{\"start\":107420,\"sentenceId\":21,\"end\":107561,\"text\":\"我\",\"id\":2570},{\"start\":107561,\"sentenceId\":21,\"end\":107702,\"text\":\"去\",\"id\":2580},{\"start\":107702,\"sentenceId\":21,\"end\":107843,\"text\":\"打\",\"id\":2590},{\"start\":107843,\"sentenceId\":21,\"end\":108125,\"text\":\"一針\",\"id\":2600},{\"start\":108125,\"sentenceId\":21,\"end\":108266,\"text\":\"切\(zhòng)",\"id\":2610},{\"start\":108266,\"sentenceId\":21,\"end\":108548,\"text\":\"一刀\",\"id\":2620},{\"start\":108548,\"sentenceId\":21,\"end\":108830,\"text\":\"不就\",\"id\":2630},{\"start\":108830,\"sentenceId\":21,\"end\":109112,\"text\":\"完了\",\"id\":2640},{\"start\":109112,\"sentenceId\":21,\"end\":109253,\"text\":\"嗎?\",\"id\":2650},{\"start\":110310,\"sentenceId\":22,\"end\":111010,\"text\":\"你怎么看\",\"id\":2660},{\"start\":111010,\"sentenceId\":22,\"end\":111360,\"text\":\"這個\",\"id\":2670},{\"start\":111360,\"sentenceId\":22,\"end\":111710,\"text\":\"問題?\",\"id\":2680}],\"speakerId\":\"1\"},{\"paragraphId\":\"1702974637671500000\",\"words\":[{\"start\":112600,\"sentenceId\":23,\"end\":112868,\"text\":\"我\",\"id\":2690},{\"start\":112868,\"sentenceId\":23,\"end\":113404,\"text\":\"覺得\",\"id\":2700},{\"start\":113404,\"sentenceId\":23,\"end\":114208,\"text\":\"第一種\",\"id\":2710},{\"start\":114208,\"sentenceId\":23,\"end\":114476,\"text\":\"和\",\"id\":2720},{\"start\":114476,\"sentenceId\":23,\"end\":115280,\"text\":\"第二種\",\"id\":2730},{\"start\":115280,\"sentenceId\":23,\"end\":115548,\"text\":\"都\",\"id\":2740},{\"start\":115548,\"sentenceId\":23,\"end\":116084,\"text\":\"需要\",\"id\":2750},{\"start\":116084,\"sentenceId\":23,\"end\":116620,\"text\":\"非常\",\"id\":2760},{\"start\":116620,\"sentenceId\":23,\"end\":117156,\"text\":\"強(qiáng)大\",\"id\":2770},{\"start\":117156,\"sentenceId\":23,\"end\":117424,\"text\":\"的\",\"id\":2780},{\"start\":117424,\"sentenceId\":23,\"end\":117960,\"text\":\"心理,\",\"id\":2790},{\"start\":118820,\"sentenceId\":23,\"end\":118988,\"text\":\"你\",\"id\":2800},{\"start\":118988,\"sentenceId\":23,\"end\":119156,\"text\":\"選\",\"id\":2810},{\"start\":119156,\"sentenceId\":23,\"end\":119492,\"text\":\"哪種\",\"id\":2820},{\"start\":119492,\"sentenceId\":23,\"end\":119828,\"text\":\"都行。\",\"id\":2830},{\"start\":120430,\"sentenceId\":24,\"end\":121360,\"text\":\"第一個\",\"id\":2840},{\"start\":121360,\"sentenceId\":24,\"end\":122290,\"text\":\"就是我\",\"id\":2850},{\"start\":122290,\"sentenceId\":24,\"end\":122910,\"text\":\"厲害,\",\"id\":2860},{\"start\":123300,\"sentenceId\":24,\"end\":123448,\"text\":\"我\",\"id\":2870},{\"start\":123448,\"sentenceId\":24,\"end\":123744,\"text\":\"靈魂\",\"id\":2880},{\"start\":123744,\"sentenceId\":24,\"end\":124040,\"text\":\"自由。\",\"id\":2890},{\"start\":124300,\"sentenceId\":25,\"end\":124776,\"text\":\"但是\",\"id\":2900},{\"start\":124776,\"sentenceId\":25,\"end\":125014,\"text\":\"你\",\"id\":2910},{\"start\":125014,\"sentenceId\":25,\"end\":125490,\"text\":\"也會\",\"id\":2920},{\"start\":125490,\"sentenceId\":25,\"end\":125966,\"text\":\"聽到\",\"id\":2930},{\"start\":125966,\"sentenceId\":25,\"end\":126442,\"text\":\"別人\",\"id\":2940},{\"start\":126442,\"sentenceId\":25,\"end\":126680,\"text\":\"說\",\"id\":2950},{\"start\":126680,\"sentenceId\":25,\"end\":126918,\"text\":\"你\",\"id\":2960},{\"start\":126918,\"sentenceId\":25,\"end\":127394,\"text\":\"基因\",\"id\":2970},{\"start\":127394,\"sentenceId\":25,\"end\":127870,\"text\":\"不好,\",\"id\":2980},{\"start\":129330,\"sentenceId\":25,\"end\":129491,\"text\":\"你\",\"id\":2990},{\"start\":129491,\"sentenceId\":25,\"end\":129652,\"text\":\"能\",\"id\":3000},{\"start\":129652,\"sentenceId\":25,\"end\":129974,\"text\":\"承受\",\"id\":3010},{\"start\":129974,\"sentenceId\":25,\"end\":130296,\"text\":\"得了。\",\"id\":3020},{\"start\":130300,\"sentenceId\":26,\"end\":130468,\"text\":\"你\",\"id\":3030},{\"start\":130468,\"sentenceId\":26,\"end\":130804,\"text\":\"認(rèn)為\",\"id\":3040},{\"start\":130804,\"sentenceId\":26,\"end\":130972,\"text\":\"你\",\"id\":3050},{\"start\":130972,\"sentenceId\":26,\"end\":131308,\"text\":\"堅定\",\"id\":3060},{\"start\":131308,\"sentenceId\":26,\"end\":131476,\"text\":\"的\",\"id\":3070},{\"start\":131476,\"sentenceId\":26,\"end\":131812,\"text\":\"認(rèn)為\",\"id\":3080},{\"start\":131812,\"sentenceId\":26,\"end\":131980,\"text\":\"你\",\"id\":3090},{\"start\":131980,\"sentenceId\":26,\"end\":132316,\"text\":\"人格\",\"id\":3100},{\"start\":132316,\"sentenceId\":26,\"end\":132484,\"text\":\"上\",\"id\":3110},{\"start\":132484,\"sentenceId\":26,\"end\":132652,\"text\":\"的\",\"id\":3120},{\"start\":132652,\"sentenceId\":26,\"end\":132988,\"text\":\"東西\",\"id\":3130},{\"start\":132988,\"sentenceId\":26,\"end\":133324,\"text\":\"可以\",\"id\":3140},{\"start\":133324,\"sentenceId\":26,\"end\":133660,\"text\":\"掩蓋\",\"id\":3150},{\"start\":133660,\"sentenceId\":26,\"end\":133828,\"text\":\"掉\",\"id\":3160},{\"start\":133828,\"sentenceId\":26,\"end\":134164,\"text\":\"一切,\",\"id\":3170},{\"start\":134500,\"sentenceId\":26,\"end\":134862,\"text\":\"其他\",\"id\":3180},{\"start\":134862,\"sentenceId\":26,\"end\":135043,\"text\":\"的\",\"id\":3190},{\"start\":135043,\"sentenceId\":26,\"end\":135405,\"text\":\"外貌\",\"id\":3200},{\"start\":135405,\"sentenceId\":26,\"end\":135586,\"text\":\"上\",\"id\":3210},{\"start\":135586,\"sentenceId\":26,\"end\":135767,\"text\":\"的\",\"id\":3220},{\"start\":135767,\"sentenceId\":26,\"end\":135948,\"text\":\"你\",\"id\":3230},{\"start\":135948,\"sentenceId\":26,\"end\":136310,\"text\":\"覺得\",\"id\":3240},{\"start\":136310,\"sentenceId\":26,\"end\":136853,\"text\":\"其他人\",\"id\":3250},{\"start\":136853,\"sentenceId\":26,\"end\":137034,\"text\":\"對\",\"id\":3260},{\"start\":137034,\"sentenceId\":26,\"end\":137396,\"text\":\"你的\",\"id\":3270},{\"start\":137396,\"sentenceId\":26,\"end\":137758,\"text\":\"歧視\",\"id\":3280},{\"start\":137758,\"sentenceId\":26,\"end\":138120,\"text\":\"ok,\",\"id\":3290},{\"start\":138560,\"sentenceId\":26,\"end\":138760,\"text\":\"但\",\"id\":3300},{\"start\":138760,\"sentenceId\":26,\"end\":138960,\"text\":\"我\",\"id\":3310},{\"start\":138960,\"sentenceId\":26,\"end\":139160,\"text\":\"又\",\"id\":3320},{\"start\":139160,\"sentenceId\":26,\"end\":139560,\"text\":\"沒有\(zhòng)",\"id\":3330},{\"start\":139560,\"sentenceId\":26,\"end\":139960,\"text\":\"強(qiáng)大,\",\"id\":3340},{\"start\":139960,\"sentenceId\":26,\"end\":140406,\"text\":\"我的\",\"id\":3350},{\"start\":140406,\"sentenceId\":26,\"end\":140852,\"text\":\"人格\",\"id\":3360},{\"start\":140852,\"sentenceId\":26,\"end\":141075,\"text\":\"又\",\"id\":3370},{\"start\":141075,\"sentenceId\":26,\"end\":141521,\"text\":\"沒有\(zhòng)",\"id\":3380},{\"start\":141521,\"sentenceId\":26,\"end\":141967,\"text\":\"美好\",\"id\":3390},{\"start\":141967,\"sentenceId\":26,\"end\":142190,\"text\":\"到\",\"id\":3400},{\"start\":142190,\"sentenceId\":26,\"end\":142636,\"text\":\"可以\",\"id\":3410},{\"start\":142636,\"sentenceId\":26,\"end\":142859,\"text\":\"讓\",\"id\":3420},{\"start\":142859,\"sentenceId\":26,\"end\":143082,\"text\":\"我\",\"id\":3430},{\"start\":143082,\"sentenceId\":26,\"end\":143528,\"text\":\"盡情\",\"id\":3440},{\"start\":143528,\"sentenceId\":26,\"end\":143751,\"text\":\"地\",\"id\":3450},{\"start\":143751,\"sentenceId\":26,\"end\":144197,\"text\":\"忽略\",\"id\":3460},{\"start\":144197,\"sentenceId\":26,\"end\":144866,\"text\":\"其他人\",\"id\":3470},{\"start\":144866,\"sentenceId\":26,\"end\":145312,\"text\":\"對我\",\"id\":3480},{\"start\":145312,\"sentenceId\":26,\"end\":145535,\"text\":\"的\",\"id\":3490},{\"start\":145535,\"sentenceId\":26,\"end\":145981,\"text\":\"傷害。\",\"id\":3500},{\"start\":146730,\"sentenceId\":27,\"end\":147207,\"text\":\"第二種\",\"id\":3510},{\"start\":147207,\"sentenceId\":27,\"end\":147366,\"text\":\"我\",\"id\":3520},{\"start\":147366,\"sentenceId\":27,\"end\":147684,\"text\":\"覺得\",\"id\":3530},{\"start\":147684,\"sentenceId\":27,\"end\":147843,\"text\":\"就\",\"id\":3540},{\"start\":147843,\"sentenceId\":27,\"end\":148002,\"text\":\"更\",\"id\":3550},{\"start\":148002,\"sentenceId\":27,\"end\":148320,\"text\":\"需要\",\"id\":3560},{\"start\":148320,\"sentenceId\":27,\"end\":148638,\"text\":\"強(qiáng)大\",\"id\":3570},{\"start\":148638,\"sentenceId\":27,\"end\":148797,\"text\":\"的\",\"id\":3580},{\"start\":148797,\"sentenceId\":27,\"end\":149115,\"text\":\"心理,\",\"id\":3590},{\"start\":149430,\"sentenceId\":27,\"end\":149705,\"text\":\"還\",\"id\":3600},{\"start\":149705,\"sentenceId\":27,\"end\":149980,\"text\":\"疼\",\"id\":3610},{\"start\":149980,\"sentenceId\":27,\"end\":150255,\"text\":\"又\",\"id\":3620},{\"start\":150255,\"sentenceId\":27,\"end\":150805,\"text\":\"疼你\",\"id\":3630},{\"start\":150805,\"sentenceId\":27,\"end\":151080,\"text\":\"要\",\"id\":3640},{\"start\":151080,\"sentenceId\":27,\"end\":151630,\"text\":\"承受\",\"id\":3650},{\"start\":151630,\"sentenceId\":27,\"end\":152180,\"text\":\"非議。\",\"id\":3660},{\"start\":152490,\"sentenceId\":28,\"end\":152858,\"text\":\"同時\",\"id\":3670},{\"start\":152858,\"sentenceId\":28,\"end\":153042,\"text\":\"你\",\"id\":3680},{\"start\":153042,\"sentenceId\":28,\"end\":153226,\"text\":\"要\",\"id\":3690},{\"start\":153226,\"sentenceId\":28,\"end\":153594,\"text\":\"承認(rèn)\",\"id\":3700},{\"start\":153594,\"sentenceId\":28,\"end\":153778,\"text\":\"你\",\"id\":3710},{\"start\":153778,\"sentenceId\":28,\"end\":153962,\"text\":\"向\",\"id\":3720},{\"start\":153962,\"sentenceId\":28,\"end\":154330,\"text\":\"大眾\",\"id\":3730},{\"start\":154330,\"sentenceId\":28,\"end\":154698,\"text\":\"審美\",\"id\":3740},{\"start\":154698,\"sentenceId\":28,\"end\":155066,\"text\":\"屈服\",\"id\":3750},{\"start\":155066,\"sentenceId\":28,\"end\":155250,\"text\":\"了,\",\"id\":3760},{\"start\":156510,\"sentenceId\":28,\"end\":156882,\"text\":\"然后\",\"id\":3770},{\"start\":156882,\"sentenceId\":28,\"end\":157254,\"text\":\"就是\",\"id\":3780},{\"start\":157254,\"sentenceId\":28,\"end\":157440,\"text\":\"那\",\"id\":3790},{\"start\":157440,\"sentenceId\":28,\"end\":157812,\"text\":\"兩撥\",\"id\":3800},{\"start\":157812,\"sentenceId\":28,\"end\":158184,\"text\":\"人都\",\"id\":3810},{\"start\":158184,\"sentenceId\":28,\"end\":158370,\"text\":\"會\",\"id\":3820},{\"start\":158370,\"sentenceId\":28,\"end\":158742,\"text\":\"指責(zé)\",\"id\":3830},{\"start\":158742,\"sentenceId\":28,\"end\":158928,\"text\":\"你,\",\"id\":3840},{\"start\":160190,\"sentenceId\":28,\"end\":160391,\"text\":\"就\",\"id\":3850},{\"start\":160391,\"sentenceId\":28,\"end\":160592,\"text\":\"不\",\"id\":3860},{\"start\":160592,\"sentenceId\":28,\"end\":160994,\"text\":\"認(rèn)同\",\"id\":3870},{\"start\":160994,\"sentenceId\":28,\"end\":161396,\"text\":\"大眾\",\"id\":3880},{\"start\":161396,\"sentenceId\":28,\"end\":161798,\"text\":\"審美\",\"id\":3890},{\"start\":161798,\"sentenceId\":28,\"end\":161999,\"text\":\"的\",\"id\":3900},{\"start\":161999,\"sentenceId\":28,\"end\":162200,\"text\":\"人\",\"id\":3910},{\"start\":162200,\"sentenceId\":28,\"end\":162401,\"text\":\"會\",\"id\":3920},{\"start\":162401,\"sentenceId\":28,\"end\":162803,\"text\":\"指責(zé)\",\"id\":3930},{\"start\":162803,\"sentenceId\":28,\"end\":163004,\"text\":\"你\",\"id\":3940},{\"start\":163004,\"sentenceId\":28,\"end\":163406,\"text\":\"屈服\",\"id\":3950},{\"start\":163406,\"sentenceId\":28,\"end\":163607,\"text\":\"了,\",\"id\":3960},{\"start\":164020,\"sentenceId\":28,\"end\":164322,\"text\":\"認(rèn)同\",\"id\":3970},{\"start\":164322,\"sentenceId\":28,\"end\":164624,\"text\":\"大眾\",\"id\":3980},{\"start\":164624,\"sentenceId\":28,\"end\":164926,\"text\":\"審美\",\"id\":3990},{\"start\":164926,\"sentenceId\":28,\"end\":165077,\"text\":\"的\",\"id\":4000},{\"start\":165077,\"sentenceId\":28,\"end\":165228,\"text\":\"人\",\"id\":4010},{\"start\":165228,\"sentenceId\":28,\"end\":165379,\"text\":\"會\",\"id\":4020},{\"start\":165379,\"sentenceId\":28,\"end\":165681,\"text\":\"指責(zé)\",\"id\":4030},{\"start\":165681,\"sentenceId\":28,\"end\":165832,\"text\":\"你\",\"id\":4040},{\"start\":165832,\"sentenceId\":28,\"end\":165983,\"text\":\"假。\",\"id\":4050},{\"start\":167350,\"sentenceId\":29,\"end\":167666,\"text\":\"那你\",\"id\":4060},{\"start\":167666,\"sentenceId\":29,\"end\":167824,\"text\":\"就\",\"id\":4070},{\"start\":167824,\"sentenceId\":29,\"end\":167982,\"text\":\"更\",\"id\":4080},{\"start\":167982,\"sentenceId\":29,\"end\":168298,\"text\":\"需要\",\"id\":4090},{\"start\":168298,\"sentenceId\":29,\"end\":168456,\"text\":\"想\",\"id\":4100},{\"start\":168456,\"sentenceId\":29,\"end\":168772,\"text\":\"大家\",\"id\":4110},{\"start\":168772,\"sentenceId\":29,\"end\":169088,\"text\":\"心里\",\"id\":4120},{\"start\":169088,\"sentenceId\":29,\"end\":169246,\"text\":\"了,\",\"id\":4130},{\"start\":169250,\"sentenceId\":29,\"end\":169406,\"text\":\"你\",\"id\":4140},{\"start\":169406,\"sentenceId\":29,\"end\":169720,\"text\":\"都行。\",\"id\":4150}],\"speakerId\":\"2\"}]},\"translation\":{\"paragraphs\":[{\"paragraphId\":\"1702974525131500000\",\"sentences\":[{\"start\":60,\"sentenceId\":1,\"end\":3096,\"text\":\"If possible, what kind of label do you want to give yourself? \"}]},{\"paragraphId\":\"1702974528451500000\",\"sentences\":[{\"start\":3380,\"sentenceId\":2,\"end\":5600,\"text\":\"Comedy practitioners. \"}]},{\"paragraphId\":\"1702974533881500000\",\"sentences\":[{\"start\":8810,\"sentenceId\":3,\"end\":11105,\"text\":\"Is there anything else like it. \"}]},{\"paragraphId\":\"1702974536176500000\",\"sentences\":[{\"start\":11105,\"sentenceId\":4,\"end\":13690,\"text\":\"War beauty, can you? \"}]},{\"paragraphId\":\"1702974538871500000\",\"sentences\":[{\"start\":13800,\"sentenceId\":5,\"end\":22700,\"text\":\"Peking University student bully, Internet celebrity, genius girl, for these popular labels, Li Xueqin showed no care. \"},{\"start\":23280,\"sentenceId\":6,\"end\":29330,\"text\":\"Among the two labels she longed for most, the word beauty was more or less surprising. \"}]},{\"paragraphId\":\"1702974554901500000\",\"sentences\":[{\"start\":29830,\"sentenceId\":7,\"end\":43590,\"text\":\"I hope that if one day people all over the world think that I am the first to think of beauty, then I think the aesthetics in this world will not be so harsh on many women. \"}]},{\"paragraphId\":\"1702974568671500000\",\"sentences\":[{\"start\":43600,\"sentenceId\":8,\"end\":45040,\"text\":\"Have you ever had an appearance problem? \"}]},{\"paragraphId\":\"1702974570361500000\",\"sentences\":[{\"start\":45290,\"sentenceId\":9,\"end\":46090,\"text\":\"It bothered me. \"},{\"start\":46480,\"sentenceId\":10,\"end\":52780,\"text\":\"Because I know subjectively that beauty is pluralistic and should not be defined by appearance. \"},{\"start\":53140,\"sentenceId\":11,\"end\":58756,\"text\":\"But that was rational, but the rejection and hurt I felt in life was real. \"}]},{\"paragraphId\":\"1702974584141500000\",\"sentences\":[{\"start\":59070,\"sentenceId\":12,\"end\":63499,\"text\":\"You think I think I said before that when I was young, people didn't play with me because I was not good-looking and fat. \"},{\"start\":64720,\"sentenceId\":13,\"end\":70572,\"text\":\"Then when I grow up, some boys will say that I am. I always said that I want to find a genetically good one. \"},{\"start\":70730,\"sentenceId\":14,\"end\":77930,\"text\":\"After becoming a public figure or a Internet celebrity, I have friends who say that they are so ugly and come out in public or something. \"},{\"start\":79290,\"sentenceId\":15,\"end\":80838,\"text\":\"There will be some real harm. \"},{\"start\":80940,\"sentenceId\":16,\"end\":91544,\"text\":\"So I said that if everyone mentioned that I thought of being a beautiful woman, then I think how far we are, there must be many girls suffering from this kind of appearance like me. \"},{\"start\":93030,\"sentenceId\":17,\"end\":94320,\"text\":\"Then maybe everyone won't be bothered. \"}]},{\"paragraphId\":\"1702974619921500000\",\"sentences\":[{\"start\":94850,\"sentenceId\":18,\"end\":98930,\"text\":\"But I have several solutions because I see women bothering her with looks. \"},{\"start\":99470,\"sentenceId\":19,\"end\":105150,\"text\":\"Otherwise, it means that my soul is beautiful. I work hard to do my major. I want to be red and I want to have achievements. \"},{\"start\":105500,\"sentenceId\":20,\"end\":107308,\"text\":\"The other is why I told you so much? \"},{\"start\":107420,\"sentenceId\":21,\"end\":109253,\"text\":\"I'll get a shot and cut it. Isn't it over? \"},{\"start\":110310,\"sentenceId\":22,\"end\":111710,\"text\":\"What do you think of this problem? \"}]},{\"paragraphId\":\"1702974637671500000\",\"sentences\":[{\"start\":112600,\"sentenceId\":23,\"end\":119828,\"text\":\"I think both the first and the second need very strong psychology. You can choose either one. \"},{\"start\":120430,\"sentenceId\":24,\"end\":124040,\"text\":\"The first is that I am powerful and my soul is free. \"},{\"start\":124300,\"sentenceId\":25,\"end\":130296,\"text\":\"But you will also hear people say that your genes are not good and you can bear it. \"},{\"start\":130300,\"sentenceId\":26,\"end\":145981,\"text\":\"You think that you firmly believe that things in your personality can cover up everything. In other appearances, you think that other people's discrimination against you is OK, but I am not strong, and my personality is not beautiful enough to allow me to ignore other people's harm to me. \"},{\"start\":146730,\"sentenceId\":27,\"end\":152180,\"text\":\"The second one, I think, requires a strong mind. It still hurts and hurts. You have to bear criticism. \"},{\"start\":152490,\"sentenceId\":28,\"end\":165983,\"text\":\"At the same time, you have to admit that you have succumbed to the public aesthetics, and then those two groups of people will accuse you of giving in, those who do not agree with the public aesthetics will accuse you of giving in, and those who agree with the public aesthetics will accuse you of being fake. \"},{\"start\":167350,\"sentenceId\":29,\"end\":169720,\"text\":\"Then you need to think about everyone's heart even more. You can do it. \"}]}]}}", "Type":"NLP" } ] } } } }
Results中Type = NLP,Data字段詳解
Transcription(基礎(chǔ)識別)
參數(shù)名
類型
說明
transcription
object
語音轉(zhuǎn)寫結(jié)果對象。
transcription.paragraphs
list[]
語音轉(zhuǎn)寫結(jié)構(gòu)以段落形式組織的集合。
transcription.paragraphs[i].paragraphId
string
段落級別id。
transcription.paragraphs[i].speakerId
string
發(fā)言人id。
transcription.paragraphs[i].words
list[]
該段落包含的word信息。
transcription.paragraphs[i].words[i].id
int
word序號,通常無須關(guān)注。
transcription.paragraphs[i].words[i].sentenceId
int
句子id,同屬于一個SentenceId的word信息可以組裝成一句話。
transcription.paragraphs[i].words[i].start
long
該word相對于音頻起始時間的開始時間,相對時間戳,單位毫秒。
transcription.paragraphs[i].words[i].end
long
該word相對于音頻起始時間的結(jié)束時間,相對時間戳,單位毫秒。
transcription.paragraphs[i].words[i].text
string
word文本。
Summarization(全文摘要、發(fā)言人總結(jié)、提問摘要、思維導(dǎo)圖)
參數(shù)名
類型
說明
summarization
object
摘要結(jié)果對象,可能包含0個或多個不同摘要類型的結(jié)果。
summarization.paragraphSummary
string
全文摘要結(jié)果。
summarization.conversationalSummary
list[]
發(fā)言總結(jié)摘要結(jié)果列表。
summarization.conversationalSummary[i].speakerId
string
發(fā)言人id。
summarization.conversationalSummary[i].speakerName
string
發(fā)言人名字。
summarization.conversationalSummary[i].summary
string
該發(fā)言人對應(yīng)的總結(jié)。
summarization.questionsAnsweringSummary
list[]
問答摘要結(jié)果列表。
summarization.questionsAnsweringSummary[i].question
string
問題
summarization.questionsAnsweringSummary[i].sentenceIdsOfQuestion
list[]
提煉出該問題對應(yīng)的原語音轉(zhuǎn)寫的SentenceId列表。
summarization.questionsAnsweringSummary[i].answer
string
問題對應(yīng)的答案。
summarization.questionsAnsweringSummary[i].sentenceIdsOfAnswer
list[]
總結(jié)出該答案對應(yīng)的原語音轉(zhuǎn)寫的SentenceId列表。
summarization.mindMapSummary
list[]
思維導(dǎo)圖摘要結(jié)果列表,可能包含各個主題的摘要、主題間的關(guān)系等。
summarization.mindMapSummary[i].title
string
主題的標(biāo)題
summarization.mindMapSummary[i].topic
list[]
包含每個主題及其子主題的數(shù)組
summarization.mindMapSummary[i].topic[i].title
string
主題的標(biāo)題
summarization.mindMapSummary[i].topic[i].topic
list[]
主題的子主題數(shù)組,可以是空數(shù)組
Translation(全文翻譯)
參數(shù)名
類型
說明
translation
object
翻譯結(jié)果對象。
translation.paragraphs
list[]
翻譯結(jié)果以段落形式組織的集合,和語音識別結(jié)果報文對應(yīng)。
translation.paragraphs.paragraphId
string
段落分段ID標(biāo)識,和語音識別結(jié)果中的ParagraphId對應(yīng)。
translation.paragraphs.sentences
list[]
翻譯文本集合。
translation.paragraphs.sentences[i].sentenctId
long
句子id。
translation.paragraphs.sentences[i].start
long
該段相對于音頻起始時間的開始時間,相對時間戳,單位毫秒。
translation.paragraphs.sentences[i].end
long
該段相對于音頻起始時間的結(jié)束時間,相對時間戳,單位毫秒。
translation.paragraphs.sentences[i].text
string
翻譯文本,和語音識別結(jié)果報文對應(yīng)。
AutoChapters(章節(jié)識別)
參數(shù)名
類型
說明
autoChapters
list[]
章節(jié)速覽集合, 含有0個、1個或多個章節(jié)速覽信息。
autoChapters[i].id
int
該章節(jié)序號。
autoChapters[i].start
long
該章節(jié)相對于音頻起始時間的開始時間,相對時間戳,單位毫秒。
autoChapters[i].end
long
該章節(jié)相對于音頻起始時間的結(jié)束時間,相對時間戳,單位毫秒。
autoChapters[i].headline
string
該章節(jié)的一句話標(biāo)題。
autoChapters[i].summary
string
章節(jié)總結(jié)。
MeetingAssitance(智能紀(jì)要提取,包含關(guān)鍵詞、關(guān)鍵句、待辦事項提取)
參數(shù)名
類型
說明
meetingAssistance
object
智能紀(jì)要結(jié)果對象,可能包含0個或多個不同類型的結(jié)果。
meetingAssistance.keywords
list[]
關(guān)鍵詞提取結(jié)果。
meetingAssistance.keySentences
list[]
關(guān)鍵句提取結(jié)果,也稱為重點內(nèi)容。
meetingAssistance.keySentences[i].id
long
關(guān)鍵句序號。
meetingAssistance.keySentences[i].sentenceId
long
該關(guān)鍵句在原ASR轉(zhuǎn)寫中對應(yīng)的句子Id。
meetingAssistance.keySentences[i].start
long
相對于音頻起始時間的開始時間,相對時間戳,單位毫秒。
meetingAssistance.keySentences[i].end
long
相對于音頻起始時間的結(jié)束時間,相對時間戳,單位毫秒。
meetingAssistance.keySentences[i].text
string
關(guān)鍵句信息。
meetingAssistance.actions
list[]
待辦內(nèi)容、待辦摘要的集合。
meetingAssistance.actions[i].id
long
待辦序號。
meetingAssistance.actions[i].sentenceId
long
該關(guān)鍵句在原ASR轉(zhuǎn)寫中對應(yīng)的句子Id。
meetingAssistance.actions[i].start
long
相對于音頻起始時間的開始時間,相對時間戳,單位毫秒。
meetingAssistance.actions[i].end
long
相對于音頻起始時間的結(jié)束時間,相對時間戳,單位毫秒。
meetingAssistance.actions[i].text
string
待辦內(nèi)容。
meetingAssistance.classifications
object
場景分類,目前只有3中場景分類。
meetingAssistance.classifications.interview
float
面試場景置信度得分。
meetingAssistance.classifications.lecture
float
演講場景置信度得分。
meetingAssistance.classifications.meeting
float
會議場景置信度得分。