Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Jellyfish port used in example #53

Merged
merged 1 commit into from
Jul 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -180,4 +180,7 @@ $RECYCLE.BIN/
# Windows shortcuts
*.lnk

# End of https://www.gitignore.io/api/c,vim,linux,macos,elixir,windows,visualstudiocode
# End of https://www.gitignore.io/api/c,vim,linux,macos,elixir,windows,visualstudiocode

# Default Jellyfish output directory
jellyfish_output
2 changes: 1 addition & 1 deletion examples/rtsp_to_hls.exs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ defmodule Example do
require Logger

@jellyfish_hostname "localhost"
@jellyfish_port 4000
@jellyfish_port 5002
@jellyfish_token "development"

def run(stream_uri) do
Expand Down