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.
当我使用网络摄像头录制视频时,它会作为.flv文件记录在我正在使用的应用程序的流文件夹中。例如 -path/to/red5/webapps/vod/streams
.flv
path/to/red5/webapps/vod/streams
我想在其中创建一个目录streams并将文件存储在那里。怎么可能呢?
streams
只需在 netconnection 对象的服务器 url 末尾附加文件夹名称即可。
var folder_name = "yourfolder";
var netConnection=new NetConnection;
netConnection.connect(serverUrl+folder_name);
然后您的录音将保存到位置流\您的文件夹中。
在你的情况下 path/to/red5/webapps/vod/streams/yourfolder
希望这可以帮助。