How to add request header to vlcMobilePlayer?Streaming video from Android camera to serverHow to check iOS version?@import vs #import - iOS 7AFNetworking 2.0 add headers to GET requestHow to make an HTTP request in Swift?How do I load an HTTP URL with App Transport Security enabled in iOS 9?MobileVLCKit Http Stream Video play avi files without jitter, lag, grey screenHow can I add additional headers / query parameters to requests issued by the player?MobileVLCKit video full screen
Performance of a branch and bound algorithm VS branch-cut-heuristics
Team goes to lunch frequently, I do intermittent fasting but still want to socialize
Why are Gatwick's runways too close together?
As a 16 year old, how can I keep my money safe from my mother?
Why did the RAAF procure the F/A-18 despite being purpose-built for carriers?
How can you evade tax by getting employment income just in equity, then using this equity as collateral to take out loan?
Dereferencing a pointer in a 'for' loop initializer creates a segmentation fault
If a Contingency spell has been cast on a creature, does the Simulacrum spell transfer the contingent spell to its duplicate?
Why "ch" pronunciation rule doesn't occur for words such as "durch", "manchmal"?
Am I overreacting to my team leader's unethical requests?
Is it really ~648.69 km/s delta-v to "land" on the surface of the Sun?
First amendment and employment: Can an employer terminate you for speech?
Author changing name
A stranger from Norway wants to have money delivered to me
Is there a loss of quality when converting RGB to HEX?
Dropdowns & Chevrons for Right to Left languages
Write an interpreter for *
Max Order of an Isogeny Class of Rational Elliptic Curves is 8?
Was the 2019 Lion King film made through motion capture?
Improving software when the author can see no need for improvement
Accidentals - some in brackets, some not
Why should we care about syntactic proofs if we can show semantically that statements are true?
Want to draw this commutative diagram
How to use grep to search through the --help output?
How to add request header to vlcMobilePlayer?
Streaming video from Android camera to serverHow to check iOS version?@import vs #import - iOS 7AFNetworking 2.0 add headers to GET requestHow to make an HTTP request in Swift?How do I load an HTTP URL with App Transport Security enabled in iOS 9?MobileVLCKit Http Stream Video play avi files without jitter, lag, grey screenHow can I add additional headers / query parameters to requests issued by the player?MobileVLCKit video full screen
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I am using MobileVLCKit to play streaming video and I can play videos with URL.
But, how to play videos with some special header?
Just like sending HTTP requests.
ios video-streaming vlc
add a comment |
I am using MobileVLCKit to play streaming video and I can play videos with URL.
But, how to play videos with some special header?
Just like sending HTTP requests.
ios video-streaming vlc
add a comment |
I am using MobileVLCKit to play streaming video and I can play videos with URL.
But, how to play videos with some special header?
Just like sending HTTP requests.
ios video-streaming vlc
I am using MobileVLCKit to play streaming video and I can play videos with URL.
But, how to play videos with some special header?
Just like sending HTTP requests.
ios video-streaming vlc
ios video-streaming vlc
edited Mar 27 at 8:43
pGauR
1,5473 gold badges13 silver badges24 bronze badges
1,5473 gold badges13 silver badges24 bronze badges
asked Mar 27 at 7:44
dean changdean chang
34 bronze badges
34 bronze badges
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
From https://wiki.videolan.org/VLC_command-line_help/
HTTPS input (access)
--http-continuous, --no-http-continuous
Continuous stream
(default disabled)
Keep reading a resource that keeps being updated.
--http-forward-cookies, --no-http-forward-cookies
Cookies forwarding
(default enabled)
Forward cookies across HTTP redirections.
--http-referrer=<string> Referrer
Provide the referral URL, i.e. HTTP "Referer" (sic).
--http-user-agent=<string> User agent
Override the name and version of the application as provided to the
HTTP server, i.e. the HTTP "User-Agent". Name and version must be
separated by a forward slash, e.g. "FooBar/1.2.3".
You can provide these CLI args to libvlc through MobileVLCKit when calling the MobileVLCKit equivalent of libvlc_new
.
Sorry, not really understand what u mean. I use code.videolan.org/videolan/VLCKit this library. And using swift to code. What I want is before I set URL to VLC media. I want to set header for it. Thanks.
– dean chang
Mar 28 at 7:35
I tried to add "http-referrer" when init vlcmediaplayer,or before play video,however it's not working
– dean chang
Apr 12 at 3:53
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55372079%2fhow-to-add-request-header-to-vlcmobileplayer%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
From https://wiki.videolan.org/VLC_command-line_help/
HTTPS input (access)
--http-continuous, --no-http-continuous
Continuous stream
(default disabled)
Keep reading a resource that keeps being updated.
--http-forward-cookies, --no-http-forward-cookies
Cookies forwarding
(default enabled)
Forward cookies across HTTP redirections.
--http-referrer=<string> Referrer
Provide the referral URL, i.e. HTTP "Referer" (sic).
--http-user-agent=<string> User agent
Override the name and version of the application as provided to the
HTTP server, i.e. the HTTP "User-Agent". Name and version must be
separated by a forward slash, e.g. "FooBar/1.2.3".
You can provide these CLI args to libvlc through MobileVLCKit when calling the MobileVLCKit equivalent of libvlc_new
.
Sorry, not really understand what u mean. I use code.videolan.org/videolan/VLCKit this library. And using swift to code. What I want is before I set URL to VLC media. I want to set header for it. Thanks.
– dean chang
Mar 28 at 7:35
I tried to add "http-referrer" when init vlcmediaplayer,or before play video,however it's not working
– dean chang
Apr 12 at 3:53
add a comment |
From https://wiki.videolan.org/VLC_command-line_help/
HTTPS input (access)
--http-continuous, --no-http-continuous
Continuous stream
(default disabled)
Keep reading a resource that keeps being updated.
--http-forward-cookies, --no-http-forward-cookies
Cookies forwarding
(default enabled)
Forward cookies across HTTP redirections.
--http-referrer=<string> Referrer
Provide the referral URL, i.e. HTTP "Referer" (sic).
--http-user-agent=<string> User agent
Override the name and version of the application as provided to the
HTTP server, i.e. the HTTP "User-Agent". Name and version must be
separated by a forward slash, e.g. "FooBar/1.2.3".
You can provide these CLI args to libvlc through MobileVLCKit when calling the MobileVLCKit equivalent of libvlc_new
.
Sorry, not really understand what u mean. I use code.videolan.org/videolan/VLCKit this library. And using swift to code. What I want is before I set URL to VLC media. I want to set header for it. Thanks.
– dean chang
Mar 28 at 7:35
I tried to add "http-referrer" when init vlcmediaplayer,or before play video,however it's not working
– dean chang
Apr 12 at 3:53
add a comment |
From https://wiki.videolan.org/VLC_command-line_help/
HTTPS input (access)
--http-continuous, --no-http-continuous
Continuous stream
(default disabled)
Keep reading a resource that keeps being updated.
--http-forward-cookies, --no-http-forward-cookies
Cookies forwarding
(default enabled)
Forward cookies across HTTP redirections.
--http-referrer=<string> Referrer
Provide the referral URL, i.e. HTTP "Referer" (sic).
--http-user-agent=<string> User agent
Override the name and version of the application as provided to the
HTTP server, i.e. the HTTP "User-Agent". Name and version must be
separated by a forward slash, e.g. "FooBar/1.2.3".
You can provide these CLI args to libvlc through MobileVLCKit when calling the MobileVLCKit equivalent of libvlc_new
.
From https://wiki.videolan.org/VLC_command-line_help/
HTTPS input (access)
--http-continuous, --no-http-continuous
Continuous stream
(default disabled)
Keep reading a resource that keeps being updated.
--http-forward-cookies, --no-http-forward-cookies
Cookies forwarding
(default enabled)
Forward cookies across HTTP redirections.
--http-referrer=<string> Referrer
Provide the referral URL, i.e. HTTP "Referer" (sic).
--http-user-agent=<string> User agent
Override the name and version of the application as provided to the
HTTP server, i.e. the HTTP "User-Agent". Name and version must be
separated by a forward slash, e.g. "FooBar/1.2.3".
You can provide these CLI args to libvlc through MobileVLCKit when calling the MobileVLCKit equivalent of libvlc_new
.
answered Mar 27 at 10:00
mtzmtz
4254 silver badges12 bronze badges
4254 silver badges12 bronze badges
Sorry, not really understand what u mean. I use code.videolan.org/videolan/VLCKit this library. And using swift to code. What I want is before I set URL to VLC media. I want to set header for it. Thanks.
– dean chang
Mar 28 at 7:35
I tried to add "http-referrer" when init vlcmediaplayer,or before play video,however it's not working
– dean chang
Apr 12 at 3:53
add a comment |
Sorry, not really understand what u mean. I use code.videolan.org/videolan/VLCKit this library. And using swift to code. What I want is before I set URL to VLC media. I want to set header for it. Thanks.
– dean chang
Mar 28 at 7:35
I tried to add "http-referrer" when init vlcmediaplayer,or before play video,however it's not working
– dean chang
Apr 12 at 3:53
Sorry, not really understand what u mean. I use code.videolan.org/videolan/VLCKit this library. And using swift to code. What I want is before I set URL to VLC media. I want to set header for it. Thanks.
– dean chang
Mar 28 at 7:35
Sorry, not really understand what u mean. I use code.videolan.org/videolan/VLCKit this library. And using swift to code. What I want is before I set URL to VLC media. I want to set header for it. Thanks.
– dean chang
Mar 28 at 7:35
I tried to add "http-referrer" when init vlcmediaplayer,or before play video,however it's not working
– dean chang
Apr 12 at 3:53
I tried to add "http-referrer" when init vlcmediaplayer,or before play video,however it's not working
– dean chang
Apr 12 at 3:53
add a comment |
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55372079%2fhow-to-add-request-header-to-vlcmobileplayer%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown