-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (48 loc) · 1.87 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="description"
content="Analyzes YouTube playlists and calculates statistics like number of videos, average length, and total duration.">
<meta name="keywords"
content="YouTube playlist analysis, video analysis tool, YouTube SEO, video length calculator">
<link rel="icon" type="image/svg+xml" href="/youtube.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "WebApplication",
"name": "Playlist STAT",
"description": "Analyze YouTube playlists to calculate total duration, average video duration, and adjusted playback times at different speeds.",
"url": "https://playlist-length.netlify.app/",
"operatingSystem": "All",
"author": {
"@type": "Person",
"name": "Aashutosh Singh",
"url": "https://github.com/aashutosh148/",
"sameAs": [
"https://twitter.com/aashutosh148",
"https://www.linkedin.com/in/aashutosh148"
]
},
"potentialAction": {
"@type": "SearchAction",
"target": {
"@type": "EntryPoint",
"urlTemplate": "https://playlist-length.netlify.app/",
"actionPlatform": [
"http://schema.org/DesktopWebPlatform",
"http://schema.org/MobileWebPlatform"
]
}
},
"keywords": "YouTube playlist analysis, playlist duration calculator, video length analysis, playback speed adjustment"
}
</script>
<title>Playlist STAT</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>