GPlayer
GPlayer copied to clipboard
How to add the http header request ?
Please Is there any way to add http header for the Gplayer in flutter ?
player = GPlayer(
uri: 'http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4',
options: [Option(1, 'headers', 'Connection: keep-alive\r\nuser-agent: okhttp\r\n')], //add headers
mediaController: DefaultMediaController(
title: 'bunny bear', gestureControlEnabled: true))
..init()
..addListener((_) {
//update control button out of player
setState(() {});
});
thanks, for the help, done bro 👍