Tous les produits
Search
Centre de documentation

Intelligent Media Services:Analyser le contenu des ressources multimédias

Dernière mise à jour :Aug 24, 2026

L'analyse structurée intelligente analyse, traduit et extrait les informations clés de vidéos longues à forte densité de contenu. Elle vous aide à identifier, baliser et réorganiser le contenu essentiel. Les résultats d'analyse sont stockés sous forme de données structurées dans les ressources multimédias et peuvent être récupérés via des opérations API.

Limites

Cette fonctionnalité est disponible uniquement dans les régions Chine (Pékin), Chine (Shanghai) et Chine (Hangzhou).

Procédure

  1. Vous pouvez déclencher une tâche d'analyse structurée de l'une des trois manières suivantes :

    1. Enregistrez une nouvelle ressource multimédia en appelant l'opération RegisterMediaInfo.

    2. Soumettez une tâche pour une ressource multimédia existante en appelant l'opération SubmitMediaAiAnalysisJob.

    3. Soumettez une tâche de smart tagging en appelant l'opération SubmitSmarttagJob.

      Remarque

      Si vous utilisez SubmitMediaAiAnalysisJob pour analyser plusieurs fois la même vidéo, les résultats sont fusionnés. Cette fusion ne se produit pas lorsque vous utilisez RegisterMediaInfo ou SubmitSmarttagJob.

  2. Une fois l'analyse terminée, les résultats sont stockés dans le dossier généré par ICE situé dans le chemin Object Storage Service (OSS) de la ressource multimédia. Vous ne pouvez pas spécifier de chemin personnalisé.

  3. Après le stockage des résultats, le système envoie une notification de rappel (MediaAiAnalysisComplete).

  4. Appelez l'opération GetMediaInfo pour obtenir les smart tags des ressources multimédias.

Prérequis

Soumettre une tâche de tagging

Enregistrer de nouvelles ressources multimédias pour déclencher une tâche de tagging en appelant l'opération RegisterMediaInfo

Lorsque vous enregistrez de nouvelles ressources multimédias, vous pouvez déclencher une tâche de tagging pour les analyser. Spécifiez un modèle de smart tagging dans le paramètre SmartTagTemplateId ; IMS analyse alors les ressources multimédias sur la base de ce modèle. Pour plus d'informations, consultez la rubrique RegisterMediaInfo.

Remarque

Vous ne pouvez spécifier un modèle de smart tagging que lors de l'enregistrement des ressources multimédias. Il n'est pas possible de télécharger des modèles de smart tagging via des appels API.

Paramètres de requête (modèles de smart tagging pris en charge)

Nom

Type

Obligatoire

Description

Exemple

SmartTagTemplateId

string

Non

Modèle de smart tagging

  • S00000101-300080 : fournit les fonctionnalités de transcription Tingwu.

  • S00000103-000001 : fournit les fonctionnalités de transcription Tingwu et toutes les fonctionnalités de tagging. Les fonctionnalités de tagging suivantes sont prises en charge :

    • ocr : détecte le texte dans les images.

    • asr : détecte les libellés dans l'audio.

    • classification : classification vidéo.

    • Shows : identifie les programmes vidéo.

    • face : reconnaissance faciale.

    • role : détecte les rôles des personnages dans une vidéo.

    • object : reconnaissance d'objets.

    • tvstation : reconnaissance du logo de la chaîne de télévision.

    • action : événement d'action déclenché par la détection vidéo.

    • emotion : reconnaissance des expressions faciales.

    • landmark : détecte les points de repère dans une vidéo.

    • Scenario : reconnaissance vidéo.

    • subtitle : extraction des sous-titres.

  • S00000103-000002 : fournit toutes les fonctionnalités de tagging et ne propose pas les fonctionnalités de transcription Tingwu.

S00000101-300080

Soumettre une tâche d'analyse structurée pour une ressource multimédia existante (SubmitMediaAiAnalysisJob)

Pour effectuer une analyse structurée sur une ressource multimédia existante, fournissez les paramètres de la tâche, tels que le modèle de paramètres, l'adresse webhook et les données personnalisées. Une fois la tâche terminée, un rappel est envoyé à votre serveur et les résultats d'analyse sont stockés dans le dossier généré par ICE situé dans le chemin OSS de la ressource multimédia. Pour plus d'informations, consultez la rubrique SubmitMediaAiAnalysisJob.

Exemple de paramètres d'entrée

{
    "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\"}"
}

Soumettre une tâche d'analyse structurée à l'aide d'une tâche de smart tagging (SubmitSmarttagJob)

  • Outre les méthodes précédentes, vous pouvez appeler l'opération SubmitSmarttagJob pour effectuer une analyse structurée d'une ressource multimédia. Définissez le paramètre Params.nlpParams pour personnaliser l'analyse structurée.

  • Une fois la tâche soumise, appelez l'opération QuerySmarttagJob pour interroger les résultats d'analyse. Pour plus d'informations sur les paramètres de réponse, consultez la section Résultats du traitement NLP.

Notifications de rappel système

Configurer les paramètres de rappel

Lorsque vous appelez l'opération SubmitMediaAiAnalysisJob ou RegisterMediaInfo, incluez un paramètre UserData avec une adresse webhook HTTP, HTTPS ou MNS. Une fois la tâche de tagging terminée et les résultats écrits dans la ressource multimédia, le système envoie une notification de rappel.

Après réception de la notification de rappel, appelez l'opération GetMediaInfo avec l'ID de la ressource multimédia pour interroger ses smart tags structurés.

Type d'événement de rappel

Analyse de la ressource multimédia et stockage des résultats (MediaAiAnalysisComplete)

Exemple de corps de message :

{
  "EventType": "MediaAiAnalysisComplete",
  "UserId": 183320223010****,
  "EventTime": "2022-06-23T13:11:33Z",
  "MessageBody": {
    "Status":"Success", // Indicates whether the AI analysis result is stored in the system. Valid values: Success and Failed.
    "JobStatus": "AnalyzeSuccess", // The status of the AI job. Valid values: AnalyzeSuccess and AnalyzeFailed.
    "Type": "StandardSmartTag" // The type of the AI job. The value is StandardSmartTag.
    "MediaId":"****b391419aj294m83b459f7435****" // The ID of the media asset.
  }
}

Pour plus d'informations sur les paramètres, consultez la liste des événements.

Obtenir les informations sur une ressource multimédia (GetMediaInfo)

Interrogez les tags intelligents structurés d'une ressource multimédia et spécifiez si vous souhaitez renvoyer les informations détaillées. Pour plus d'informations, consultez la rubrique GetMediaInfo.

Paramètres de requête (vous pouvez spécifier si les informations détaillées doivent être renvoyées)

Nom

Type

Obligatoire

Description

Exemple

ReturnDetailedInfo

string

Non

Indique s'il faut renvoyer les informations détaillées pour certains champs de la ressource multimédia. Si vous ne configurez pas ce paramètre, la valeur par défaut AiRoughData.StandardSmartTagJob=false est utilisée.

  • AiRoughData.StandardSmartTagJob=false : le champ Data dans Results ne contient pas d'informations détaillées sur les tags et inclut uniquement des informations récapitulatives, telles que le résumé des chapitres et les mots-clés.

  • AiRoughData.StandardSmartTagJob=true : le champ Data dans Results renvoie les informations détaillées sur les tags.

{"AiRoughData.StandardSmartTagJob": true}

Exemples de réponses

  • AiRoughData.StandardSmartTagJob=false : le champ Results ne contient pas d'informations détaillées sur les tags et inclut uniquement des informations récapitulatives, telles que le résumé des chapitres et les mots-clés.

    {
      "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": "Title",
          "Description": "Description",
          "Category": "Category",
          "MediaTags": "Tag, 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": {
          // Tags for multimodal search
          "Result": "https://sample-bucket.cn-shanghai.aliyuncs.com/result.json",
          "Status": "Analyzing",
          "SaveType": "TEXT",
          "AiCategory": "Life",
          "AiJobId": "****483915d4f2cd8ac20b48fb04****",
          
          // Standard tags
          "StandardSmartTagJob": {
            "AiJobId": "xxx",
            "Status": "Success",
            "ResultUrl": "http://xx.oss-cn-shanghai.aliyuncs.com/result2.txt",
            "Results": [
              {
                "Data": "{\"autoChapters\":[{\"start\":29830,\"headline\":\" Appearance-related stress and solutions\",\"summary\":\"The conversation mentioned the harm that appearance-related distress can cause to women, and two ways to address this issue: one is to achieve success through personal effort, and the other is to conform to mainstream beauty standards. However, both approaches require strong mental resilience. Additionally, for women who choose to conform to mainstream beauty standards, they may receive praise from those who appreciate them, but also face criticism from those who do not. Therefore, it is necessary to be mentally prepared to handle external doubts and potential hurt. \",\"end\":169720,\"id\":1}],\"meetingAssistance\":{\"keywords\":[\"distress\",\"appearance\",\"label\",\"criticism\",\"agree with the public\",\"psychology\",\"Internet celebrity\",\"female\",\"give in\",\"aesthetic\",\"gene\"]}}",
                "Type": "NLP"
              }
            ]
          }
        }
      }
    }
  • AiRoughData.StandardSmartTagJob=true : le champ Results renvoie les informations détaillées sur les tags.

    {
      "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": "Title",
          "Description": "Description",
          "Category": "Category",
          "MediaTags": "Tag,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": {
          // Tags for the entry-level edition of multimodal search
          "Result": "https://sample-bucket.cn-shanghai.aliyuncs.com/result.json",
          "Status": "Analyzing",
          "SaveType": "TEXT",
          "AiCategory": "Lifestyle",
          "AiJobId": "****483915d4f2cd8ac20b48fb04****",
          
          // Standard Edition smart tags
          "StandardSmartTagJob": {
            "AiJobId": "xxx",
            "Status": "Success",
            "ResultUrl": "http://xx.oss-cn-shanghai.aliyuncs.com/result2.txt",
            "Results":[
              {
                "Data":"{\"autoChapters\":[{\"start\":29830,\"headline\":\"Appearance concerns and solutions\",\"summary\":\"The conversation mentioned the harm that appearance concerns cause to women, and two ways to solve this problem: one is to achieve success through personal effort, and the other is to accept mainstream aesthetics. However, both methods require strong mental resilience. At the same time, those who choose to accept mainstream aesthetics will receive praise from supporters and criticism from dissenters. Therefore, it is necessary to be mentally prepared to cope with external doubts and harm.\",\"end\":169720,\"id\":1}],\"meetingAssistance\":{\"classifications\":{\"lecture\":0.13275695,\"meeting\":0.148536,\"interview\":0.7187071},\"keywords\":[\"concern\",\"appearance\",\"label\",\"criticism\",\"accept mainstream\",\"psychology\",\"internet celebrity\",\"female\",\"yield\",\"aesthetics\",\"gene\"],\"keySentences\":[{\"start\":23280,\"sentenceId\":6,\"end\":29330,\"text\":\"But among the two labels she most desires, the word 'beauty' is somewhat surprising.\",\"id\":1},{\"start\":112600,\"sentenceId\":23,\"end\":119828,\"text\":\"I think both the first and second options require a very strong mentality; you can choose either.\",\"id\":2},{\"start\":120430,\"sentenceId\":24,\"end\":124040,\"text\":\"The first is: I am capable, my soul is free.\",\"id\":3},{\"start\":146730,\"sentenceId\":27,\"end\":152180,\"text\":\"The second one, I think, requires an even stronger mentality. It's painful, and you have to endure criticism.\",\"id\":4},{\"start\":152490,\"sentenceId\":28,\"end\":165983,\"text\":\"At the same time, you have to admit you've succumbed to mainstream aesthetics. Then, both groups will criticize you. People who don't agree with mainstream aesthetics will criticize you for giving in, and people who do agree will criticize you for being fake.\",\"id\":5}]},\"summarization\":{\"conversationalSummary\":[{\"speakerName\":\"Speaker 3\",\"speakerId\":\"3\",\"summary\":\"She states that labels such as 'Peking University elite,' 'internet celebrity,' and 'genius girl' are not important to Li Xueqin, but among the two labels she most desires, the word 'beauty' is somewhat surprising.\"},{\"speakerName\":\"Speaker 1\",\"speakerId\":\"1\",\"summary\":\"He asks if she wants to give herself a label and if she has ever been troubled by her appearance. He proposes two solutions: one is to work hard to become a professional and achieve success; the other is to just get an injection or a cut. Finally, he asks for her opinion on the issue.\"},{\"speakerName\":\"Speaker 2\",\"speakerId\":\"2\",\"summary\":\"She calls herself a comedy practitioner and brings up the topic of 'struggle beauty.' She believes that if she were the first person everyone thought of as beautiful, the world's aesthetic standards would not be so harsh on many women. She also shares the rejection and hurt she has felt in her life, believing that a strong mentality is needed whether one chooses freedom or endures criticism. At the same time, she points out that succumbing to mainstream aesthetics will lead to accusations of being fake, while those who do not conform will be criticized for yielding. She believes she needs to consider everyone's perspective to do her best.\"}],\"questionsAnsweringSummary\":[{\"answer\":\"A comedy practitioner.\",\"sentenceIdsOfQuestion\":[1],\"sentenceIdsOfAnswer\":[2],\"question\":\"What kind of label do you want to give yourself?\"},{\"answer\":\"Peking University elite, internet celebrity, genius girl.\",\"sentenceIdsOfQuestion\":[3],\"sentenceIdsOfAnswer\":[5,6],\"question\":\"Is there anything else?\"},{\"answer\":\"Yes, I have been, because I've experienced rejection and hurt.\",\"sentenceIdsOfQuestion\":[8],\"sentenceIdsOfAnswer\":[9,10,11],\"question\":\"Have appearance issues ever troubled you?\"},{\"answer\":\"The first way is through personal effort and professional achievement, and the second is through changing one's appearance.\",\"sentenceIdsOfQuestion\":[18,19,20,21,22],\"sentenceIdsOfAnswer\":[18,19,20,21,22],\"question\":\"What do you think are the solutions for women's appearance concerns?\"}],\"paragraphSummary\":\"Li Xueqin states that she does not care about popular labels like 'comedy practitioner' or 'struggle beauty,' but she hopes to be the first person people think of as beautiful, so that the world's aesthetic standards for women will not be so harsh. She admits that appearance issues have troubled her in the past. Although she subjectively knows that beauty is diverse, the rejection and hurt she experienced in life were real. She mentions two ways to resolve appearance concerns: one is to gain achievement and recognition through hard work, and the other is to accept mainstream aesthetics and use her personality and inner beauty to overcome others' discrimination. She believes both methods require a strong mentality and will also face criticism from different groups.\"},\"transcription\":{\"paragraphs\":[{\"paragraphId\":\"1702974525131500000\",\"words\":[{\"start\":60,\"sentenceId\":1,\"end\":1084,\"text\":\"If possible\",\"id\":10},{\"start\":1084,\"sentenceId\":1,\"end\":1596,\"text\":\",\",\"id\":20},{\"start\":1600,\"sentenceId\":1,\"end\":1736,\"text\":\"you\",\"id\":30},{\"start\":1736,\"sentenceId\":1,\"end\":1872,\"text\":\"want\",\"id\":40},{\"start\":1872,\"sentenceId\":1,\"end\":2008,\"text\":\"to give\",\"id\":50},{\"start\":2008,\"sentenceId\":1,\"end\":2280,\"text\":\"yourself\",\"id\":60},{\"start\":2280,\"sentenceId\":1,\"end\":2688,\"text\":\"what kind\",\"id\":70},{\"start\":2688,\"sentenceId\":1,\"end\":2824,\"text\":\"of\",\"id\":80},{\"start\":2824,\"sentenceId\":1,\"end\":3096,\"text\":\"label?\",\"id\":90}],\"speakerId\":\"1\"},{\"paragraphId\":\"1702974528451500000\",\"words\":[{\"start\":3380,\"sentenceId\":2,\"end\":4120,\"text\":\"Comedy\",\"id\":100},{\"start\":4120,\"sentenceId\":2,\"end\":5230,\"text\":\"practitioner\",\"id\":110},{\"start\":5230,\"sentenceId\":2,\"end\":5600,\"text\":\", I guess.\",\"id\":120}],\"speakerId\":\"2\"},{\"paragraphId\":\"1702974533881500000\",\"words\":[{\"start\":8810,\"sentenceId\":3,\"end\":9320,\"text\":\"Anything\",\"id\":130},{\"start\":9320,\"sentenceId\":3,\"end\":10085,\"text\":\"else\",\"id\":140},{\"start\":10085,\"sentenceId\":3,\"end\":10595,\"text\":\"like\",\"id\":150},{\"start\":10595,\"sentenceId\":3,\"end\":11105,\"text\":\"that?\",\"id\":160}],\"speakerId\":\"1\"},{\"paragraphId\":\"1702974536176500000\",\"words\":[{\"start\":11105,\"sentenceId\":4,\"end\":11615,\"text\":\"Struggle\",\"id\":170},{\"start\":11615,\"sentenceId\":4,\"end\":12125,\"text\":\"beauty,\",\"id\":180},{\"start\":13330,\"sentenceId\":4,\"end\":13690,\"text\":\"is that okay?\",\"id\":190}],\"speakerId\":\"2\"},{\"paragraphId\":\"1702974538871500000\",\"words\":[{\"start\":13800,\"sentenceId\":5,\"end\":14135,\"text\":\"Peking\",\"id\":200},{\"start\":14135,\"sentenceId\":5,\"end\":14805,\"text\":\"University\",\"id\":210},{\"start\":14805,\"sentenceId\":5,\"end\":15140,\"text\":\"elite,\",\"id\":220},{\"start\":15320,\"sentenceId\":5,\"end\":15620,\"text\":\"internet\",\"id\":230},{\"start\":15620,\"sentenceId\":5,\"end\":15920,\"text\":\"celebrity,\",\"id\":240},{\"start\":16350,\"sentenceId\":5,\"end\":17230,\"text\":\"genius girl,\",\"id\":250},{\"start\":17840,\"sentenceId\":5,\"end\":18224,\"text\":\"for\",\"id\":260},{\"start\":18224,\"sentenceId\":5,\"end\":18608,\"text\":\"these\",\"id\":270},{\"start\":18608,\"sentenceId\":5,\"end\":18992,\"text\":\"popular\",\"id\":280},{\"start\":18992,\"sentenceId\":5,\"end\":19760,\"text\":\"labels\",\"id\":290},{\"start\":19760,\"sentenceId\":5,\"end\":19952,\"text\":\"that\",\"id\":300},{\"start\":19952,\"sentenceId\":5,\"end\":20336,\"text\":\"people enjoy,\",\"id\":310},{\"start\":20770,\"sentenceId\":5,\"end\":21349,\"text\":\"Li Xueqin\",\"id\":320},{\"start\":21349,\"sentenceId\":5,\"end\":21735,\"text\":\"appears\",\"id\":330},{\"start\":21735,\"sentenceId\":5,\"end\":21928,\"text\":\"to be\",\"id\":340},{\"start\":21928,\"sentenceId\":5,\"end\":22700,\"text\":\"indifferent.\",\"id\":350},{\"start\":23280,\"sentenceId\":6,\"end\":23458,\"text\":\"But\",\"id\":360},{\"start\":23458,\"sentenceId\":6,\"end\":23636,\"text\":\"of\",\"id\":370},{\"start\":23636,\"sentenceId\":6,\"end\":23992,\"text\":\"the two\",\"id\":380},{\"start\":23992,\"sentenceId\":6,\"end\":24170,\"text\":\"most\",\"id\":390},{\"start\":24170,\"sentenceId\":6,\"end\":24526,\"text\":\"desired\",\"id\":400},{\"start\":24526,\"sentenceId\":6,\"end\":24704,\"text\":\"labels\",\"id\":410},{\"start\":24704,\"sentenceId\":6,\"end\":25060,\"text\":\"in her\",\"id\":420},{\"start\":25060,\"sentenceId\":6,\"end\":25416,\"text\":\"heart,\",\"id\":430},{\"start\":25416,\"sentenceId\":6,\"end\":25772,\"text\":\"the word\",\"id\":440},{\"start\":26420,\"sentenceId\":6,\"end\":26808,\"text\":\"beauty\",\"id\":450},{\"start\":26808,\"sentenceId\":6,\"end\":27196,\"text\":\"is\",\"id\":460},{\"start\":27196,\"sentenceId\":6,\"end\":27390,\"text\":\"somewhat\",\"id\":470},{\"start\":27390,\"sentenceId\":6,\"end\":28166,\"text\":\"unexpectedly\",\"id\":480},{\"start\":28166,\"sentenceId\":6,\"end\":28554,\"text\":\"surprising.\",\"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\":\"I want\",\"id\":520},{\"start\":30366,\"sentenceId\":7,\"end\":31170,\"text\":\"I hope\",\"id\":530},{\"start\":31170,\"sentenceId\":7,\"end\":32510,\"text\":\"that if one day\",\"id\":540},{\"start\":32510,\"sentenceId\":7,\"end\":33314,\"text\":\"everyone\",\"id\":550},{\"start\":33314,\"sentenceId\":7,\"end\":33582,\"text\":\"in the\",\"id\":560},{\"start\":33582,\"sentenceId\":7,\"end\":33850,\"text\":\"world\",\"id\":570},{\"start\":33850,\"sentenceId\":7,\"end\":34386,\"text\":\"thinks\",\"id\":580},{\"start\":34386,\"sentenceId\":7,\"end\":34654,\"text\":\"of me\",\"id\":590},{\"start\":34654,\"sentenceId\":7,\"end\":35458,\"text\":\"first\",\"id\":600},{\"start\":35458,\"sentenceId\":7,\"end\":35994,\"text\":\"as\",\"id\":610},{\"start\":35994,\"sentenceId\":7,\"end\":36262,\"text\":\"a\",\"id\":620},{\"start\":36262,\"sentenceId\":7,\"end\":36798,\"text\":\"beauty,\",\"id\":630},{\"start\":37740,\"sentenceId\":7,\"end\":37974,\"text\":\"then\",\"id\":640},{\"start\":37974,\"sentenceId\":7,\"end\":38208,\"text\":\"I\",\"id\":650},{\"start\":38208,\"sentenceId\":7,\"end\":38676,\"text\":\"think\",\"id\":660},{\"start\":38676,\"sentenceId\":7,\"end\":39144,\"text\":\"the\",\"id\":670},{\"start\":39144,\"sentenceId\":7,\"end\":39846,\"text\":\"world's\",\"id\":680},{\"start\":39846,\"sentenceId\":7,\"end\":40080,\"text\":\"aesthetic\",\"id\":690},{\"start\":40080,\"sentenceId\":7,\"end\":40548,\"text\":\"standards\",\"id\":700},{\"start\":40548,\"sentenceId\":7,\"end\":40782,\"text\":\"wouldn't\",\"id\":710},{\"start\":40782,\"sentenceId\":7,\"end\":41250,\"text\":\"be\",\"id\":720},{\"start\":41250,\"sentenceId\":7,\"end\":41484,\"text\":\"so\",\"id\":730},{\"start\":41484,\"sentenceId\":7,\"end\":41952,\"text\":\"harsh\",\"id\":740},{\"start\":41952,\"sentenceId\":7,\"end\":42420,\"text\":\"on many\",\"id\":750},{\"start\":42420,\"sentenceId\":7,\"end\":42888,\"text\":\"women.\",\"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\":\"Have appearance\",\"id\":790},{\"start\":43920,\"sentenceId\":8,\"end\":44240,\"text\":\"issues\",\"id\":800},{\"start\":44240,\"sentenceId\":8,\"end\":44560,\"text\":\"ever\",\"id\":810},{\"start\":44560,\"sentenceId\":8,\"end\":44720,\"text\":\"troubled\",\"id\":820},{\"start\":44720,\"sentenceId\":8,\"end\":44880,\"text\":\"you?\",\"id\":830},{\"start\":44880,"sentenceId":8,"end":45040,"text":"","id":840}],\"speakerId\":\"1\"},{\"paragraphId\":\"1702974570361500000\",\"words\":[{\"start\":45290,\"sentenceId\":9,\"end\":45690,\"text\":\"Yes,\",\"id\":850},{\"start\":45690,"sentenceId":9,"end":45890,"text":"they\",\"id":860},{\"start\":45890,"sentenceId":9,"end":46090,"text":"have.\",\"id":870},{\"start\":46480,\"sentenceId\":10,\"end\":47305,\"text\":\"Because I\",\"id\":880},{\"start\":47305,\"sentenceId\":10,\"end\":47580,\"text\":\"subjectively\",\"id\":890},{\"start\":47580,\"sentenceId\":10,\"end\":48130,\"text\":\"know\",\"id\":900},{\"start\":48130,\"sentenceId\":10,\"end\":48405,\"text\":\"that\",\"id\":910},{\"start\":48405,\"sentenceId\":10,\"end\":48955,\"text\":\"beauty\",\"id\":920},{\"start\":48955,\"sentenceId\":10,\"end\":49230,\"text\":\"is\",\"id\":930},{\"start\":49230,\"sentenceId\":10,\"end\":49505,\"text\":\"diverse,\",\"id\":940},{\"start\":49505,\"sentenceId\":10,\"end\":50055,\"text\":\"and you\",\"id\":950},{\"start\":50055,\"sentenceId\":10,\"end\":50330,\"text\":\"shouldn't\",\"id\":960},{\"start\":50740,\"sentenceId\":10,\"end\":51250,\"text\":\"define\",\"id\":970},{\"start\":51250,\"sentenceId\":10,\"end\":51420,\"text\":\"a person\",\"id\":980},{\"start\":51420,\"sentenceId\":10,\"end\":51760,\"text\":\"by\",\"id\":990},{\"start\":51760,\"sentenceId\":10,\"end\":51930,\"text\":\"their\",\"id\":1000},{\"start\":51930,\"sentenceId\":10,\"end\":52270,\"text\":\"appearance.\",\"id\":1010},{\"start\":52270,"sentenceId":10,"end":52780,"text":"","id":1020},{\"start\":53140,\"sentenceId\":11,\"end\":53812,\"text\":\"But\",\"id\":1030},{\"start\":53812,\"sentenceId\":11,\"end\":54484,\"text\":\"that's\",\"id\":1040},{\"start\":54484,\"sentenceId\":11,\"end\":55156,\"text\":\"on a\",\"id\":1050},{\"start\":55156,\"sentenceId\":11,\"end\":55492,\"text\":\"rational\",\"id\":1060},{\"start\":55492,\"sentenceId\":11,\"end\":55828,\"text\":\"level.\",\"id\":1070},{\"start\":55830,\"sentenceId\":11,\"end\":55984,\"text\":\"The\",\"id\":1080},{\"start\":55984,\"sentenceId\":11,\"end\":56138,\"text\":\"rejection\",\"id\":1090},{\"start\":56138,\"sentenceId\":11,\"end\":56754,\"text\":\"and\",\"id\":1100},{\"start\":56754,\"sentenceId\":11,\"end\":57216,\"text\":\"hurt\",\"id\":1110},{\"start\":57216,\"sentenceId\":11,\"end\":57370,\"text\":\"I\",\"id\":1120},{\"start\":57370,\"sentenceId\":11,\"end\":57678,\"text\":\"feel\",\"id\":1130},{\"start\":57678,\"sentenceId\":11,\"end\":57832,\"text\":\"in\",\"id\":1140},{\"start\":57832,\"sentenceId\":11,\"end\":58140,\"text\":\"life\",\"id\":1150},{\"start\":58140,\"sentenceId\":11,\"end\":58294,\"text\":\"are\",\"id\":1160},{\"start\":58294,\"sentenceId\":11,\"end\":58756,\"text\":\"real.\",\"id\":1170}],\"speakerId\":\"2\"},{\"paragraphId\":\"1702974584141500000\",\"words\":[{\"start\":59070,\"sentenceId\":12,\"end\":59227,\"text\":\"You\",\"id\":1180},{\"start\":59227,\"sentenceId\":12,\"end\":59384,\"text\":\"think\",\"id\":1190},{\"start\":59384,\"sentenceId\":12,\"end\":59698,\"text\":\"I think\",\"id\":1200},{\"start\":59698,\"sentenceId\":12,\"end\":59855,\"text\":\"I\",\"id\":1210},{\"start\":59855,\"sentenceId\":12,\"end\":60169,\"text\":\"said\",\"id\":1220},{\"start\":60169,\"sentenceId\":12,\"end\":60326,\"text\":\"before,\",\"id\":1230},{\"start\":60330,\"sentenceId\":12,\"end\":60452,\"text\":\"when\",\"id\":1240},{\"start\":60452,\"sentenceId\":12,\"end\":60696,\"text\":\"I was\",\"id\":1250},{\"start\":60696,\"sentenceId\":12,\"end\":60940,\"text\":\"little,\",\"id\":1260},{\"start\":60940,\"sentenceId\":12,\"end\":61182,\"text\":\"people\",\"id\":1270},{\"start\":61182,\"sentenceId\":12,\"end\":61303,\"text\":\"wouldn't\",\"id\":1280},{\"start\":61303,\"sentenceId\":12,\"end\":61666,\"text\":\"play\",\"id\":1290},{\"start\":61666,\"sentenceId\":12,\"end\":61787,\"text\":\"with\",\"id\":1300},{\"start\":61787,\"sentenceId\":12,\"end\":61908,\"text\":\"me\",\"id\":1310},{\"start\":61908,\"sentenceId\":12,\"end\":62271,\"text\":\"because\",\"id\":1320},{\"start\":62271,\"sentenceId\":12,\"end\":62392,\"text\":\"I was ugly\",\"id\":1330},{\"start\":62400,\"sentenceId\":12,\"end\":62714,\"text\":\"and fat.\",\"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\":\"Then\",\"id\":1380},{\"start\":65138,\"sentenceId\":13,\"end\":65765,\"text\":\"after\",\"id\":1390},{\"start\":65765,\"sentenceId\":13,\"end\":66183,\"text\":\"I grew up,\",\"id\":1400},{\"start\":66183,\"sentenceId\":13,\"end\":66601,\"text\":\"there would\",\"id\":1410},{\"start\":66601,\"sentenceId\":13,\"end\":66810,\"text\":\"be\",\"id\":1420},{\"start\":66810,\"sentenceId\":13,\"end\":67228,\"text\":\"guys\",\"id\":1430},{\"start\":67228,\"sentenceId\":13,\"end\":67437,\"text\":\"who\",\"id\":1440},{\"start\":67437,\"sentenceId\":13,\"end\":68064,\"text\":\"said\",\"id\":1450},{\"start\":68064,\"sentenceId\":13,\"end\":68482,\"text\":\"I used to\",\"id\":1460},{\"start\":68482,\"sentenceId\":13,\"end\":68691,\"text\":\"always\",\"id\":1470},{\"start\":68691,\"sentenceId\":13,\"end\":68900,\"text\":\"say\",\"id\":1480},{\"start\":68900,\"sentenceId\":13,\"end\":69318,\"text\":\"I want\",\"id\":1490},{\"start\":69318,\"sentenceId\":13,\"end\":69527,\"text\":\"to find\",\"id\":1500},{\"start\":69527,\"sentenceId\":13,\"end\":69736,\"text\":\"someone\",\"id\":1510},{\"start\":69736,\"sentenceId\":13,\"end\":70154,\"text\":\"with good\",\"id\":1520},{\"start\":70154,\"sentenceId\":13,\"end\":70572,\"text\":\"genes.\",\"id\":1530},{\"start\":70730,\"sentenceId\":14,\"end\":71040,\"text\":\"Then\",\"id\":1540},{\"start\":71040,\"sentenceId\":14,\"end\":71350,\"text\":\"including\",\"id\":1550},{\"start\":71350,\"sentenceId\":14,\"end\":71505,\"text\":\"when\",\"id\":1560},{\"start\":71505,\"sentenceId\":14,\"end\":71660,\"text\":\"I\",\"id\":1570},{\"start\":71660,\"sentenceId\":14,\"end\":71970,\"text\":\"became\",\"id\":1580},{\"start\":71970,\"sentenceId\":14,\"end\":72280,\"text\":\"a\",\"id\":1590},{\"start\":72280,\"sentenceId\":14,\"end\":72900,\"text\":\"public figure,\",\"id\":1600},{\"start\":72900,"sentenceId":14,"end":73210,"text":"","id":1610},{\"start\":73380,\"sentenceId\":14,\"end\":73544,\"text\":\"as\",\"id\":1620},{\"start\":73544,\"sentenceId\":14,\"end\":73708,\"text\":\"an\",\"id\":1630},{\"start\":73708,\"sentenceId\":14,\"end\":73872,\"text\":\"internet\",\"id\":1640},{\"start\":73872,\"sentenceId\":14,\"end\":74200,\"text\":\"celebrity,\",\"id\":1650},{\"start\":74450,\"sentenceId\":14,\"end\":74624,\"text\":\"I\",\"id\":1660},{\"start\":74624,\"sentenceId\":14,\"end\":74798,\"text\":\"had\",\"id\":1670},{\"start\":74798,\"sentenceId\":14,\"end\":75146,\"text\":\"friends\",\"id\":1680},{\"start\":75146,\"sentenceId\":14,\"end\":75320,\"text\":\"say\",\"id\":1690},{\"start\":75320,\"sentenceId\":14,\"end\":75494,\"text\":\"'You're\",\"id\":1700},{\"start\":75494,\"sentenceId\":14,\"end\":75842,\"text\":\"so\",\"id\":1710},{\"start\":75842,\"sentenceId\":14,\"end\":76190,\"text\":\"ugly,\",\"id\":1720},{\"start\":76190,\"sentenceId\":14,\"end\":76364,\"text\":\"why\",\"id\":1730},{\"start\":76364,\"sentenceId\":14,\"end\":76712,\"text\":\"are you\",\"id\":1740},{\"start\":76712,\"sentenceId\":14,\"end\":77408,\"text\":\"showing your face\",\"id\":1750},{\"start\":77408,\"sentenceId\":14,\"end\":77930,\"text\":\"in public?'\",\"id\":1760},{\"start\":79290,\"sentenceId\":15,\"end\":79634,\"text\":\"There would\",\"id\":1770},{\"start\":79634,\"sentenceId\":15,\"end\":79978,\"text\":\"be\",\"id\":1780},{\"start\":79978,\"sentenceId\":15,\"end\":80494,\"text\":\"some real\",\"id\":1790},{\"start\":80494,\"sentenceId\":15,\"end\":80838,\"text\":\"hurt.\",\"id\":1800},{\"start\":80940,\"sentenceId\":16,\"end\":81272,\"text\":\"So\",\"id\":1810},{\"start\":81272,\"sentenceId\":16,\"end\":81936,\"text\":\"I said if\",\"id\":1820},{\"start\":81936,\"sentenceId\":16,\"end\":82102,\"text\":\"everyone\",\"id\":1830},{\"start\":82102,"sentenceId":16,"end":82434,"text":"","id":1840},{\"start\":82434,"sentenceId":16,"end":82766,"text":"mentioned\",\"id":1850},{\"start\":82766,"sentenceId":16,"end":82932,"text\":\"me\",\"id\":1860},{\"start\":82932,"sentenceId":16,"end":83264,"text\":\"and thought\",\"id\":1870},{\"start\":83264,"sentenceId":16,"end":83430,\"text\":\"of\",\"id\":1880},{\"start\":83430,"sentenceId":16,"end":83762,"text\":\"beauty\",\"id\":1890},{\"start\":83762,"sentenceId":16,"end":83928,"text":"at\",\"id":1900},{\"start\":83928,"sentenceId":16,"end":84260,"text":"that time,\",\"id":1910},{\"start\":85220,\"sentenceId\":16,\"end\":85424,\"text\":\"then\",\"id\":1920},{\"start\":85424,"sentenceId":16,"end":85628,\"text\":\"I\",\"id\":1930},{\"start\":85628,"sentenceId":16,"end":86036,\"text\":\"think\",\"id\":1940},{\"start\":86036,"sentenceId":16,"end":86444,"text\":\"how far\",\"id\":1950},{\"start\":86444,"sentenceId":16,"end":86648,"text\":\"we've\",\"id\":1960},{\"start\":86648,"sentenceId":16,"end":87056,\"text\":\"come.\",\"id\":1970},{\"start\":87056,"sentenceId":16,"end":87260,"text\":\"There\",\"id":1980},{\"start\":87260,"sentenceId":16,"end":87668,\"text\":\"must\",\"id":1990},{\"start\":87668,"sentenceId":16,"end":87872,\"text\":\"be\",\"id":2000},{\"start\":87872,"sentenceId":16,"end":88280,\"text\":\"many\",\"id":2010},{\"start\":88280,"sentenceId":16,"end":88688,\"text\":\"girls\",\"id":2020},{\"start\":88688,"sentenceId\":16,\"end\":88892,\"text\":\"like\",\"id\":2030},{\"start\":88892,"sentenceId\":16,\"end\":89096,\"text\":\"me\",\"id\":2040},{\"start\":89096,"sentenceId\":16,\"end\":89504,\"text\":\"who have\",\"id\":2050},{\"start\":89504,"sentenceId\":16,\"end\":89912,\"text\":\"suffered\",\"id\":2060},{\"start\":89912,"sentenceId\":16,\"end\":90320,\"text\":\"from this\",\"id\":2070},{\"start\":90320,"sentenceId\":16,\"end\":90728,\"text\":\"kind of\",\"id\":2080},{\"start\":90728,"sentenceId\":16,"end":90932,\"text\":\"appearance\",\"id\":2090},{\"start\":90932,"sentenceId":16,"end":91136,"text\":\"concern.\",\"id":2100},{\"start\":91136,"sentenceId":16,"end":91544,"text":"","id":2110},{\"start\":93030,\"sentenceId\":17,\"end\":93159,\"text\":\"Then\",\"id\":2120},{\"start\":93159,"sentenceId":17,\"end\":93417,\"text\":\"maybe\",\"id\":2130},{\"start\":93417,"sentenceId\":17,\"end\":93675,\"text\":\"everyone\",\"id\":2140},{\"start\":93675,"sentenceId\":17,"end":93804,\"text\":\"wouldn't\",\"id":2150},{\"start\":93804,"sentenceId\":17,"end\":93933,\"text\":\"be\",\"id":2160},{\"start\":93933,"sentenceId\":17,\"end\":94191,\"text\":\"troubled\",\"id":2170},{\"start\":94191,"sentenceId\":17,\"end\":94320,\"text\":\"anymore.\",\"id\":2180}],\"speakerId\":\"2\"},{\"paragraphId\":\"1702974619921500000\",\"words\":[{\"start\":94850,\"sentenceId\":18,\"end\":95190,\"text\":\"But\",\"id\":2190},{\"start\":95190,"sentenceId":18,"end":95360,\"text\":\"I\",\"id":2200},{\"start\":95360,"sentenceId\":18,"end\":95870,\"text\":\"because I\",\"id\":2210},{\"start\":95870,\"sentenceId\":18,\"end\":96210,\"text\":\"see\",\"id\":2220},{\"start\":96210,"sentenceId\":18,\"end\":96550,\"text\":\"women\",\"id\":2230},{\"start\":96550,"sentenceId\":18,\"end\":96720,\"text\":\"troubled\",\"id\":2240},{\"start\":96720,"sentenceId":18,"end":97060,\"text\":\"by their\",\"id\":2250},{\"start\":97060,"sentenceId":18,"end":97230,\"text\":\"appearance,\",\"id":2260},{\"start\":97230,"sentenceId":18,"end":97570,\"text\":\"she\",\"id":2270},{\"start\":97570,"sentenceId":18,"end":97740,\"text\":\"has\",\"id":2280},{\"start\":97740,"sentenceId":18,"end":97910,\"text\":\"a few\",\"id":2290},{\"start\":97910,"sentenceId":18,"end":98250,\"text\":\"solutions.\",\"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\":\"Either\",\"id\":2330},{\"start\":100109,\"sentenceId\":19,\"end\":100748,\"text\":\"you say,\",\"id\":2340},{\"start\":100748,"sentenceId":19,"end":100961,\"text\":\"'My\",\"id\":2350},{\"start\":100961,"sentenceId":19,"end\":101174,\"text\":\"soul\",\"id\":2360},{\"start\":101174,"sentenceId":19,"end\":101600,\"text\":\"is\",\"id\":2370},{\"start\":101600,"sentenceId":19,\"end\":102026,\"text\":\"beautiful,\",\"id\":2380},{\"start\":102030,\"sentenceId\":19,\"end\":102196,\"text\":\"I\",\"id\":2390},{\"start\":102196,"sentenceId\":19,\"end\":102528,\"text\":\"work\",\"id\":2400},{\"start\":102528,"sentenceId\":19,\"end\":102694,\"text\":\"hard\",\"id\":2410},{\"start\":102694,"sentenceId\":19,\"end\":102860,\"text\":\"to\",\"id\":2420},{\"start\":102860,"sentenceId\":19,\"end\":103192,\"text\":\"become\",\"id\":2430},{\"start\":103192,"sentenceId\":19,\"end\":103524,\"text\":\"a professional,\",\"id\":2440},{\"start\":103530,\"sentenceId\":19,\"end\":103950,\"text\":\"I want\",\"id\":2450},{\"start\":103950,"sentenceId\":19,\"end\":104160,\"text\":\"to be famous,\",\"id\":2460},{\"start\":104160,"sentenceId\":19,"end\":104556,\"text\":\"I want\",\"id\":2470},{\"start\":104556,"sentenceId\":19,\"end\":104754,\"text\":\"to have\",\"id\":2480},{\"start\":104754,"sentenceId\":19,"end\":105150,\"text\":\"achievements.'\",\"id\":2490},{\"start\":105500,\"sentenceId\":20,\"end\":105839,\"text\":\"The other\",\"id\":2500},{\"start\":105839,"sentenceId\":20,\"end\":106178,\"text\":\"is, 'Why\",\"id\":2510},{\"start\":106178,"sentenceId":20,"end":106517,"text\":\"are you\",\"id":2520},{\"start\":106517,"sentenceId":20,"end":106743,"text\":\"telling\",\"id":2530},{\"start\":106743,"sentenceId":20,"end":106856,"text\":\"me\",\"id":2540},{\"start\":106856,"sentenceId":20,"end":107082,"text\":\"all this?\",\"id":2550},{\"start\":107082,"sentenceId":20,"end":107308,"text":"'\",\"id":2560},{\"start\":107420,\"sentenceId\":21,\"end\":107561,\"text\":\"I'll\",\"id\":2570},{\"start\":107561,"sentenceId\":21,\"end\":107702,\"text\":\"go\",\"id\":2580},{\"start\":107702,"sentenceId\":21,\"end\":107843,\"text\":\"get\",\"id\":2590},{\"start\":107843,"sentenceId\":21,\"end\":108125,\"text\":\"an injection,\",\"id\":2600},{\"start\":108125,"sentenceId\":21,\"end\":108266,\"text\":\"make\",\"id\":2610},{\"start\":108266,"sentenceId\":21,\"end\":108548,\"text\":\"a cut,\",\"id\":2620},{\"start\":108548,"sentenceId\":21,\"end\":108830,\"text\":\"and it's\",\"id\":2630},{\"start\":108830,"sentenceId\":21,\"end\":109112,\"text\":\"over,\",\"id\":2640},{\"start\":109112,"sentenceId":21,"end":109253,"text":"right?\",\"id":2650},{\"start\":110310,\"sentenceId\":22,\"end\":111010,\"text\":\"What do you think\",\"id\":2660},{\"start\":111010,"sentenceId":22,"end":111360,"text":"about this\",\"id":2670},{\"start\":111360,"sentenceId":22,"end":111710,"text":"issue?\",\"id":2680}],\"speakerId\":\"1\"},{\"paragraphId\":\"1702974637671500000\",\"words\":[{\"start\":112600,\"sentenceId\":23,\"end\":112868,\"text\":\"I\",\"id\":2690},{\"start\":112868,\"sentenceId\":23,\"end\":113404,\"text\":\"think\",\"id\":2700},{\"start\":113404,\"sentenceId\":23,\"end\":114208,\"text\":\"the first\",\"id\":2710},{\"start\":114208,\"sentenceId\":23,\"end\":114476,\"text\":\"and\",\"id\":2720},{\"start\":114476,\"sentenceId\":23,\"end\":115280,\"text\":\"the second\",\"id\":2730},{\"start\":115280,\"sentenceId\":23,\"end\":115548,\"text\":\"both\",\"id\":2740},{\"start\":115548,\"sentenceId\":23,\"end\":116084,\"text\":\"require\",\"id\":2750},{\"start\":116084,\"sentenceId\":23,\"end\":116620,\"text\":\"a very\",\"id\":2760},{\"start\":116620,"sentenceId":23,"end":117156,"text":"strong","id":2770},{\"start\":117156,"sentenceId":23,"end":117424,"text":"mentality,\",\"id":2780},{\"start\":117424,"sentenceId":23,"end":117960,"text":"","id":2790},{\"start\":118820,\"sentenceId\":23,\"end\":118988,\"text\":\"you\",\"id\":2800},{\"start\":118988,\"sentenceId\":23,\"end\":119156,\"text\":\"can choose\",\"id\":2810},{\"start\":119156,"sentenceId":23,"end":119492,"text":"either.\",\"id":2820},{\"start\":119492,"sentenceId":23,"end":119828,"text":"","id":2830},{\"start\":120430,\"sentenceId\":24,\"end\":121360,\"text\":\"The first\",\"id\":2840},{\"start\":121360,"sentenceId":24,"end":122290,"text":"is 'I'm\",\"id":2850},{\"start\":122290,"sentenceId":24,"end":122910,"text":"capable,\",\"id":2860},{\"start\":123300,\"sentenceId\":24,\"end\":123448,\"text\":\"my\",\"id\":2870},{\"start\":123448,"sentenceId":24,"end":123744,"text":"soul\",\"id":2880},{\"start\":123744,"sentenceId":24,"end":124040,"text":"is free.'\",\"id":2890},{\"start\":124300,\"sentenceId\":25,\"end\":124776,\"text\":\"But\",\"id\":2900},{\"start\":124776,"sentenceId":25,"end":125014,"text":"you\",\"id":2910},{\"start\":125014,"sentenceId":25,"end":125490,"text":"will also\",\"id":2920},{\"start\":125490,"sentenceId":25,"end":125966,"text":"hear\",\"id":2930},{\"start\":125966,"sentenceId":25,"end":126442,"text":"others\",\"id":2940},{\"start\":126442,"sentenceId":25,"end":126680,"text":"say\",\"id":2950},{\"start\":126680,"sentenceId":25,"end":126918,"text":"your\",\"id":2960},{\"start\":126918,"sentenceId":25,"end":127394,"text":"genes\",\"id":2970},{\"start\":127394,"sentenceId":25,"end":127870,"text":"are bad,\",\"id":2980},{\"start\":129330,"sentenceId":25,"end":129491,"text\":\"you\",\"id":2990},{\"start\":129491,"sentenceId":25,"end":129652,\"text\":\"can\",\"id":3000},{\"start\":129652,"sentenceId":25,"end":129974,"text":"endure\",\"id":3010},{\"start\":129974,"sentenceId":25,"end":130296,"text":"it.\",\"id":3020},{\"start\":130300,"sentenceId\":26,\"end\":130468,\"text\":\"You\",\"id\":3030},{\"start\":130468,"sentenceId\":26,\"end\":130804,\"text\":\"believe\",\"id\":3040},{\"start\":130804,"sentenceId\":26,\"end\":130972,\"text\":\"you\",\"id\":3050},{\"start\":130972,"sentenceId\":26,\"end\":131308,\"text\":\"firmly\",\"id\":3060},{\"start\":131308,"sentenceId\":26,\"end\":131476,\"text\":\"believe\",\"id\":3070},{\"start\":131476,"sentenceId\":26,\"end\":131812,\"text\":\"that\",\"id\":3080},{\"start\":131812,"sentenceId\":26,\"end\":131980,\"text\":\"your\",\"id\":3090},{\"start\":131980,"sentenceId\":26,\"end\":132316,\"text\":\"personality\",\"id\":3100},{\"start\":132316,"sentenceId\":26,\"end\":132484,\"text\":\"can\",\"id\":3110},{\"start\":132484,"sentenceId\":26,\"end\":132652,\"text\":\"cover\",\"id\":3120},{\"start\":132652,"sentenceId\":26,\"end\":132988,\"text\":\"up\",\"id\":3130},{\"start\":132988,"sentenceId\":26,\"end\":133324,\"text\":\"everything,\",\"id\":3140},{\"start\":133324,"sentenceId\":26,\"end\":133660,\"text\":\"and\",\"id\":3150},{\"start\":133660,"sentenceId\":26,\"end\":133828,\"text\":\"other\",\"id\":3160},{\"start\":133828,"sentenceId\":26,\"end\":134164,\"text\":\"people's\",\"id\":3170},{\"start\":134500,"sentenceId\":26,\"end\":134862,\"text\":\"discrimination\",\"id\":3180},{\"start\":134862,"sentenceId\":26,\"end\":135043,\"text\":\"against\",\"id\":3190},{\"start\":135043,"sentenceId\":26,\"end\":135405,\"text\":\"your\",\"id\":3200},{\"start\":135405,"sentenceId\":26,\"end\":135586,\"text\":\"appearance\",\"id\":3210},{\"start\":135586,"sentenceId\":26,\"end\":135767,\"text\":\"is\",\"id\":3220},{\"start\":135767,"sentenceId\":26,\"end\":135948,\"text\":\"okay,\",\"id\":3230},{\"start\":135948,"sentenceId\":26,\"end\":136310,\"text\":\"but\",\"id\":3240},{\"start\":136310,"sentenceId\":26,\"end\":136853,\"text\":\"I'm\",\"id\":3250},{\"start\":136853,"sentenceId\":26,\"end\":137034,\"text\":\"not\",\"id\":3260},{\"start\":137034,"sentenceId\":26,\"end\":137396,\"text\":\"strong,\",\"id\":3270},{\"start\":137396,"sentenceId\":26,\"end\":137758,\"text\":\"my\",\"id\":3280},{\"start\":137758,"sentenceId\":26,\"end\":138120,\"text\":\"personality\",\"id\":3290},{\"start\":138560,"sentenceId\":26,\"end\":138760,\"text\":\"is\",\"id\":3300},{\"start\":138760,"sentenceId\":26,\"end\":138960,\"text\":\"not\",\"id\":3310},{\"start\":138960,"sentenceId\":26,\"end\":139160,\"text\":\"beautiful\",\"id\":3320},{\"start\":139160,"sentenceId\":26,\"end\":139560,\"text\":\"enough\",\"id\":3330},{\"start\":139560,"sentenceId\":26,\"end\":139960,\"text\":\"to\",\"id\":3340},{\"start\":139960,"sentenceId\":26,\"end\":140406,\"text\":\"let\",\"id\":3350},{\"start\":140406,"sentenceId\":26,\"end\":140852,\"text\":\"me\",\"id\":3360},{\"start\":140852,"sentenceId\":26,\"end\":141075,\"text\":\"completely\",\"id\":3370},{\"start\":141075,"sentenceId\":26,\"end\":141521,\"text\":\"ignore\",\"id\":3380},{\"start\":141521,"sentenceId\":26,\"end\":141967,\"text\":\"the\",\"id\":3390},{\"start\":141967,"sentenceId\":26,\"end\":142190,\"text\":\"hurt\",\"id\":3400},{\"start\":142190,"sentenceId\":26,\"end\":142636,\"text\":\"from\",\"id\":3410},{\"start\":142636,"sentenceId\":26,\"end\":142859,\"text\":\"others.\",\"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\":\"The second\",\"id\":3510},{\"start\":147207,"sentenceId\":27,\"end\":147366,\"text\":\"one,\",\"id\":3520},{\"start\":147366,"sentenceId\":27,\"end\":147684,\"text\":\"I think,\",\"id\":3530},{\"start\":147684,"sentenceId\":27,\"end\":147843,\"text\":\"requires\",\"id\":3540},{\"start\":147843,"sentenceId\":27,\"end\":148002,\"text\":\"an even\",\"id\":3550},{\"start\":148002,"sentenceId\":27,\"end\":148320,\"text\":\"stronger\",\"id\":3560},{\"start\":148320,"sentenceId\":27,\"end\":148638,\"text\":\"mentality.\",\"id\":3570},{\"start\":148638,"sentenceId\":27,"end\":148797,\"text\":\"It's\",\"id\":3580},{\"start\":148797,"sentenceId\":27,"end\":149115,\"text\":\"painful,\",\"id\":3590},{\"start\":149430,"sentenceId\":27,\"end\":149705,\"text\":\"and\",\"id\":3600},{\"start\":149705,"sentenceId\":27,\"end\":149980,\"text\":\"you\",\"id\":3610},{\"start\":149980,"sentenceId\":27,\"end\":150255,\"text\":\"have to\",\"id\":3620},{\"start\":150255,"sentenceId\":27,\"end\":150805,\"text\":\"endure\",\"id\":3630},{\"start\":150805,"sentenceId\":27,"end\":151080,\"text\":\"criticism.\",\"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\":\"At the same time,\",\"id\":3670},{\"start\":152858,"sentenceId\":28,\"end\":153042,\"text\":\"you\",\"id\":3680},{\"start\":153042,"sentenceId\":28,\"end\":153226,\"text\":\"have to\",\"id\":3690},{\"start\":153226,"sentenceId\":28,\"end\":153594,\"text\":\"admit\",\"id\":3700},{\"start\":153594,"sentenceId\":28,\"end\":153778,\"text\":\"you've\",\"id\":3710},{\"start\":153778,"sentenceId\":28,\"end\":153962,\"text\":\"succumbed\",\"id\":3720},{\"start\":153962,"sentenceId\":28,\"end\":154330,\"text\":\"to mainstream\",\"id\":3730},{\"start\":154330,"sentenceId\":28,\"end\":154698,\"text\":\"aesthetics,\",\"id\":3740},{\"start\":154698,"sentenceId\":28,"end\":155066,\"text\":\"and\",\"id\":3750},{\"start\":155066,"sentenceId\":28,\"end\":155250,\"text\":\"then\",\"id\":3760},{\"start\":156510,"sentenceId\":28,\"end\":156882,\"text\":\"both\",\"id\":3770},{\"start\":156882,"sentenceId\":28,\"end\":157254,\"text\":\"groups\",\"id\":3780},{\"start\":157254,"sentenceId\":28,\"end\":157440,\"text\":\"will\",\"id\":3790},{\"start\":157440,"sentenceId\":28,\"end\":157812,\"text\":\"criticize\",\"id\":3800},{\"start\":157812,"sentenceId\":28,\"end\":158184,\"text\":\"you.\",\"id\":3810},{\"start\":158184,"sentenceId\":28,\"end\":158370,\"text\":\"People\",\"id\":3820},{\"start\":158370,"sentenceId\":28,\"end\":158742,\"text\":\"who don't\",\"id\":3830},{\"start\":158742,"sentenceId\":28,\"end\":158928,\"text\":\"agree\",\"id\":3840},{\"start\":160190,"sentenceId\":28,\"end\":160391,\"text\":\"with\",\"id\":3850},{\"start\":160391,"sentenceId\":28,\"end\":160592,\"text\":\"mainstream\",\"id\":3860},{\"start\":160592,"sentenceId\":28,\"end\":160994,\"text\":\"aesthetics\",\"id\":3870},{\"start\":160994,"sentenceId\":28,\"end\":161396,\"text\":\"will\",\"id\":3880},{\"start\":161396,"sentenceId\":28,\"end\":161798,\"text\":\"criticize\",\"id\":3890},{\"start\":161798,"sentenceId\":28,\"end\":161999,\"text\":\"you\",\"id\":3900},{\"start\":161999,"sentenceId\":28,\"end\":162200,\"text\":\"for\",\"id\":3910},{\"start\":162200,"sentenceId\":28,\"end\":162401,\"text\":\"giving\",\"id\":3920},{\"start\":162401,"sentenceId\":28,\"end\":162803,\"text\":\"in,\",\"id\":3930},{\"start\":162803,"sentenceId\":28,"end\":163004,\"text\":\"and people\",\"id\":3940},{\"start\":163004,"sentenceId\":28,\"end\":163406,\"text\":\"who\",\"id\":3950},{\"start\":163406,"sentenceId\":28,\"end\":163607,\"text\":\"agree\",\"id\":3960},{\"start\":164020,"sentenceId\":28,\"end\":164322,\"text\":\"with\",\"id\":3970},{\"start\":164322,"sentenceId\":28,\"end\":164624,\"text\":\"mainstream\",\"id\":3980},{\"start\":164624,"sentenceId\":28,\"end\":164926,\"text\":\"aesthetics\",\"id\":3990},{\"start\":164926,"sentenceId\":28,\"end\":165077,\"text\":\"will\",\"id\":4000},{\"start\":165077,"sentenceId\":28,\"end\":165228,\"text\":\"criticize\",\"id\":4010},{\"start\":165228,"sentenceId\":28,\"end\":165379,\"text\":\"you\",\"id\":4020},{\"start\":165379,"sentenceId\":28,\"end\":165681,\"text\":\"for being\",\"id\":4030},{\"start\":165681,"sentenceId\":28,\"end\":165832,\"text\":\"fake.\",\"id\":4040},{\"start\":165832,"sentenceId":28,"end":165983,"text":"","id":4050},{\"start\":167350,\"sentenceId\":29,\"end\":167666,\"text\":\"So you\",\"id\":4060},{\"start\":167666,"sentenceId\":29,\"end\":167824,\"text\":\"need\",\"id\":4070},{\"start\":167824,"sentenceId\":29,\"end\":167982,\"text\":\"to\",\"id\":4080},{\"start\":167982,"sentenceId\":29,\"end\":168298,\"text\":\"think\",\"id\":4090},{\"start\":168298,"sentenceId\":29,\"end\":168456,\"text\":\"about\",\"id\":4100},{\"start\":168456,"sentenceId\":29,\"end\":168772,\"text\":\"everyone's\",\"id\":4110},{\"start\":168772,"sentenceId\":29,\"end\":169088,\"text\":\"perspective.\",\"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"
              }
            ]
          }
        }
      }
    }

Champs Type et Data dans les résultats

  • Transcription (reconnaissance de base)

    Parameter

    Type

    Description

    transcription

    object

    Résultat de la reconnaissance vocale.

    transcription.paragraphs

    list[]

    Liste de paragraphes contenant le résultat de la reconnaissance vocale.

    transcription.paragraphs[i].paragraphId

    string

    ID du paragraphe.

    transcription.paragraphs[i].speakerId

    string

    ID de l'interlocuteur.

    transcription.paragraphs[i].words

    list[]

    Mots contenus dans le paragraphe.

    transcription.paragraphs[i].words[i].id

    int

    ID du mot. Vous n'avez pas besoin de tenir compte de cet ID.

    transcription.paragraphs[i].words[i].sentenceId

    int

    ID de la phrase. Les mots partageant le même ID de phrase peuvent être assemblés pour former une phrase.

    transcription.paragraphs[i].words[i].start

    long

    Heure de début du mot. La valeur est un horodatage indiquant le nombre de millisecondes écoulées depuis le début de l'audio.

    transcription.paragraphs[i].words[i].end

    long

    Heure de fin du mot. La valeur est un horodatage indiquant le nombre de millisecondes écoulées depuis le début de l'audio.

    transcription.paragraphs[i].words[i].text

    string

    Texte du mot.

  • Résumé (résumé du texte intégral, résumé par interlocuteur, résumé des questions et carte mentale)

    Parameter name

    Type

    Description

    summarization

    object

    Résultats du résumé. Ces résultats peuvent être vides ou correspondre à différents types de résumés.

    summarization.paragraphSummary

    string

    Résumé du texte intégral.

    summarization.conversationalSummary

    list[]

    Liste des résultats de résumé pour une conversation.

    summarization.conversationalSummary[i].speakerId

    string

    ID de l'interlocuteur.

    summarization.conversationalSummary[i].speakerName

    string

    Nom de l'interlocuteur.

    summarization.conversationalSummary[i].summary

    string

    Résumé correspondant à l'interlocuteur.

    summarization.questionsAnsweringSummary

    list[]

    Liste des résultats de résumé pour une session de questions-réponses.

    summarization.questionsAnsweringSummary[i].question

    string

    Question.

    summarization.questionsAnsweringSummary[i].sentenceIdsOfQuestion

    list[]

    Liste des ID des phrases générées à partir du discours original correspondant à la question.

    summarization.questionsAnsweringSummary[i].answer

    string

    Réponse à la question.

    summarization.questionsAnsweringSummary[i].sentenceIdsOfAnswer

    list[]

    Liste des ID des phrases générées à partir du discours original correspondant à la réponse.

    summarization.mindMapSummary

    list[]

    Carte mentale des résultats du résumé. Elle peut inclure le résumé de chaque sujet ainsi que les relations entre les sujets.

    summarization.mindMapSummary[i].title

    string

    Titre du sujet.

    summarization.mindMapSummary[i].topic

    list[]

    Tableau contenant chaque sujet et ses sous-sujets.

    summarization.mindMapSummary[i].topic[i].title

    string

    Titre du sujet.

    summarization.mindMapSummary[i].topic[i].topic

    list[]

    Tableau contenant les sous-sujets du sujet. Ce tableau peut être vide.

  • Traduction (traduction du texte intégral)

    Parameter Name

    Type

    Description

    translation

    object

    Résultat de la traduction.

    translation.paragraphs

    list[]

    Liste de paragraphes contenant le résultat de la traduction, qui correspond au résultat ASR.

    translation.paragraphs.paragraphId

    string

    ID de segmentation du paragraphe, qui correspond au ParagraphId du résultat de reconnaissance vocale.

    translation.paragraphs.sentences

    list[]

    Liste des phrases traduites.

    translation.paragraphs.sentences[i].sentenctId

    long

    ID de la phrase.

    translation.paragraphs.sentences[i].start

    long

    Heure de début de la phrase. La valeur est un horodatage indiquant le nombre de millisecondes écoulées depuis le début de l'audio.

    translation.paragraphs.sentences[i].end

    long

    Heure de fin de la phrase. La valeur est un horodatage indiquant le nombre de millisecondes écoulées depuis le début de l'audio.

    translation.paragraphs.sentences[i].text

    string

    Texte traduit, qui correspond au résultat ASR.

  • AutoChapters (reconnaissance des chapitres)

    Parameter Name

    Type

    Description

    autoChapters

    list[]

    Résultat de l'aperçu des chapitres, qui peut contenir l'aperçu de zéro, un ou plusieurs chapitres.

    autoChapters[i].id

    int

    Numéro de série du chapitre.

    autoChapters[i].start

    long

    Heure de début du chapitre. La valeur est un horodatage indiquant le nombre de millisecondes écoulées depuis le début de l'audio.

    autoChapters[i].end

    long

    Heure de fin du chapitre. La valeur est un horodatage indiquant le nombre de millisecondes écoulées depuis le début de l'audio.

    autoChapters[i].headline

    string

    Titre du chapitre.

    autoChapters[i].summary

    string

    Aperçu du chapitre.

  • MeetingAssitance (extraction intelligente du compte rendu, incluant l'extraction de mots-clés, de phrases clés et d'actions à effectuer)

    Parameter

    Type

    Description

    meetingAssistance

    object

    Résultat du compte rendu intelligent, qui peut être vide ou correspondre à différents types.

    meetingAssistance.keywords

    list[]

    Liste des mots-clés extraits.

    meetingAssistance.keySentences

    list[]

    Liste des phrases clés extraites.

    meetingAssistance.keySentences[i].id

    long

    Numéro de série de la phrase clé.

    meetingAssistance.keySentences[i].sentenceId

    long

    ID de la phrase clé, qui correspond à l'ID de phrase du résultat ASR original.

    meetingAssistance.keySentences[i].start

    long

    Heure de début de la phrase clé. La valeur est un horodatage indiquant le nombre de millisecondes écoulées depuis le début de l'audio.

    meetingAssistance.keySentences[i].end

    long

    Heure de fin de la phrase clé. La valeur est un horodatage indiquant le nombre de millisecondes écoulées depuis le début de l'audio.

    meetingAssistance.keySentences[i].text

    string

    Informations relatives à la phrase clé.

    meetingAssistance.actions

    list[]

    Liste des actions à effectuer.

    meetingAssistance.actions[i].id

    long

    Numéro de série de l'action à effectuer.

    meetingAssistance.actions[i].sentenceId

    long

    ID de la phrase clé, qui correspond à l'ID de phrase du résultat ASR original.

    meetingAssistance.actions[i].start

    long

    Heure de début de la phrase clé. La valeur est un horodatage indiquant le nombre de millisecondes écoulées depuis le début de l'audio.

    meetingAssistance.actions[i].end

    long

    Heure de fin en millisecondes, relative à l'heure de début de l'audio.

    meetingAssistance.actions[i].text

    string

    Contenu de l'action à effectuer.

    meetingAssistance.classifications

    object

    Type de scénario. Seuls trois types de scénarios sont pris en charge.

    meetingAssistance.classifications.interview

    float

    Score du niveau de confiance pour le scénario d'entretien.

    meetingAssistance.classifications.lecture

    float

    Score du niveau de confiance pour le scénario de présentation.

    meetingAssistance.classifications.meeting

    float

    Score du niveau de confiance pour le scénario de réunion.