├── .github ├── README.md ├── dependabot.yml └── workflows │ ├── format.yml │ └── spell.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── Procfile ├── app.json ├── cmd └── app │ ├── glibc_compatibility.h │ └── main.go ├── config └── config.go ├── go.mod ├── go.sum ├── heroku.yml ├── internal ├── cookies │ ├── README.md │ └── cookies.go ├── core │ ├── buttons.go │ ├── chat_state.go │ ├── clients.go │ ├── file.go │ ├── room.go │ └── timers.go ├── database │ ├── auth_users.go │ ├── autoleave.go │ ├── bot_state.go │ ├── chat_settings.go │ ├── cplay.go │ ├── database.go │ ├── helpers.go │ ├── logger_enabled.go │ ├── maintenance.go │ ├── migrate_data.go │ ├── served.go │ └── sudo_users.go ├── modules │ ├── active.go │ ├── auth.go │ ├── bug.go │ ├── call.go │ ├── cb.go │ ├── comm.go │ ├── dev.go │ ├── eval.go │ ├── handlers.go │ ├── help.go │ ├── helpers.go │ ├── leave.go │ ├── logger.go │ ├── loop.go │ ├── maint.go │ ├── monitor.go │ ├── mute.go │ ├── pause.go │ ├── ping.go │ ├── play.go │ ├── position.go │ ├── queue.go │ ├── reload.go │ ├── replay.go │ ├── resume.go │ ├── seek.go │ ├── shuffle.go │ ├── skip.go │ ├── speed.go │ ├── start.go │ ├── stats.go │ ├── stop.go │ ├── sudoers.go │ ├── unmute.go │ └── watcher.go ├── platforms │ ├── README.md │ ├── fallenapi.go │ ├── platforms.go │ ├── registry.go │ ├── telegram.go │ ├── youtube.go │ └── ytdlp.go ├── state │ └── models.go └── utils │ ├── admins.go │ ├── cache.go │ ├── edit_or_reply.go │ ├── extract_url.go │ ├── extract_user.go │ ├── flood_control.go │ ├── get_duration.go │ ├── get_peer_id.go │ ├── get_progress.go │ ├── parser.go │ └── strings.go ├── ntgcalls ├── audio_description.go ├── auth_params.go ├── call_info.go ├── client.go ├── device_info.go ├── dh_config.go ├── frame.go ├── frame_data.go ├── future.go ├── media_description.go ├── media_device.go ├── media_state.go ├── network_info.go ├── ntgcalls.go ├── protocol.go ├── remote_source.go ├── rtc_server.go ├── segment_part_request.go ├── ssrc_group.go ├── types.go ├── utils.go └── video_description.go ├── sample.env ├── setup_ntgcalls.sh └── ubot ├── calls.go ├── connect_call.go ├── context.go ├── convert_call_id.go ├── convert_group_call_id.go ├── get_input_group_call.go ├── get_p2p_configs.go ├── get_participant_id.go ├── get_participants.go ├── handle_updates.go ├── join_presentation.go ├── mute.go ├── parse_chat_id.go ├── parse_rtc_servers.go ├── parse_video_sources.go ├── pause.go ├── play.go ├── record.go ├── resume.go ├── set_call_status.go ├── std_remove.go ├── stop.go ├── types ├── call_participants_cache.go ├── call_sources.go ├── p2p_config.go └── pending_connection.go ├── unmute.go └── update_sources.go /.github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/.github/README.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/.github/workflows/format.yml -------------------------------------------------------------------------------- /.github/workflows/spell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/.github/workflows/spell.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: /app/myapp -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/app.json -------------------------------------------------------------------------------- /cmd/app/glibc_compatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/cmd/app/glibc_compatibility.h -------------------------------------------------------------------------------- /cmd/app/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/cmd/app/main.go -------------------------------------------------------------------------------- /config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/config/config.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/go.sum -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/heroku.yml -------------------------------------------------------------------------------- /internal/cookies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/cookies/README.md -------------------------------------------------------------------------------- /internal/cookies/cookies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/cookies/cookies.go -------------------------------------------------------------------------------- /internal/core/buttons.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/core/buttons.go -------------------------------------------------------------------------------- /internal/core/chat_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/core/chat_state.go -------------------------------------------------------------------------------- /internal/core/clients.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/core/clients.go -------------------------------------------------------------------------------- /internal/core/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/core/file.go -------------------------------------------------------------------------------- /internal/core/room.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/core/room.go -------------------------------------------------------------------------------- /internal/core/timers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/core/timers.go -------------------------------------------------------------------------------- /internal/database/auth_users.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/database/auth_users.go -------------------------------------------------------------------------------- /internal/database/autoleave.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/database/autoleave.go -------------------------------------------------------------------------------- /internal/database/bot_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/database/bot_state.go -------------------------------------------------------------------------------- /internal/database/chat_settings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/database/chat_settings.go -------------------------------------------------------------------------------- /internal/database/cplay.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/database/cplay.go -------------------------------------------------------------------------------- /internal/database/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/database/database.go -------------------------------------------------------------------------------- /internal/database/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/database/helpers.go -------------------------------------------------------------------------------- /internal/database/logger_enabled.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/database/logger_enabled.go -------------------------------------------------------------------------------- /internal/database/maintenance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/database/maintenance.go -------------------------------------------------------------------------------- /internal/database/migrate_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/database/migrate_data.go -------------------------------------------------------------------------------- /internal/database/served.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/database/served.go -------------------------------------------------------------------------------- /internal/database/sudo_users.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/database/sudo_users.go -------------------------------------------------------------------------------- /internal/modules/active.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/modules/active.go -------------------------------------------------------------------------------- /internal/modules/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/modules/auth.go -------------------------------------------------------------------------------- /internal/modules/bug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/modules/bug.go -------------------------------------------------------------------------------- /internal/modules/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/modules/call.go -------------------------------------------------------------------------------- /internal/modules/cb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/modules/cb.go -------------------------------------------------------------------------------- /internal/modules/comm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/modules/comm.go -------------------------------------------------------------------------------- /internal/modules/dev.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/modules/dev.go -------------------------------------------------------------------------------- /internal/modules/eval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/modules/eval.go -------------------------------------------------------------------------------- /internal/modules/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/modules/handlers.go -------------------------------------------------------------------------------- /internal/modules/help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/modules/help.go -------------------------------------------------------------------------------- /internal/modules/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/modules/helpers.go -------------------------------------------------------------------------------- /internal/modules/leave.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/modules/leave.go -------------------------------------------------------------------------------- /internal/modules/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/modules/logger.go -------------------------------------------------------------------------------- /internal/modules/loop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/modules/loop.go -------------------------------------------------------------------------------- /internal/modules/maint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/modules/maint.go -------------------------------------------------------------------------------- /internal/modules/monitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/modules/monitor.go -------------------------------------------------------------------------------- /internal/modules/mute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/modules/mute.go -------------------------------------------------------------------------------- /internal/modules/pause.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/modules/pause.go -------------------------------------------------------------------------------- /internal/modules/ping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/modules/ping.go -------------------------------------------------------------------------------- /internal/modules/play.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/modules/play.go -------------------------------------------------------------------------------- /internal/modules/position.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/modules/position.go -------------------------------------------------------------------------------- /internal/modules/queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/modules/queue.go -------------------------------------------------------------------------------- /internal/modules/reload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/modules/reload.go -------------------------------------------------------------------------------- /internal/modules/replay.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/modules/replay.go -------------------------------------------------------------------------------- /internal/modules/resume.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/modules/resume.go -------------------------------------------------------------------------------- /internal/modules/seek.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/modules/seek.go -------------------------------------------------------------------------------- /internal/modules/shuffle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/modules/shuffle.go -------------------------------------------------------------------------------- /internal/modules/skip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/modules/skip.go -------------------------------------------------------------------------------- /internal/modules/speed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/modules/speed.go -------------------------------------------------------------------------------- /internal/modules/start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/modules/start.go -------------------------------------------------------------------------------- /internal/modules/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/modules/stats.go -------------------------------------------------------------------------------- /internal/modules/stop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/modules/stop.go -------------------------------------------------------------------------------- /internal/modules/sudoers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/modules/sudoers.go -------------------------------------------------------------------------------- /internal/modules/unmute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/modules/unmute.go -------------------------------------------------------------------------------- /internal/modules/watcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/modules/watcher.go -------------------------------------------------------------------------------- /internal/platforms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/platforms/README.md -------------------------------------------------------------------------------- /internal/platforms/fallenapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/platforms/fallenapi.go -------------------------------------------------------------------------------- /internal/platforms/platforms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/platforms/platforms.go -------------------------------------------------------------------------------- /internal/platforms/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/platforms/registry.go -------------------------------------------------------------------------------- /internal/platforms/telegram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/platforms/telegram.go -------------------------------------------------------------------------------- /internal/platforms/youtube.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/platforms/youtube.go -------------------------------------------------------------------------------- /internal/platforms/ytdlp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/platforms/ytdlp.go -------------------------------------------------------------------------------- /internal/state/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/state/models.go -------------------------------------------------------------------------------- /internal/utils/admins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/utils/admins.go -------------------------------------------------------------------------------- /internal/utils/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/utils/cache.go -------------------------------------------------------------------------------- /internal/utils/edit_or_reply.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/utils/edit_or_reply.go -------------------------------------------------------------------------------- /internal/utils/extract_url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/utils/extract_url.go -------------------------------------------------------------------------------- /internal/utils/extract_user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/utils/extract_user.go -------------------------------------------------------------------------------- /internal/utils/flood_control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/utils/flood_control.go -------------------------------------------------------------------------------- /internal/utils/get_duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/utils/get_duration.go -------------------------------------------------------------------------------- /internal/utils/get_peer_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/utils/get_peer_id.go -------------------------------------------------------------------------------- /internal/utils/get_progress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/utils/get_progress.go -------------------------------------------------------------------------------- /internal/utils/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/utils/parser.go -------------------------------------------------------------------------------- /internal/utils/strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/internal/utils/strings.go -------------------------------------------------------------------------------- /ntgcalls/audio_description.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ntgcalls/audio_description.go -------------------------------------------------------------------------------- /ntgcalls/auth_params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ntgcalls/auth_params.go -------------------------------------------------------------------------------- /ntgcalls/call_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ntgcalls/call_info.go -------------------------------------------------------------------------------- /ntgcalls/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ntgcalls/client.go -------------------------------------------------------------------------------- /ntgcalls/device_info.go: -------------------------------------------------------------------------------- 1 | package ntgcalls 2 | 3 | type DeviceInfo struct { 4 | Name, Metadata string 5 | } 6 | -------------------------------------------------------------------------------- /ntgcalls/dh_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ntgcalls/dh_config.go -------------------------------------------------------------------------------- /ntgcalls/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ntgcalls/frame.go -------------------------------------------------------------------------------- /ntgcalls/frame_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ntgcalls/frame_data.go -------------------------------------------------------------------------------- /ntgcalls/future.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ntgcalls/future.go -------------------------------------------------------------------------------- /ntgcalls/media_description.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ntgcalls/media_description.go -------------------------------------------------------------------------------- /ntgcalls/media_device.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ntgcalls/media_device.go -------------------------------------------------------------------------------- /ntgcalls/media_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ntgcalls/media_state.go -------------------------------------------------------------------------------- /ntgcalls/network_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ntgcalls/network_info.go -------------------------------------------------------------------------------- /ntgcalls/ntgcalls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ntgcalls/ntgcalls.go -------------------------------------------------------------------------------- /ntgcalls/protocol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ntgcalls/protocol.go -------------------------------------------------------------------------------- /ntgcalls/remote_source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ntgcalls/remote_source.go -------------------------------------------------------------------------------- /ntgcalls/rtc_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ntgcalls/rtc_server.go -------------------------------------------------------------------------------- /ntgcalls/segment_part_request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ntgcalls/segment_part_request.go -------------------------------------------------------------------------------- /ntgcalls/ssrc_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ntgcalls/ssrc_group.go -------------------------------------------------------------------------------- /ntgcalls/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ntgcalls/types.go -------------------------------------------------------------------------------- /ntgcalls/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ntgcalls/utils.go -------------------------------------------------------------------------------- /ntgcalls/video_description.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ntgcalls/video_description.go -------------------------------------------------------------------------------- /sample.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/sample.env -------------------------------------------------------------------------------- /setup_ntgcalls.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/setup_ntgcalls.sh -------------------------------------------------------------------------------- /ubot/calls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ubot/calls.go -------------------------------------------------------------------------------- /ubot/connect_call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ubot/connect_call.go -------------------------------------------------------------------------------- /ubot/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ubot/context.go -------------------------------------------------------------------------------- /ubot/convert_call_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ubot/convert_call_id.go -------------------------------------------------------------------------------- /ubot/convert_group_call_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ubot/convert_group_call_id.go -------------------------------------------------------------------------------- /ubot/get_input_group_call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ubot/get_input_group_call.go -------------------------------------------------------------------------------- /ubot/get_p2p_configs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ubot/get_p2p_configs.go -------------------------------------------------------------------------------- /ubot/get_participant_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ubot/get_participant_id.go -------------------------------------------------------------------------------- /ubot/get_participants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ubot/get_participants.go -------------------------------------------------------------------------------- /ubot/handle_updates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ubot/handle_updates.go -------------------------------------------------------------------------------- /ubot/join_presentation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ubot/join_presentation.go -------------------------------------------------------------------------------- /ubot/mute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ubot/mute.go -------------------------------------------------------------------------------- /ubot/parse_chat_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ubot/parse_chat_id.go -------------------------------------------------------------------------------- /ubot/parse_rtc_servers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ubot/parse_rtc_servers.go -------------------------------------------------------------------------------- /ubot/parse_video_sources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ubot/parse_video_sources.go -------------------------------------------------------------------------------- /ubot/pause.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ubot/pause.go -------------------------------------------------------------------------------- /ubot/play.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ubot/play.go -------------------------------------------------------------------------------- /ubot/record.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ubot/record.go -------------------------------------------------------------------------------- /ubot/resume.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ubot/resume.go -------------------------------------------------------------------------------- /ubot/set_call_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ubot/set_call_status.go -------------------------------------------------------------------------------- /ubot/std_remove.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ubot/std_remove.go -------------------------------------------------------------------------------- /ubot/stop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ubot/stop.go -------------------------------------------------------------------------------- /ubot/types/call_participants_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ubot/types/call_participants_cache.go -------------------------------------------------------------------------------- /ubot/types/call_sources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ubot/types/call_sources.go -------------------------------------------------------------------------------- /ubot/types/p2p_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ubot/types/p2p_config.go -------------------------------------------------------------------------------- /ubot/types/pending_connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ubot/types/pending_connection.go -------------------------------------------------------------------------------- /ubot/unmute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ubot/unmute.go -------------------------------------------------------------------------------- /ubot/update_sources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheTeamVivek/YukkiMusic/HEAD/ubot/update_sources.go --------------------------------------------------------------------------------