Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save addisaden/600ec4b1df1b4e4a5ca83ebb2ed6cdf6 to your computer and use it in GitHub Desktop.
Save addisaden/600ec4b1df1b4e4a5ca83ebb2ed6cdf6 to your computer and use it in GitHub Desktop.
Gospelchurch Cologne Livestream watch in browser to rotate the livestream https://www.gospelchurch.koeln/ TUTORIAL: https://www.youtube.com/shorts/HP6iQVKGE-Y?feature=share
// Simple script to rotate
//
// Surf on
// https://www.instagram.com/gospelchurch_cologne/live/
//
// open Browser-Console (CTRL+Shift+K firefox or CTRL+Shift+J chrome
// Copy and Paste: Rotate 270deg (LEFT ROTATE)
var v = document.getElementsByTagName("video")
v[0].setAttribute("style", "transform: rotate(270deg);position:fixed;left:350px;top:-200px;width:600px;z-index:100")
// Copy and Paste: Rotate 90deg (RIGHT ROTATE)
var v = document.getElementsByTagName("video")
v[0].setAttribute("style", "transform: rotate(90deg);position:fixed;left:350px;top:-200px;width:600px;z-index:100")
// Example as Video:
// https://www.youtube.com/shorts/HP6iQVKGE-Y?feature=share
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment