Как добавить заголовок запроса в vlcMobilePlayer? - PullRequest
0 голосов
/ 27 марта 2019

Я использую MobileVLCKit для воспроизведения потокового видео, и я могу воспроизводить видео с URL.
Но как воспроизвести видео с каким-то специальным заголовком?
Так же, как отправка HTTP-запросов .

1 Ответ

0 голосов
/ 27 марта 2019

С 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".

Эти аргументы CLI можно передать libvlc через MobileVLCKit при вызове MobileVLCKit, эквивалентного libvlc_new.

...