Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
import os File = open('Path/video_file.webm','rb') Size = os.path.getsize('Path/video_file.webm') Data = File.read(Size)
ファイルからビデオを再生する代わりに、Python を使用して「データ」のコンテンツを再生するにはどうすればよいですか? 私を助けてください。私は立ち往生しました。よろしくお願いします。
StringIO を使用する
を使用してテキストからファイルを作成することができます StringIO.StringIO(string) 通常どおりに再生します
StringIO.StringIO(string)
ドキュメント: http://docs.python.org/2/library/stringio.html