freeTDS 在 Asterisk dialplan 中插入 blob

发布于 2024-12-12 05:25:45 字数 849 浏览 0 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蓝戈者 2024-12-19 05:25:45

好的,在一行中执行此操作的方法是使用 base64,如下所示:

(echo -e -n use "AVL \\ngo\\nexec spAVL_SetAlertIVR 1, '";(base64 myFile.wav|tr -d '\n');echo -n -e "'\\ngo") | tsql -H 192.168.1.111 -p 1433 -U sa -P x

注意“( )”和“|”的使用以及使用“tr -d”删除base64命令留下的CR的技巧。

希望这对其他人有帮助

Ok, so the way to do it in a single line is using base64, like this:

(echo -e -n use "AVL \\ngo\\nexec spAVL_SetAlertIVR 1, '";(base64 myFile.wav|tr -d '\n');echo -n -e "'\\ngo") | tsql -H 192.168.1.111 -p 1433 -U sa -P x

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文