https://github.com/geyang/sora-videos
https://github.com/geyang/sora-videos
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/geyang/sora-videos
- Owner: geyang
- Created: 2024-12-10T08:57:23.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-12-10T20:42:11.000Z (6 months ago)
- Last Synced: 2025-02-08T00:42:23.526Z (4 months ago)
- Language: Python
- Size: 44 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sora Videos
Run the following script
```javascript
// Collect all links on the page
const links = Array.from(document.querySelectorAll('video'));// Define the pattern to match
const pattern = /^https:\/\/videos\.openai\.com\/vg-assets\/assets(.*)/;// Filter and print the matching links
const matchingLinks = links.map(link => link.src).filter(href => pattern.test(href));console.log('Matching Links:', matchingLinks);
```And then run `download.py`. The files will appear inside the downloads folder.