freeTDS 在 Asterisk dialplan 中插入 blob
在 Asterisk 应用程序(拨号方案)中,我需要在 MSSQL 数据库中插入一个声音文件。我正在使用 freeTDS 与数据库进行通信。
示例表称为“testblob”,
(id int identity, name varchar(50), audiofile varbinary(MAX))
我正在尝试使用以下代码:
exten => s,n,Set(arch=${FILE(/var/lib/asterisk/sounds/custom/myFile.wav)})
exten => s,n,Verbose(${arch})
exten => s,n,Set(RESULT=${SHELL(echo -e use "AVL \\ngo\\ninsert into testblob (name, audiofile) values ('mar',${arch})\\ngo"|tsql -H x.x.x.x -p 1433 -U sa -P x)})
但由于 ${arch} 变量内的“特殊字符”,因此肯定无法正常工作。我知道 $arch 里面是文件信息,但我想我需要以二进制或 64encode 或类似的方式读取它。
问题是:有什么方法可以直接从 shell 插入这个 myFile.wav 吗?像这样的东西:
echo -e use "AVL \\ngo\\ninsert into testblob (name, audiofile) values ('mar',####MAGIC GOES HERE TO READ MYFILE.WAV###)\\ngo"|tsql -H x.x.x.x -p 1433 -U sa -P x
Inside an Asterisk application (dialplan) I need to insert in a MSSQL database a sound file. I'm using freeTDS to communicate with the DB.
The example table is called "testblob"
(id int identity, name varchar(50), audiofile varbinary(MAX))
Im trying with this code:
exten => s,n,Set(arch=${FILE(/var/lib/asterisk/sounds/custom/myFile.wav)})
exten => s,n,Verbose(${arch})
exten => s,n,Set(RESULT=${SHELL(echo -e use "AVL \\ngo\\ninsert into testblob (name, audiofile) values ('mar',${arch})\\ngo"|tsql -H x.x.x.x -p 1433 -U sa -P x)})
But is not working most certainly because of the "special chars" inside de ${arch} variable. I know that inside $arch is the file info, but I guess I need to read it on binary or 64encode it or something like that.
Question is: Is there any way to insert this myFile.wav directly from the shell? Something like:
echo -e use "AVL \\ngo\\ninsert into testblob (name, audiofile) values ('mar',####MAGIC GOES HERE TO READ MYFILE.WAV###)\\ngo"|tsql -H x.x.x.x -p 1433 -U sa -P x
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的,在一行中执行此操作的方法是使用 base64,如下所示:
注意“( )”和“|”的使用以及使用“tr -d”删除base64命令留下的CR的技巧。
希望这对其他人有帮助
Ok, so the way to do it in a single line is using base64, like this:
Note the use of "( )" and "|" and the trick using "tr -d" to remove the CR leaved behind by the base64 command.
Hope this helps someone else