Skip to content

Commit 9bb451c

Browse files
authored
Fix framerate (#179)
1 parent 396277d commit 9bb451c

File tree

3 files changed

+13
-12
lines changed

3 files changed

+13
-12
lines changed

webrtc_to_hls/lib/webrtc_to_hls/stream.ex

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ defmodule WebRTCToHLS.Stream do
3434
owner: self(),
3535
output_directory:
3636
Application.fetch_env!(:membrane_webrtc_to_hls_demo, :hls_output_mount_path),
37-
framerate: 24
37+
framerate: {24, 1}
3838
}
3939

4040
:ok = Engine.add_endpoint(pid, endpoint, endpoint_id: "hls", node: node())

webrtc_to_hls/mix.exs

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ defmodule WebRTCToHLS.MixProject do
3131
{:jason, "~> 1.2"},
3232
{:membrane_file_plugin, "~> 0.7.0"},
3333
# HLS_Endpoint deps
34-
{:membrane_http_adaptive_stream_plugin, "~> 0.4.0"},
35-
{:membrane_mp4_plugin, "~> 0.10.0", override: true},
34+
{:membrane_http_adaptive_stream_plugin, "~> 0.5.0"},
35+
{:membrane_mp4_plugin, "~> 0.11.0", override: true},
3636
{:membrane_h264_ffmpeg_plugin, "~> 0.16.0"},
3737
{:membrane_aac_plugin, "~> 0.11.0"},
3838
{:membrane_aac_format, "~> 0.6.0"},

0 commit comments

Comments
 (0)