Skip to content

Instantly share code, notes, and snippets.

View Animatr's full-sized avatar
🏠
Working from home

Animatr

🏠
Working from home
View GitHub Profile

Direct copy of pre-encoded file:

$ ffmpeg -i filename.mp4 -codec: copy -start_number 0 -hls_time 10 -hls_list_size 0 -f hls filename.m3u8

@miguelmota
miguelmota / scrape.py
Last active November 19, 2023 22:43
Python Selenium Web Driver login example
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
import time
config = {
'EMAIL': '',
'PASSWORD': ''
}
login_url = 'http://video.springserve.com/'