音频数据?我需要一个典型的例子
我研究了预定义的剪贴板格式,对我来说令人费解的是音频流二进制格式,我不知道要复制什么,以便我的剪贴板将包含一段二进制音频数据。在 C# 和托管 C++ 中,剪贴板类也具有这种格式。请您解释一下并给我提供此类数据的示例。另外,我想知道为什么没有任何视频数据格式。谢谢
I have looked into predefined clipboard formats and one inexplicable to me is the Audio Stream binary format, I don't know what to copy so that my clipboard will contain a piece of binary audio data. In C# and managed C++ the clipboard class has this format too. Would you please explain and give me example(s) of this type of data. Also, I wonder why just there is not any video data format. Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
CF_WAVE 剪贴板格式只是一个 .wav 文件。如果将 .wav 文件加载到内存中,则可以使用如下代码将其复制到剪贴板:
...
这里,hFile 是 WAV 文件句柄。
The CF_WAVE clipboard format is simply a .wav file. If you load a .wav file into memory, then you can copy it to the clipboard using code like this:
...
Here, hFile the the WAV file handle.