Twitter api ile video yüklemeye çalışıyorum fotoğraf yükledim sıkıntı yok ama videoyu kabul etmiyor hata da vermiyor ama yüklemiyor sadece yazıyı paylaşıyor video yok.


$connection = new TwitterOAuth($consumer_key, $consumer_secret, $access_token, $access_token_secret);
$content = $connection->get("account/verify_credentials");


$media1 = $connection->upload('media/upload', ['media' => "../video.mp4"]);
$parameters = [
'status' => "deneme tweet",
'media_ids' => implode(',', [$media1->media_id_string])
];
$result = $connection->post('statuses/update', $parameters);


video.mp4 yerine resim.jpg yaptığımda fotoğrafı yüklüyor.

Video nasıl yüklerim ?