Base64 解码另存为多个文件

Base64 解码另存为多个文件

我有一个文件(从 Web 开发人员保存的 har 文件”,其中包含多个视频*.ts 文件的 Base64 编码值。如果请求 url 是 .ts 文件并且我有兴趣解码 Base64 部分并保存为多个 ts 文件,并且响应编码应该是base64。

"request": {
          "bodySize": 0,
          "method": "GET",
          "url": "https://vz-73062248-092.b-cdn.net/856d96e6-97e6-4c3d-82b8-a53a8a411513/1920x1080/video1.ts",
......
.....
....
"response":{

.....
.....
"content": {
            "mimeType": "video/mp2t",
            "size": 882472,
            "encoding": "base64",
"text": "R................=="}, ----->should be decoded from this string as video1.ts
.....

上面的内容应保存为 video1.ts ,从 "text": ",til " 之间的 Base64 字符串解码

文件中有多个 ts 文件条目,从 1 到 350。文件大小约500MB

请让我知道我可以将文件中的 Base64 解码字符串保存为多个 ts 文件吗?

相关内容