-
Notifications
You must be signed in to change notification settings - Fork 212
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
Can`t store .ts files in my app directory #16
Comments
Sorry for the late reply! The source of FFmpegWrapper.so is here. If you merely want to change the file output directory modify the Kickflip SessionConfig config = new SessionConfig.Builder("/root/output/path/index.m3u8")
// Optional parameters. e.g .withTitle("Some title")
.build();
Kickflip.setSessionConfig(config);
Kickflip.startBroadcastActivity(this, mBroadcastListener); Note that the SessionConfig.Builder behavior is a bit odd. For example when you pass "/root/output/path/index.m3u8" the HLS files will actually be stored at "/root/output/path/someUUID/index.m3u8" to avoid any filename collisions. |
Thank you very much, I`ll try further experiments. |
Does |
BTW Are there any significant code changes (fixes, improvements) comparable to https://github.com/OnlyInAmerica/FFmpegTest for HLS streaming? |
Yes, FFmpegMuxer writes the .m3u8 and .ts files by way of The Kickflip components are maintained while the FFmpegTest repo is not. On Thu Dec 11 2014 at 2:36:26 AM Anton Smirnov notifications@github.com
|
Hello! Seems like this problem is in the ffmpeg wrapper. It won`t write hls to the directory that contains dots (like the app data dir containing package name). Btw Is there any way to look at the wrapper source code?
The text was updated successfully, but these errors were encountered: