我想将视频转换为字节数组以供上传。
var videoInput = new Uri("/uploadNewVideo;component/test.mp4", UriKind.Relative);
我正在尝试将字节数组作为参数上传到 php:
string a = "TRIAL";
string url = "phpURL?";
client.DownloadStringAsync(new Uri(url + "&uploadedfile=" + bytearray + "&name=" + a));