You've already forked algora-tv
							
							
				mirror of
				https://github.com/algora-io/tv.git
				synced 2025-10-30 23:07:56 +02:00 
			
		
		
		
	configure resume rtmp
This commit is contained in:
		| @@ -133,7 +133,7 @@ AWS_REGION="auto" | ||||
| AWS_ACCESS_KEY_ID="tid_..." | ||||
| AWS_SECRET_ACCESS_KEY="tsec_..." | ||||
| BUCKET_MEDIA="..." | ||||
| TRANSCODE=4320p60|2160p60|1440p60|1440p30|720p30|360p30|180p30 | ||||
| RESUME_RTMP=true | ||||
| ``` | ||||
|  | ||||
| <!-- ARCHITECTURE --> | ||||
|   | ||||
| @@ -2,7 +2,7 @@ import Config | ||||
|  | ||||
| config :algora, | ||||
|   mode: :dev, | ||||
|   resume_rtmp: true | ||||
|   resume_rtmp: System.get_env("RESUME_RTMP", "false") == "true" | ||||
|  | ||||
| config :algora, :buckets, | ||||
|   media: System.get_env("BUCKET_MEDIA"), | ||||
|   | ||||
| @@ -14,7 +14,7 @@ end | ||||
|  | ||||
| config :algora, | ||||
|   hf_token: System.get_env("HF_TOKEN"), | ||||
|   resume_rtmp: true | ||||
|   resume_rtmp: System.get_env("RESUME_RTMP", "false") == "true" | ||||
|  | ||||
| config :replicate, | ||||
|   replicate_api_token: System.get_env("REPLICATE_API_TOKEN") | ||||
|   | ||||
		Reference in New Issue
	
	Block a user