Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/geyang/sora-videos
https://github.com/geyang/sora-videos
Last synced: 19 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/geyang/sora-videos
- Owner: geyang
- Created: 2024-12-10T08:57:23.000Z (24 days ago)
- Default Branch: main
- Last Pushed: 2024-12-10T09:00:20.000Z (24 days ago)
- Last Synced: 2024-12-10T10:18:08.886Z (24 days ago)
- Language: Python
- Size: 35.3 MB
- Stars: 0
- 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.