-
Notifications
You must be signed in to change notification settings - Fork 211
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
feat: add a nodejs binary for transmux via command line #366
Conversation
8cf8a53
to
edad7c1
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems to create mp4 files but the timing is all messed up. Is it because there's no associated init segment?
} else if ((/^--help|-h$/).test(arg)) { | ||
showHelp(); | ||
process.exit(0); | ||
} else if ((/^--debugger|-d$/).test(arg)) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we currently error out if muxjs-transmux
is run without arguments, we probably should default to showHelp()
The timing issues could be because I set base media decode time to a default value of 100000 |
Actually I think you mean the duration of the file when playing back? That happens because we set duration to |
Yeah, of the generated mp4 file. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think I'm still getting weird durations in the output but I think we can fix it later.
No description provided.