-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Kydfisher edited this page Dec 4, 2016
·
12 revisions
Notes: Websocket blog: https://nelsonslog.wordpress.com/2015/08/15/lol-live-match-stats/
Scriptable Video Editor to consider: http://aescripts.com/automated-video-editing/
Premiere Project File: Is an XML file that has been gzip compressed.
Schedule Info: http://api.lolesports.com/api/v1/leagues?slug=na-lcs http://api.lolesports.com/api/v1/scheduleItems?leagueId=2 http://api.lolesports.com/api/v2/highlanderMatchDetails?tournamentId=472c44a9-49d3-4de4-912c-aa4151fd1b3b&matchId=62b5a0f1-b49d-46d4-9db0-ca0c7455db99
Getting match Info Link:
var a = this.get("gameRealm")
, b = this.get("gameId")
, c = this.get("gameHash");
if (a && b && c) {
var d = "http://matchhistory." + App.PageRegion.toLowerCase() + ".leagueoflegends.com/" + App.PageShortLang + "/#match-details/";
return d += a + "/" + b + "?gameHash=" + c
}
return null
}```
Notes on Youtube-dl
youtube-dl -f bestvideo[ext=mp4]+bestaudio[ext=m4a]/bestvideo+bestaudio --merge-output-format mp4 -o G1_full_game_video.mp4 "youtube_link"
Requires ffmpeg to merge output - https://github.com/adaptlearning/adapt_authoring/wiki/Installing-FFmpeg
Possible youtube upload software https://github.com/tokland/youtube-upload
youtube-upload --title="IMT vs APX" --description="IMT vs APX" --category=Gaming --client-secrets=C:\youtube_upload\youtube-upload-master\client_secrets.json E:\Youtube\Test\test_export.mp4