├── Installation.html ├── Installation.url ├── README.md ├── ads.php ├── channel.php ├── clean_older.php ├── css.php ├── defaultpicture.png ├── delete_all_uploads.php ├── detect_ffmpeg.php ├── emoticons ├── angry.gif ├── aysmile.gif ├── baby.gif ├── ban.gif ├── bash.gif ├── bath.gif ├── beer.gif ├── biggrin.gif ├── blush.gif ├── book.gif ├── bored.gif ├── bounce.gif ├── boxed.gif ├── boxing.gif ├── censored.gif ├── cheers.gif ├── clap.gif ├── cool.gif ├── cool.png ├── cry.gif ├── cry.png ├── crybaby.gif ├── crying.gif ├── disgust.gif ├── drool.gif ├── drunk.gif ├── duel.gif ├── eek.gif ├── emoticons.xml ├── evil.gif ├── excl.gif ├── flex.gif ├── flowers.gif ├── frown.gif ├── fuckoff.gif ├── furious.gif ├── goodnight.gif ├── handshake.gif ├── help.gif ├── hmm.gif ├── holiday.gif ├── idea.gif ├── in_love.gif ├── innocent.gif ├── kicking.gif ├── laugh.gif ├── laugh.png ├── lol.gif ├── lol_sign.gif ├── love.gif ├── mad.gif ├── mobile.gif ├── naughty.gif ├── no.gif ├── nono.gif ├── notworthy.gif ├── oops.gif ├── phone.gif ├── photo.gif ├── pimp.gif ├── punk.gif ├── question.gif ├── ranting.gif ├── rip.gif ├── rockon.gif ├── rtfm.gif ├── sad.gif ├── sarcblink.gif ├── shocking.gif ├── shutup.gif ├── sick.gif ├── sleep.gif ├── smartass.gif ├── smoke.gif ├── spam.gif ├── surrender.gif ├── thumbdown.gif ├── thumbup.gif ├── toilet.gif ├── tongue.gif ├── tv.gif ├── unsure.gif ├── wallbash.gif ├── wazuuup.gif ├── wc.gif ├── whistle.gif ├── wink.gif ├── wow.gif ├── yawn.gif └── yes.gif ├── flash_detect.php ├── flash_detect_min.js ├── fms_applications └── readme.txt ├── header.php ├── htmlchat.php ├── inc.php ├── incsan.php ├── index.php ├── js ├── adapter.js ├── jquery-3.3.1.min.js ├── vwrtc-playback.js └── vwrtc-publish.js ├── lb_logout.php ├── lb_status.php ├── live_broadcast.php ├── live_broadcast.swf ├── live_video.swf ├── live_watch.swf ├── logo.png ├── ls_transcoder.php ├── ls_transcoderoff.php ├── mpeg-dash.php ├── settings.php ├── snapshots ├── ls_371x275.jpg └── ls_watch.jpg ├── templates ├── live │ ├── b_archive.png │ ├── b_end.png │ ├── b_fullscreen.png │ ├── b_pause.png │ ├── b_play.png │ ├── b_send.png │ ├── b_talkoff.png │ ├── b_talkon.png │ ├── button_bk.png │ ├── buzz.mp3 │ ├── checkoff.png │ ├── checkon.png │ ├── f_bold.png │ ├── f_italic.png │ ├── f_underline.png │ ├── i_add.png │ ├── i_addgroup.png │ ├── i_apply.png │ ├── i_cancel.png │ ├── i_close.png │ ├── i_create.png │ ├── i_delete.png │ ├── i_download.png │ ├── i_emoticon.png │ ├── i_files.png │ ├── i_fullscreen.png │ ├── i_locked.png │ ├── i_off.png │ ├── i_on.png │ ├── i_refresh.png │ ├── i_settings.png │ ├── i_sound.png │ ├── i_soundmute.png │ ├── i_tools.png │ ├── i_ublock.png │ ├── i_uchat.png │ ├── i_upload.png │ ├── i_users.png │ ├── i_uunblock.png │ ├── i_uvideo.png │ ├── i_webcam.png │ ├── i_window.png │ ├── logout.png │ ├── message.mp3 │ ├── p_snap32.png │ ├── slider_ac.png │ ├── slider_bk.png │ ├── slider_bt.png │ ├── tip.png │ ├── tips │ │ ├── coins1.mp3 │ │ ├── coins2.mp3 │ │ └── register.mp3 │ ├── user_admin.png │ ├── user_broadcast.png │ ├── user_broadcast2.png │ ├── user_female.png │ ├── user_male.png │ ├── user_microphone.png │ ├── user_people.png │ ├── user_subscribed.png │ ├── user_subscribed2.png │ ├── user_transfer.png │ ├── user_watch.png │ ├── user_webcam.png │ ├── user_webcamx.png │ ├── video_pause.png │ ├── video_play.png │ ├── video_rewind.png │ ├── window.png │ ├── x16.png │ └── x32.png └── player │ ├── fullscreen.png │ ├── pause.png │ ├── play.png │ ├── s3d.png │ ├── sound.png │ └── soundoff.png ├── tip.php ├── tips.php ├── translation.php ├── uploads └── last.html ├── v_status.php ├── vc_chatlog.php ├── vc_login.php ├── video.php ├── video_small.php ├── videotext.php ├── vs_login.php ├── vv_login.php ├── vw_extchat.php ├── vw_logout.php ├── vw_snapshots.php ├── webrtc-play.php └── webrtc-publish.php /Installation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/Installation.html -------------------------------------------------------------------------------- /Installation.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=http://www.videowhisper.com/?p=PHP+Live+Streaming -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/README.md -------------------------------------------------------------------------------- /ads.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/ads.php -------------------------------------------------------------------------------- /channel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/channel.php -------------------------------------------------------------------------------- /clean_older.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/clean_older.php -------------------------------------------------------------------------------- /css.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/css.php -------------------------------------------------------------------------------- /defaultpicture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/defaultpicture.png -------------------------------------------------------------------------------- /delete_all_uploads.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/delete_all_uploads.php -------------------------------------------------------------------------------- /detect_ffmpeg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/detect_ffmpeg.php -------------------------------------------------------------------------------- /emoticons/angry.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/angry.gif -------------------------------------------------------------------------------- /emoticons/aysmile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/aysmile.gif -------------------------------------------------------------------------------- /emoticons/baby.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/baby.gif -------------------------------------------------------------------------------- /emoticons/ban.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/ban.gif -------------------------------------------------------------------------------- /emoticons/bash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/bash.gif -------------------------------------------------------------------------------- /emoticons/bath.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/bath.gif -------------------------------------------------------------------------------- /emoticons/beer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/beer.gif -------------------------------------------------------------------------------- /emoticons/biggrin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/biggrin.gif -------------------------------------------------------------------------------- /emoticons/blush.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/blush.gif -------------------------------------------------------------------------------- /emoticons/book.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/book.gif -------------------------------------------------------------------------------- /emoticons/bored.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/bored.gif -------------------------------------------------------------------------------- /emoticons/bounce.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/bounce.gif -------------------------------------------------------------------------------- /emoticons/boxed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/boxed.gif -------------------------------------------------------------------------------- /emoticons/boxing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/boxing.gif -------------------------------------------------------------------------------- /emoticons/censored.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/censored.gif -------------------------------------------------------------------------------- /emoticons/cheers.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/cheers.gif -------------------------------------------------------------------------------- /emoticons/clap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/clap.gif -------------------------------------------------------------------------------- /emoticons/cool.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/cool.gif -------------------------------------------------------------------------------- /emoticons/cool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/cool.png -------------------------------------------------------------------------------- /emoticons/cry.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/cry.gif -------------------------------------------------------------------------------- /emoticons/cry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/cry.png -------------------------------------------------------------------------------- /emoticons/crybaby.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/crybaby.gif -------------------------------------------------------------------------------- /emoticons/crying.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/crying.gif -------------------------------------------------------------------------------- /emoticons/disgust.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/disgust.gif -------------------------------------------------------------------------------- /emoticons/drool.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/drool.gif -------------------------------------------------------------------------------- /emoticons/drunk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/drunk.gif -------------------------------------------------------------------------------- /emoticons/duel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/duel.gif -------------------------------------------------------------------------------- /emoticons/eek.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/eek.gif -------------------------------------------------------------------------------- /emoticons/emoticons.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/emoticons.xml -------------------------------------------------------------------------------- /emoticons/evil.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/evil.gif -------------------------------------------------------------------------------- /emoticons/excl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/excl.gif -------------------------------------------------------------------------------- /emoticons/flex.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/flex.gif -------------------------------------------------------------------------------- /emoticons/flowers.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/flowers.gif -------------------------------------------------------------------------------- /emoticons/frown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/frown.gif -------------------------------------------------------------------------------- /emoticons/fuckoff.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/fuckoff.gif -------------------------------------------------------------------------------- /emoticons/furious.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/furious.gif -------------------------------------------------------------------------------- /emoticons/goodnight.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/goodnight.gif -------------------------------------------------------------------------------- /emoticons/handshake.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/handshake.gif -------------------------------------------------------------------------------- /emoticons/help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/help.gif -------------------------------------------------------------------------------- /emoticons/hmm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/hmm.gif -------------------------------------------------------------------------------- /emoticons/holiday.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/holiday.gif -------------------------------------------------------------------------------- /emoticons/idea.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/idea.gif -------------------------------------------------------------------------------- /emoticons/in_love.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/in_love.gif -------------------------------------------------------------------------------- /emoticons/innocent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/innocent.gif -------------------------------------------------------------------------------- /emoticons/kicking.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/kicking.gif -------------------------------------------------------------------------------- /emoticons/laugh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/laugh.gif -------------------------------------------------------------------------------- /emoticons/laugh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/laugh.png -------------------------------------------------------------------------------- /emoticons/lol.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/lol.gif -------------------------------------------------------------------------------- /emoticons/lol_sign.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/lol_sign.gif -------------------------------------------------------------------------------- /emoticons/love.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/love.gif -------------------------------------------------------------------------------- /emoticons/mad.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/mad.gif -------------------------------------------------------------------------------- /emoticons/mobile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/mobile.gif -------------------------------------------------------------------------------- /emoticons/naughty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/naughty.gif -------------------------------------------------------------------------------- /emoticons/no.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/no.gif -------------------------------------------------------------------------------- /emoticons/nono.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/nono.gif -------------------------------------------------------------------------------- /emoticons/notworthy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/notworthy.gif -------------------------------------------------------------------------------- /emoticons/oops.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/oops.gif -------------------------------------------------------------------------------- /emoticons/phone.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/phone.gif -------------------------------------------------------------------------------- /emoticons/photo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/photo.gif -------------------------------------------------------------------------------- /emoticons/pimp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/pimp.gif -------------------------------------------------------------------------------- /emoticons/punk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/punk.gif -------------------------------------------------------------------------------- /emoticons/question.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/question.gif -------------------------------------------------------------------------------- /emoticons/ranting.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/ranting.gif -------------------------------------------------------------------------------- /emoticons/rip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/rip.gif -------------------------------------------------------------------------------- /emoticons/rockon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/rockon.gif -------------------------------------------------------------------------------- /emoticons/rtfm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/rtfm.gif -------------------------------------------------------------------------------- /emoticons/sad.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/sad.gif -------------------------------------------------------------------------------- /emoticons/sarcblink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/sarcblink.gif -------------------------------------------------------------------------------- /emoticons/shocking.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/shocking.gif -------------------------------------------------------------------------------- /emoticons/shutup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/shutup.gif -------------------------------------------------------------------------------- /emoticons/sick.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/sick.gif -------------------------------------------------------------------------------- /emoticons/sleep.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/sleep.gif -------------------------------------------------------------------------------- /emoticons/smartass.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/smartass.gif -------------------------------------------------------------------------------- /emoticons/smoke.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/smoke.gif -------------------------------------------------------------------------------- /emoticons/spam.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/spam.gif -------------------------------------------------------------------------------- /emoticons/surrender.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/surrender.gif -------------------------------------------------------------------------------- /emoticons/thumbdown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/thumbdown.gif -------------------------------------------------------------------------------- /emoticons/thumbup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/thumbup.gif -------------------------------------------------------------------------------- /emoticons/toilet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/toilet.gif -------------------------------------------------------------------------------- /emoticons/tongue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/tongue.gif -------------------------------------------------------------------------------- /emoticons/tv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/tv.gif -------------------------------------------------------------------------------- /emoticons/unsure.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/unsure.gif -------------------------------------------------------------------------------- /emoticons/wallbash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/wallbash.gif -------------------------------------------------------------------------------- /emoticons/wazuuup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/wazuuup.gif -------------------------------------------------------------------------------- /emoticons/wc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/wc.gif -------------------------------------------------------------------------------- /emoticons/whistle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/whistle.gif -------------------------------------------------------------------------------- /emoticons/wink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/wink.gif -------------------------------------------------------------------------------- /emoticons/wow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/wow.gif -------------------------------------------------------------------------------- /emoticons/yawn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/yawn.gif -------------------------------------------------------------------------------- /emoticons/yes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/emoticons/yes.gif -------------------------------------------------------------------------------- /flash_detect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/flash_detect.php -------------------------------------------------------------------------------- /flash_detect_min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/flash_detect_min.js -------------------------------------------------------------------------------- /fms_applications/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/fms_applications/readme.txt -------------------------------------------------------------------------------- /header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/header.php -------------------------------------------------------------------------------- /htmlchat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/htmlchat.php -------------------------------------------------------------------------------- /inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/inc.php -------------------------------------------------------------------------------- /incsan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/incsan.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/index.php -------------------------------------------------------------------------------- /js/adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/js/adapter.js -------------------------------------------------------------------------------- /js/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/js/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /js/vwrtc-playback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/js/vwrtc-playback.js -------------------------------------------------------------------------------- /js/vwrtc-publish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/js/vwrtc-publish.js -------------------------------------------------------------------------------- /lb_logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/lb_logout.php -------------------------------------------------------------------------------- /lb_status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/lb_status.php -------------------------------------------------------------------------------- /live_broadcast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/live_broadcast.php -------------------------------------------------------------------------------- /live_broadcast.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/live_broadcast.swf -------------------------------------------------------------------------------- /live_video.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/live_video.swf -------------------------------------------------------------------------------- /live_watch.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/live_watch.swf -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/logo.png -------------------------------------------------------------------------------- /ls_transcoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/ls_transcoder.php -------------------------------------------------------------------------------- /ls_transcoderoff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/ls_transcoderoff.php -------------------------------------------------------------------------------- /mpeg-dash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/mpeg-dash.php -------------------------------------------------------------------------------- /settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/settings.php -------------------------------------------------------------------------------- /snapshots/ls_371x275.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/snapshots/ls_371x275.jpg -------------------------------------------------------------------------------- /snapshots/ls_watch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/snapshots/ls_watch.jpg -------------------------------------------------------------------------------- /templates/live/b_archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/b_archive.png -------------------------------------------------------------------------------- /templates/live/b_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/b_end.png -------------------------------------------------------------------------------- /templates/live/b_fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/b_fullscreen.png -------------------------------------------------------------------------------- /templates/live/b_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/b_pause.png -------------------------------------------------------------------------------- /templates/live/b_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/b_play.png -------------------------------------------------------------------------------- /templates/live/b_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/b_send.png -------------------------------------------------------------------------------- /templates/live/b_talkoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/b_talkoff.png -------------------------------------------------------------------------------- /templates/live/b_talkon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/b_talkon.png -------------------------------------------------------------------------------- /templates/live/button_bk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/button_bk.png -------------------------------------------------------------------------------- /templates/live/buzz.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/buzz.mp3 -------------------------------------------------------------------------------- /templates/live/checkoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/checkoff.png -------------------------------------------------------------------------------- /templates/live/checkon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/checkon.png -------------------------------------------------------------------------------- /templates/live/f_bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/f_bold.png -------------------------------------------------------------------------------- /templates/live/f_italic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/f_italic.png -------------------------------------------------------------------------------- /templates/live/f_underline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/f_underline.png -------------------------------------------------------------------------------- /templates/live/i_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/i_add.png -------------------------------------------------------------------------------- /templates/live/i_addgroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/i_addgroup.png -------------------------------------------------------------------------------- /templates/live/i_apply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/i_apply.png -------------------------------------------------------------------------------- /templates/live/i_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/i_cancel.png -------------------------------------------------------------------------------- /templates/live/i_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/i_close.png -------------------------------------------------------------------------------- /templates/live/i_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/i_create.png -------------------------------------------------------------------------------- /templates/live/i_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/i_delete.png -------------------------------------------------------------------------------- /templates/live/i_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/i_download.png -------------------------------------------------------------------------------- /templates/live/i_emoticon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/i_emoticon.png -------------------------------------------------------------------------------- /templates/live/i_files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/i_files.png -------------------------------------------------------------------------------- /templates/live/i_fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/i_fullscreen.png -------------------------------------------------------------------------------- /templates/live/i_locked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/i_locked.png -------------------------------------------------------------------------------- /templates/live/i_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/i_off.png -------------------------------------------------------------------------------- /templates/live/i_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/i_on.png -------------------------------------------------------------------------------- /templates/live/i_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/i_refresh.png -------------------------------------------------------------------------------- /templates/live/i_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/i_settings.png -------------------------------------------------------------------------------- /templates/live/i_sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/i_sound.png -------------------------------------------------------------------------------- /templates/live/i_soundmute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/i_soundmute.png -------------------------------------------------------------------------------- /templates/live/i_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/i_tools.png -------------------------------------------------------------------------------- /templates/live/i_ublock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/i_ublock.png -------------------------------------------------------------------------------- /templates/live/i_uchat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/i_uchat.png -------------------------------------------------------------------------------- /templates/live/i_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/i_upload.png -------------------------------------------------------------------------------- /templates/live/i_users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/i_users.png -------------------------------------------------------------------------------- /templates/live/i_uunblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/i_uunblock.png -------------------------------------------------------------------------------- /templates/live/i_uvideo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/i_uvideo.png -------------------------------------------------------------------------------- /templates/live/i_webcam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/i_webcam.png -------------------------------------------------------------------------------- /templates/live/i_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/i_window.png -------------------------------------------------------------------------------- /templates/live/logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/logout.png -------------------------------------------------------------------------------- /templates/live/message.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/message.mp3 -------------------------------------------------------------------------------- /templates/live/p_snap32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/p_snap32.png -------------------------------------------------------------------------------- /templates/live/slider_ac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/slider_ac.png -------------------------------------------------------------------------------- /templates/live/slider_bk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/slider_bk.png -------------------------------------------------------------------------------- /templates/live/slider_bt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/slider_bt.png -------------------------------------------------------------------------------- /templates/live/tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/tip.png -------------------------------------------------------------------------------- /templates/live/tips/coins1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/tips/coins1.mp3 -------------------------------------------------------------------------------- /templates/live/tips/coins2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/tips/coins2.mp3 -------------------------------------------------------------------------------- /templates/live/tips/register.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/tips/register.mp3 -------------------------------------------------------------------------------- /templates/live/user_admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/user_admin.png -------------------------------------------------------------------------------- /templates/live/user_broadcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/user_broadcast.png -------------------------------------------------------------------------------- /templates/live/user_broadcast2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/user_broadcast2.png -------------------------------------------------------------------------------- /templates/live/user_female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/user_female.png -------------------------------------------------------------------------------- /templates/live/user_male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/user_male.png -------------------------------------------------------------------------------- /templates/live/user_microphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/user_microphone.png -------------------------------------------------------------------------------- /templates/live/user_people.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/user_people.png -------------------------------------------------------------------------------- /templates/live/user_subscribed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/user_subscribed.png -------------------------------------------------------------------------------- /templates/live/user_subscribed2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/user_subscribed2.png -------------------------------------------------------------------------------- /templates/live/user_transfer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/user_transfer.png -------------------------------------------------------------------------------- /templates/live/user_watch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/user_watch.png -------------------------------------------------------------------------------- /templates/live/user_webcam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/user_webcam.png -------------------------------------------------------------------------------- /templates/live/user_webcamx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/user_webcamx.png -------------------------------------------------------------------------------- /templates/live/video_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/video_pause.png -------------------------------------------------------------------------------- /templates/live/video_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/video_play.png -------------------------------------------------------------------------------- /templates/live/video_rewind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/video_rewind.png -------------------------------------------------------------------------------- /templates/live/window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/window.png -------------------------------------------------------------------------------- /templates/live/x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/x16.png -------------------------------------------------------------------------------- /templates/live/x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/live/x32.png -------------------------------------------------------------------------------- /templates/player/fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/player/fullscreen.png -------------------------------------------------------------------------------- /templates/player/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/player/pause.png -------------------------------------------------------------------------------- /templates/player/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/player/play.png -------------------------------------------------------------------------------- /templates/player/s3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/player/s3d.png -------------------------------------------------------------------------------- /templates/player/sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/player/sound.png -------------------------------------------------------------------------------- /templates/player/soundoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/templates/player/soundoff.png -------------------------------------------------------------------------------- /tip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/tip.php -------------------------------------------------------------------------------- /tips.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/tips.php -------------------------------------------------------------------------------- /translation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/translation.php -------------------------------------------------------------------------------- /uploads/last.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/uploads/last.html -------------------------------------------------------------------------------- /v_status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/v_status.php -------------------------------------------------------------------------------- /vc_chatlog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/vc_chatlog.php -------------------------------------------------------------------------------- /vc_login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/vc_login.php -------------------------------------------------------------------------------- /video.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/video.php -------------------------------------------------------------------------------- /video_small.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/video_small.php -------------------------------------------------------------------------------- /videotext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/videotext.php -------------------------------------------------------------------------------- /vs_login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/vs_login.php -------------------------------------------------------------------------------- /vv_login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/vv_login.php -------------------------------------------------------------------------------- /vw_extchat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/vw_extchat.php -------------------------------------------------------------------------------- /vw_logout.php: -------------------------------------------------------------------------------- 1 | loggedout=1 -------------------------------------------------------------------------------- /vw_snapshots.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/vw_snapshots.php -------------------------------------------------------------------------------- /webrtc-play.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/webrtc-play.php -------------------------------------------------------------------------------- /webrtc-publish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videowhisper/PHP-Live-Streaming-Webcam/HEAD/webrtc-publish.php --------------------------------------------------------------------------------