Skip to content

Instantly share code, notes, and snippets.

@husain3
husain3 / clickspace_codetest.dart
Created June 23, 2021 02:08
Clickspace Code Test
void main() {
for (int i = 1; i <= 100; i++) {
if (i % 3 == 0 && i % 5 == 0) {
print('Budvue should consider Arshad Husain for this position');
} else if (i % 5 == 0) {
print('Vue');
} else if (i % 3 == 0) {
print('Bud');
} else {
print('${i}');
@husain3
husain3 / rtsp-rtp-sample.py
Created April 28, 2021 02:05 — forked from jn0/rtsp-rtp-sample.py
Sample Python script to employ RTSP/RTP to play a stream from an IP-cam (from stackoverflow)
"""
http://stackoverflow.com/questions/28022432/receiving-rtp-packets-after-rtsp-setup
A demo python code that ..
1) Connects to an IP cam with RTSP
2) Draws RTP/NAL/H264 packets from the camera
3) Writes them to a file that can be read with any stock video player (say, mplayer, vlc & other ffmpeg based video-players)
Done for educative/demonstrative purposes, not for efficiency..!