Skip to content

Instantly share code, notes, and snippets.

View sikang99's full-sized avatar
💭
Happy working

Stoney Kang sikang99

💭
Happy working
View GitHub Profile
@voluntas
voluntas / webrtc.rst
Last active May 21, 2024 13:55
WebRTC の未来
Chrome simulcasting: offer (browser)
------------------------------------
v=0
o=- 4308117731863853442 2 IN IP4 127.0.0.1
s=-
t=0 0
a=group:BUNDLE audio video data
a=msid-semantic: WMS ZUJWk5rc0kNVekwY7gpiWsPbvAa6UbZWQI4A
m=audio 9 UDP/TLS/RTP/SAVPF 111 103 104 9 0 8 106 105 13 110 112 113 126
c=IN IP4 0.0.0.0
@voluntas
voluntas / open_momo.rst
Last active March 1, 2024 13:51
OpenMomo プロジェクト
@flufy3d
flufy3d / gstreamer-tips.md
Last active April 19, 2024 03:57
gstreamer remote streaming

simple test

gst-launch-1.0 -v videotestsrc ! video/x-raw,width=1280,height=640 ! glimagesink

streaming mpegts

gst-launch-1.0 -v videotestsrc ! video/x-raw,width=1280,height=640 ! videoconvert ! x264enc key-int-max=12 byte-stream=true ! mpegtsmux ! tcpserversink port=8888 host=0.0.0.0

vlc using tcp://192.168.1.192:8888

@bepro-dev
bepro-dev / 360player.html
Last active March 11, 2024 10:43
Implement 360 Video Player in JS
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>360 Video Player</title>
</head>
<body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>