
public interface IURLProtocolHandlerFactory
| Modifier and Type | Method and Description |
|---|---|
IURLProtocolHandler |
getHandler(String protocol,
String url,
int flags)
Called by FFMPEG in order to get a handler to use for a given file.
|
IURLProtocolHandler getHandler(String protocol, String url, int flags)
protocol - The protocol without a ':'. For example, "file", "http", or "yourcustomprotocol"url - The URL that FFMPEG is trying to open.flags - The flags that FFMPEG will pass to IURLProtocolHandler.open(String, int)IURLProtocolHandler to use, or null. If null, a file not found error will be passed back
to FFMPEG.Copyright © 2018 Humble Software. All rights reserved.