javascript 如何将YouTube API持续时间(PT#M#S格式的ISO 8601持续时间)转换为秒

lhcgjxsq  于 2023-03-16  发布在  Java
关注(0)|答案(6)|浏览(214)

如何使用JavaScript操作PT#M#S格式的日期时间?
例如:PT5M33S
我想输出为hh:mm:ss

elcex8rz

elcex8rz1#

下面是获取总秒数和其他部分的基本代码。我觉得这样做很不舒服,因为规则说,任何时候你想日期逻辑,你不应该:)但无论如何,在这里-谷歌使它不容易,在getduration播放器API中提供总秒数,并在gdata API中提供完全不同的格式。

var reptms = /^PT(?:(\d+)H)?(?:(\d+)M)?(?:(\d+)S)?$/;
          var hours = 0, minutes = 0, seconds = 0, totalseconds;

          if (reptms.test(input)) {
            var matches = reptms.exec(input);
            if (matches[1]) hours = Number(matches[1]);
            if (matches[2]) minutes = Number(matches[2]);
            if (matches[3]) seconds = Number(matches[3]);
            totalseconds = hours * 3600  + minutes * 60 + seconds;
          }
3hvapo4f

3hvapo4f2#

以下是如何通过Youtube API(v3)以简单的方式获取youtube视频数据,并将视频时长(ISO 8601)转换为秒。不要忘记将URL中的{您的视频ID }{您的密钥}属性更改为您的视频ID和您的谷歌公钥。您可以创建一个访问谷歌开发者控制台的公钥。

$.ajax({
       url: "https://www.googleapis.com/youtube/v3/videos?id={ YOUR VIDEO ID }&part=contentDetails&key={ YOUR KEY }",
       dataType: "jsonp",
       success: function (data) { youtubeCallback (data); }
  });

    function youtubeCallback(data) {

        var duration = data.items[0].contentDetails.duration;
        alert ( convertISO8601ToSeconds (duration) );
    }        

    function convertISO8601ToSeconds(input) {

        var reptms = /^PT(?:(\d+)H)?(?:(\d+)M)?(?:(\d+)S)?$/;
        var hours = 0, minutes = 0, seconds = 0, totalseconds;

        if (reptms.test(input)) {
            var matches = reptms.exec(input);
            if (matches[1]) hours = Number(matches[1]);
            if (matches[2]) minutes = Number(matches[2]);
            if (matches[3]) seconds = Number(matches[3]);
            totalseconds = hours * 3600  + minutes * 60 + seconds;
        }

        return (totalseconds);
    }
l2osamch

l2osamch3#

虽然这些答案在技术上是正确的;如果你打算做很多关于时间和持续时间的事情,你应该看看momentjs。也可以看看moment-duration-formats,它使格式化持续时间就像常规的momentjs time一样简单
这两个模块如何轻松实现此功能的示例

moment.duration('PT5M33S').format('hh:mm:ss')

它会输出05:33。还有很多其他的用途。
虽然youtube使用ISO 8601格式是有原因的,因为它是一个标准,所以请记住这一点。

d7v8vwbk

d7v8vwbk4#

我通过检查单元左边的两个索引字符(H,M,S)并检查它是否是一个数字,如果不是,则单元是一个数字,我将额外添加一个“0”。否则,我将返回两位数。

function formatTimeUnit(input, unit){
     var index = input.indexOf(unit);
     var output = "00"
    if(index < 0){
      return output; // unit isn't in the input
    }

    if(isNaN(input.charAt(index-2))){
      return '0' + input.charAt(index-1);
    }else{
      return input.charAt(index-2) + input.charAt(index-1);
    }
  }

我这样做的时候,分,秒。我也放弃小时,如果没有任何在输入,这当然是可选的。

function ISO8601toDuration(input){
     var H = formatTimeUnit(input, 'H');
     var M = formatTimeUnit(input, 'M');
     var S = formatTimeUnit(input, 'S');

    if(H == "00"){
      H = "";
    }else{
      H += ":"
    }

    return H  + M + ':' + S ;
  }

那就这么叫吧

duration = ISO8601toDuration(item.duration);

我用这个来格式化youtube数据API视频持续时间。希望这对一些人有帮助

pes8fvy9

pes8fvy95#

最简单的方法是使用moment-duration-formats,下面是一个定制函数,用于将YouTube API持续时间响应转换为hh:mm:ss格式。

const convertISO8601ToStringWithColons = string => {
        let hours, minutes, seconds;

        if (string.includes("H")) {
            hours = string.slice(2, string.indexOf("H"));
        } else {
            hours = false;
        }

        if (string.includes("S")) {
            // checks if number is one-digit and inserts 0 in front of it
            if (isNaN(parseInt(string.charAt(string.indexOf("S") - 2)))) {
                seconds = "0" + string.charAt(string.indexOf("S") - 1)
            } else {
                seconds = string.slice(-3, -1)
            }
        } else {
            seconds = "00"
        }
        
        // determines how minutes are displayed, based on existence of hours and minutes
        if (hours) {
            if (string.includes("M")) {
                if (string.indexOf("M") - string.indexOf("H") === 3) {
                    minutes = string.slice(string.indexOf("H") + 1, string.indexOf("M"))
                } else {
                    minutes = "0" + string.charAt(string.indexOf("M") - 1)
                }
            } else {
                minutes = "00"
            }
        } else {
            if (string.includes("M")) {
                minutes = string.slice(2, (string.indexOf("M")))
            } else {
                minutes = "0"
            }   
        }

        // distinction because livestreams (P0D) are not considered
        return string === "P0D" ? "Live" : `${hours ? hours + ":" : ""}${minutes}:${seconds}`
    }
    
const textExamples = ["PT11H57M30S", "PT7H2M", "PT10H37S", "PT8H", "PT4M58S", "PT39M", "PT7S", "P0D"]
textExamples.forEach(element => {
    console.log(convertISO8601ToStringWithColons(element))
});
jgovgodb

jgovgodb6#

在2023年的“时刻”,Moment.js处于传统模式。
您可以使用Luxon.js(Moment.js的后代)的Duration类来解析ISO8601持续时间。

import { Duration } from 'luxon'

// OP's desired hh:mm:ss format
> Duration.fromISO('PT20S').toISOTime({suppressMilliseconds: true})
'00:00:20'

// other useful outputs

> Duration.fromISO('PT2M42S').toHuman()
'2 minutes, 42 seconds'

> Duration.fromISO('PT1H16M5S').toMillis()
4565000

> Duration.fromISO('P1DT2H1S').toObject()
{ days: 1, hours: 2, seconds: 1 }

相关问题