Get YouTube metadata without YouTube API
youtube-metadata-swift
is a Swift package and command-line tool for fetching metadata of YouTube videos.
- Fetch metadata for YouTube videos.
- Display the title, author, and thumbnail URL of a video.
- Command-line interface with usage instructions.
To use youtube-metadata-swift
as a dependency in your Swift project, add the following to your Package.swift
:
dependencies: [
.package(url: "https://github.com/ezefranca/youtube-metadata-swift.git", from: "1.0.0")
],
targets: [
.target(
name: "YourTarget",
dependencies: ["YTMetadataRequesterLib"]),
]
To install the command-line tool, you can use the provided install.sh
script:
-
Clone the repository:
git clone https://github.com/ezefranca/youtube-metadata-swift.git cd youtube-metadata-swift
-
Run the install script:
./install.sh
This will build the tool and copy it to /usr/local/bin
.
To fetch metadata for a YouTube video, run:
ytmeta <YouTube URL>
func getMetadata() async {
let vid = "https://youtu.be/TRqiFPpw2fY"
let req = YTMetadataRequester()
do {
let metadata = try await req.getMetadata(for: vid)
print("Title: \(metadata.title)")
} catch {
print("Failed to fetch metadata: \(error.localizedDescription)")
}
}
{
title: 'Foo Fighters - The Sky Is A Neighborhood (Official Music Video)',
author_name: 'foofightersVEVO',
author_url: 'https://www.youtube.com/user/foofightersVEVO',
type: 'video',
height: 113,
width: 200,
version: '1.0',
provider_name: 'YouTube',
provider_url: 'https://www.youtube.com/',
thumbnail_height: 360,
thumbnail_width: 480,
thumbnail_url: 'https://i.ytimg.com/vi/TRqiFPpw2fY/hqdefault.jpg',
html: '<iframe width="200" height="113" src="https://www.youtube.com/embed/TRqiFPpw2fY?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>'
}
// MARK: -Metadata
struct Metadata: Codable {
let authorName: String
let authorURL: String
let height: Int
let html, providerName: String
let providerURL: String
let thumbnailHeight: Int
let thumbnailURL: String
let thumbnailWidth: Int
let title, type, version: String
let width: Int
}
A npm module with the same purpose
This project is provided for educational purposes only. It is not affiliated with and has not been approved by Youtube.