-i - ignore errors
-c - continue
-t - use video title as file name
--extract-audio - extract audio track
| # ------------------------------------------------------------------ | |
| # EDIT: I eventually found a faster way to run SD on macOS, via MPSGraph (~0.8s / step on M1 Pro): | |
| # https://github.com/madebyollin/maple-diffusion | |
| # The original CoreML-related code & discussion is preserved below :) | |
| # ------------------------------------------------------------------ | |
| # you too can run stable diffusion on the apple silicon GPU (no ANE sadly) | |
| # | |
| # quick test portraits (each took 50 steps x 2s / step ~= 100s on my M1 Pro): | |
| # * https://i.imgur.com/5ywISvm.png |
| #Using Scrapy with Selenium to scape a rendered page [Updated] | |
| from scrapy.contrib.spiders.init import InitSpider | |
| from scrapy.http import Request, FormRequest | |
| from scrapy.contrib.linkextractors.sgml import SgmlLinkExtractor | |
| from scrapy.contrib.spiders import CrawlSpider, Rule | |
| from scrapy.spider import BaseSpider | |
| from scrapy.selector import HtmlXPathSelector | |
| from selenium import selenium |