from django.urls import path from . import views from .views import stream_vod app_name = 'vod_proxy' urlpatterns = [ # Generic VOD streaming with session ID in path (for compatibility) path('//', stream_vod, name='vod_stream_with_session'), path('////', stream_vod, name='vod_stream_with_session_and_profile'), # Generic VOD streaming (supports movies, episodes, series) - legacy patterns path('/', stream_vod, name='vod_stream'), path('///', stream_vod, name='vod_stream_with_profile'), # VOD Stats path('stats/', views.vod_stats, name='vod_stats'), # Stop VOD client connection path('stop_client/', views.stop_vod_client, name='stop_vod_client'), ]