arcticfox1919 / vlc-flutter

Flutter plugin for vlc player
MIT License
21 stars 7 forks source link

network Headers #1

Closed abdelaziz-mahdy closed 2 years ago

abdelaziz-mahdy commented 2 years ago

applying headers to play function

to pass Referer: key

abdelaziz-mahdy commented 2 years ago

from my research i found it can be added like this ./vlc.exe --http-referrer='http://example.com' should i just put it in vlc controller constructor?

abdelaziz-mahdy commented 2 years ago

i was able to add referrer using this code tmp=VLCController(args:["-vvv","--http-referrer=${VARIABLE FOR THE REFERRER LINK}"]);

thanks