mirror of
https://github.com/tubearchivist/docs.git
synced 2024-11-22 11:50:13 +00:00
add *.info.json examples and info (#25)
This commit is contained in:
parent
84784d6416
commit
0dcd12a34f
@ -24,6 +24,33 @@ Add a matching *.info.json* file with the media file. Both files need to have th
|
|||||||
|
|
||||||
The import process then looks for the 'id' key within the JSON file to identify the video.
|
The import process then looks for the 'id' key within the JSON file to identify the video.
|
||||||
|
|
||||||
|
|
||||||
|
Sometimes you may need to create this file manually, The following are the absolute minimum required tags for manual importing.
|
||||||
|
|
||||||
|
`thumbnail` can be left blank or null, however it is required to be present. If blank the thumbnail will be extracted from the video file on import.
|
||||||
|
```
|
||||||
|
{
|
||||||
|
"id": "",
|
||||||
|
"channel_id": "",
|
||||||
|
"title": "",
|
||||||
|
"upload_date": "",
|
||||||
|
"thumbnail": null
|
||||||
|
}
|
||||||
|
```
|
||||||
|
However, you may fill out additional tags if they are known for a more complete result.
|
||||||
|
```
|
||||||
|
{
|
||||||
|
"id": "",
|
||||||
|
"channel_id": "",
|
||||||
|
"title": "",
|
||||||
|
"upload_date": "",
|
||||||
|
"description": null,
|
||||||
|
"categories": null,
|
||||||
|
"thumbnail": null,
|
||||||
|
"tags": null,
|
||||||
|
"view_count": null
|
||||||
|
}
|
||||||
|
```
|
||||||
### Method 2:
|
### Method 2:
|
||||||
Detect the YouTube ID from filename, this accepts the default yt-dlp naming convention for file names like:
|
Detect the YouTube ID from filename, this accepts the default yt-dlp naming convention for file names like:
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user