curiousurick / Kenmore-tvOS

A tvOS app for Floatplane. Watch your favorite creators you support on your Apple TV!
Mozilla Public License 2.0
0 stars 0 forks source link

Add a menu to videos to let users switch to other video attachments. #8

Open curiousurick opened 1 year ago

curiousurick commented 1 year ago

For many floatplane exclusives, there are multiple video attachments. Those can be displayed in a submenu.

Examples of multiple attachments include the full interviews with 3 members of LMG, and videos with and without captions.

curiousurick commented 1 year ago

Example API to get more info about different attachments. https://www.floatplane.com/api/v3/content/post?id=OFHLAvgQmZ Video attachments have much more info than the creator feed API.

{
    "videoAttachments": [
        {
            "id": "8oaa1K3I5p",
            "guid": "8oaa1K3I5p",
            "title": "No Captions - FPX Metal 3D Printer.mp4",
            "type": "video",
            "description": "",
            "releaseDate": null,
            "duration": 560,
            "creator": "59f94c0bdd241b70349eb72b",
            "likes": 0,
            "dislikes": 0,
            "score": 0,
            "isProcessing": false,
            "primaryBlogPost": "OFHLAvgQmZ",
            "thumbnail": {
                "width": 1920,
                "height": 1080,
                "path": "https://pbs.floatplane.com/content_thumbnails/8oaa1K3I5p/362795354879576_1681258641672.jpeg",
                "childImages": []
            },
            "isAccessible": true
        },
        {
            "id": "QxDkqPTKJ9",
            "guid": "QxDkqPTKJ9",
            "title": "Captions - FPX Metal 3D Printer.mp4",
            "type": "video",
            "description": "",
            "releaseDate": null,
            "duration": 560,
            "creator": "59f94c0bdd241b70349eb72b",
            "likes": 0,
            "dislikes": 0,
            "score": 0,
            "isProcessing": false,
            "primaryBlogPost": "OFHLAvgQmZ",
            "thumbnail": {
                "width": 1920,
                "height": 1080,
                "path": "https://pbs.floatplane.com/content_thumbnails/QxDkqPTKJ9/260664066763145_1681258652383.jpeg",
                "childImages": []
            },
            "isAccessible": true
        }
    ]
}