###発生している問題・エラーメッセージ
30秒以上の動画をあげようとすると以下のエラーとなります。
Duration too long, maximum:30000, actual:◯◯◯◯◯(※ココに実際の動画の秒数)
###現状の実装
以下のとおりです
ruby
1video_url = '投稿したい動画のURL' 2 3client = Twitter::REST::Client.new do |config| 4 config.consumer_key = '....' 5 config.consumer_secret = '....' 6 config.access_token = '....' 7 config.access_token_secret = '....' 8end 9 10media = File.new(open(video_url)) 11## media_id発行 12init = Twitter::REST::Request.new(client, :post, 'https://upload.twitter.com/1.1/media/upload.json', 13 { 14 command: "INIT", media_type: "video/mp4", 15 total_bytes: media.size, 16 media_catergory: "tweet_video" 17 }).perform 18 ## ファイルアップロード 19until media.eof? 20 base64_chunk = Base64.encode64(media.read(5_000_000)) 21 base64_chunk.delete("\n") 22 seg ||= -1 23 Twitter::REST::Request.new(client, :post, 'https://upload.twitter.com/1.1/media/upload.json', 24 { 25 command: "APPEND", 26 media_id: init[:media_id], 27 media_data: base64_chunk, 28 segment_index: seg += 1, 29 key: :media 30 }).perform 31end 32media.close 33 ## ファイナライズ 34Twitter::REST::Request.new(client, :post, 'https://upload.twitter.com/1.1/media/upload.json', 35 { 36 command: "FINALIZE", 37 media_id: init[:media_id] 38 }).perform 39## Twitter投稿 40client.update(text, media_ids: init[:media_id])
###関連記事
また以下の記事で30秒以上の動画のtweetの処理が紹介されていますが
phpで実装されているので同一の処理をrubyでできれば良いと考えています。
回答1件
あなたの回答
tips
プレビュー