Changes to autogif.togger.com

Breck Yunits
Breck Yunits
1 month ago
live-status-UCgiZJmuxlXqhvBl415tOaCA.json
Changed around line 0
- {"timestamp":1734019530228,"data":{"isLive":true,"videoId":"eYgWEEkodKs","title":"sunlight.","thumbnailUrl":"https://i.ytimg.com/vi/eYgWEEkodKs/default_live.jpg","channelTitle":"OK Banger","startTime":"2024-12-11T18:13:54Z"}}
live-status-UChEEElYETR8gpc_RL0GGJng.json
Changed around line 0
- {"timestamp":1733497630268,"data":{"isLive":false,"videoId":"TPkN94OgAog"}}
live-status-UChIv2ovrTHbZDDIaLFR9P-Q.json
Changed around line 0
- {"timestamp":1733415329102,"data":{"isLive":true,"videoId":"BKMJKqQgR48","title":"Smooth Jazz Music | Morning Seaside Cafe Ambience - Jazz Instrumental Music for Stress Relief","thumbnailUrl":"https://i.ytimg.com/vi/BKMJKqQgR48/default_live.jpg","channelTitle":"Relaxing Jazz Coffee","startTime":"2024-03-28T09:41:42Z"}}
Breck Yunits
Breck Yunits
1 month ago
.gitignore
Changed around line 11: package-lock.json
+ .*
+ *.json
Breck Yunits
Breck Yunits
1 month ago
gifs/eYgWEEkodKs.gif
live-status-UCgiZJmuxlXqhvBl415tOaCA.json
Changed around line 1
- {"timestamp":1733415200046,"data":{"isLive":false}}
+ {"timestamp":1734019530228,"data":{"isLive":true,"videoId":"eYgWEEkodKs","title":"sunlight.","thumbnailUrl":"https://i.ytimg.com/vi/eYgWEEkodKs/default_live.jpg","channelTitle":"OK Banger","startTime":"2024-12-11T18:13:54Z"}}
Breck Yunits
Breck Yunits
1 month ago
gifs/eYgWEEkodKs.gif
Breck Yunits
Breck Yunits
1 month ago
gifs/NwL9rCugShI.gif
Breck Yunits
Breck Yunits
1 month ago
index.scroll
Changed around line 14: br 3
- compose img
- printColumn img
+ orderBy -lastModified
+ compose img
+ printColumn img
Breck Yunits
Breck Yunits
1 month ago
gifs/IN-KZ2DPRkM.gif
Breck Yunits
Breck Yunits
1 month ago
frame.scroll
Changed around line 0
- buildTxt
- Below is the source code for WarpCast frames v2.
-
- toStamp ../frames-v2-demo
-
- I want a demo that is MUCH simpler.
-
- No react or next.js.
-
- Plain HTML, css, and Javascript.
-
- Please make that.
-
-
Breck Yunits
Breck Yunits
1 month ago
check.mjs
Changed around line 1
- import { AutoGifCLI } from "./autogif.mjs"
+ import { AutoGifCLI } from "./cli.mjs"
gifs/0FBiyFpV__g.gif
gifs/BKMJKqQgR48.gif
gifs/HhTFLQ-FdVA.gif
index.scroll
Changed around line 13: br 3
-
landing.css
Changed around line 16: input {
+ min-width: 300px;
Changed around line 29: button {
+ min-width: 100px;
live-status-UChEEElYETR8gpc_RL0GGJng.json
Changed around line 1
+ {"timestamp":1733497630268,"data":{"isLive":false,"videoId":"TPkN94OgAog"}}
Breck Yunits
Breck Yunits
1 month ago
check.mjs
Changed around line 1
+ import { AutoGifCLI } from "./autogif.mjs"
+
+ try {
+ const post = JSON.parse(process.env.REQUEST_BODY)
+ const cli = new AutoGifCLI()
+ await cli.checkCommand(process.cwd(), [post.url])
+ } catch (error) {
+ console.error("Error:", error.message)
+ process.exit(1)
+ }
cli.mjs
Changed around line 226: class AutoGifCLI extends SimpleCLI {
- const cli = new AutoGifCLI()
- cli.executeUsersInstructionsFromShell()
+ if (import.meta.url === `file://${process.argv[1]}`) {
+ const cli = new AutoGifCLI()
+ cli.executeUsersInstructionsFromShell()
+ }
index.scroll
Changed around line 4: metaTags
- # OkBanger AutoGif
+ center
+ # OkBanger AutoGif
+ br 3
+
+
+
+
landing.css
Changed around line 9: body {
+ input {
+ padding: 12px 16px;
+ border: 2px solid #e0e0e0;
+ border-radius: 8px;
+ font-size: 16px;
+ transition: border-color 0.3s ease;
+ outline: none;
+ }
+
+ button {
+ padding: 12px 24px;
+ background: #4a90e2;
+ color: white;
+ border: none;
+ border-radius: 8px;
+ font-size: 16px;
+ cursor: pointer;
+ transition: all 0.3s ease;
+ margin-left: 10px;
+ }