我目前有一个如下所示的 cookie.txt 文件。
# Netscape HTTP Cookie File
# http://curl.haxx.se/rfc/cookie_spec.html
# This is a generated file! Do not edit.
.youtube.com TRUE / FALSE 1547252593 GPS 1
.youtube.com TRUE / FALSE 1552434792 PREF f1=50000000&hl=en
.youtube.com TRUE / FALSE 1562802793 VISITOR_INFO1_LIVE inJgRBNv-3I
.youtube.com TRUE / FALSE 0 YSC 9U9ILYfJDyA
.youtube.com TRUE / FALSE 0 s_gl 1d69aac621b2f9c0a25dade722d6e24bcwIAAABVUw==
在ffmpeg 的文档它表明你可以通过如下命令发送 cookie
ffplay -cookies "nlqptid=nltid=tsn; path=/; domain=somedomain.com;" http://somedomain.com/somestream.m3u8
鉴于此,我该如何发送此 cookie.txt 文件作为输入?我是否要转换 cookie.txt 文件的每一行(包括注释和换行符之间的空格)?我是否要将其作为一个长字符串发送?都不行?非常感谢大家的帮助。