similar to: Convert file in GSM codec to G729 codec

Displaying 20 results from an estimated 600 matches similar to: "Convert file in GSM codec to G729 codec"

2010 Aug 28
4
Asterisk does not translate from wav to alaw
Hello list, I have a file to be played in wav-format. I thought Asterisk would automatically take the wav-file and translate it to the codec used, but I see this : [Aug 28 11:16:29] WARNING[2705]: file.c:664 ast_openstream_full: File /var/lib/asterisk/sounds/vprompts/*zip-code.wav* does not exist in any format [Aug 28 11:16:29] WARNING[2705]: file.c:991 ast_streamfile: Unable to open
2006 Apr 05
6
transforming g729 files to wav files
Hello list, is there any open-source software that recodes g729 sound files to wav sound files ? The only way (at least) to do such transformation is with interactive form on: http://www.asteriskguru.com/audio_conversion.php Tofik Suleymanov
2008 Nov 19
2
VoiceMail - audio problem
Please help... The 1st voicemail message after a reload has audio to the caller. All subsequent calls have no audio to the caller even though the same voicemail application is being called? Asterisk Version 1.4.21.2 Executing [0872200189 at In:2] VoiceMail("SIP/voip-1fd034e0", "910|u") in new stack -- <SIP/voip-1fd034e0> Playing 'vm-theperson' (language
2008 Dec 11
5
Linux Software to monitor quality of bandwidth for carrying voip traffic - suggestions please?
Hi, Would like to run the software to monitor the quality of the bandwidth. Suggestions welcome? Thank you. Shaun -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20081211/85bd0069/attachment.htm
2012 Jan 05
1
[ncdf] programmatically copying a netCDF file
How to programmatically (i.e., without no or minimal handcoding) copy a netCDF file? (Without calling > system("cp whatever wherever") :-) Why I ask: I need to "do surgery" on a large netCDF file (technically an I/O API file which uses netCDF). My group believes a data-assimilation error caused a data variable to be corrupted in a certain way, so I'm going to
2008 Oct 06
1
cdr,gsm file format
Hi 1. What is the best way to convert wav (44000 Khz) to gsm format for asterisk ? I;ve tried sox command but the outcome is not satisfying...The built-in gsm files shipped with asterisk are simply superb ..How do i create gsm files of similar quality ? Can anyone help me out ? if sox is the only way can anyone tell me the exact command ? 2. Can Freepbx 2.5 installed above asterisk 1.6.0 or
2016 Jun 04
3
for loop example
Hi list, Can you look in to this? [root at centos67 loop]# cat file1 firstname1 firstname2 [root at centos67 loop]# cat file2 lastname1 lastname2 I need a OUTPUT like this *firstname1 lastname1firstname2 lastname2* But I try the below command , i get below output. what is the real command to get the above output [root at centos67 loop]# for line1 in $(cat file1 ); do for line2 in $(cat
2009 Mar 04
2
Required:Asterisk Beep tone while call connects
Hi, There is a long call setup time untill the call connects. How can I play a beep tone say every 4 seconds to the caller untill the call connects? Tx. Shaun -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20090304/38e17d3e/attachment.htm
2004 May 20
7
New Qdisc - How to
Hello Lartc''s users, This is my first contact. I''m trying to implement a new queue discipline based on bfifo schedule. I search on internet but there are some problem(s) that I don''t Know how to solve them and that''s why I''m here asking for your help. Well, These were my steps for the implementation: - Put the new qdisc routine
2009 Apr 01
1
Remote host can't match request CANCEL to call
Hi, Why does this warning occur and what are the implications of it? I'm concerned about calls never getting hung up.....! chan_sip.c:12890 handle_response: Remote host can't match request CANCEL to call '2f197e56611061a678c13b881b2691a9 at 411.2.139.106'. Giving up. Tx -------------- next part -------------- An HTML attachment was scrubbed... URL:
2010 Apr 10
1
Asterisk script to repeat dial of a number
Say, I'm looking for a simple way to dial a number repeatedly for two minutes at a time. The purpose is to busy up a faulty analogue line in an incoming hunt group. Tx Shaun -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20100410/0d4e92e9/attachment.htm
2012 Jul 23
2
translating IDL to R
I would appreciate * guidance regarding translation of IDL routines to R, generally * assistance translating two IDL routines to R, specifically Why I ask: I'm slowly learning how to do atmospheric modeling. One language that has been been popular in this space is IDL http://en.wikipedia.org/wiki/IDL_(programming_language) which unfortunately is proprietary (not to mention butt-ugly, IMHO
2009 Oct 31
1
!<command> from Manager
Hi, Is it possible to run a !<command> from Manager connection? Thanks in advance! CB
2009 Mar 03
2
macro-stdexten question
I am running asterisk 1.4 and the Digium GUI SVN-branch-2.0-r4489. When one phone calls another, I see the following on the console (here, 6223 dials 6123) -- Executing [6123 at DLPN_DefaultDialPlan:1] Macro("IAX2/6223-10489", "stdexten|6123|SIP/6123&IAX2/6123") in new stack -- Executing [s at macro-stdexten:1] Set("IAX2/6223-10489",
2016 Mar 20
1
[PATCH] ffind API to retrieve a file name given its inode
The ffind API allows to retrieve a file name from a device given its inode. The function returns a struct "tsknode" which contains the file name, its inode and it's allocation status. The struct will be employed by other APIs as well (fls, ifind etc..). $ ./run guestfish --ro -a /home/noxdafox/disks/ubuntu.qcow2 ><fs> run ><fs> ffind /dev/sda1 2 tsk_name: /
2016 Mar 14
2
[PATCH 0/2] blkcat API to extract device data units
blkcat allows to extract files given their data units (clusters for NTFS, fragments for ExtX). This API allows to recover files which icat cannot. For example icat often fails retrieving deleted files on Ext3/Ext4 filesystems. As this API works at data unit level, some garbage at the beginning or at the end of the files is expected. An example of blkcat can be found here:
2016 Mar 29
3
[PATCH 0/2] rename icat API as download_inode
"icat" name comes from the employed command line tool which might be replaced later on with a different implementation. The command name is a bit confusing because it's similar to "cat" but act as "donwload". Therefore I am renaming it with a more clear name. At the same time I cleaned up a bit the code and improved it's readability and code comments. This
2016 Mar 16
2
[PATCH 0/2] blkls API to extract unallocated blocks
The blkls API downloads on the host a range of unallocated blocks on the virtual disk image. This allows to recover deleted data on filesystems where icat fails. Example: guestfish --ro -a /home/noxdafox/ubuntu.qcow2 ><fs> run ><fs> mount /dev/sda1 / ><fs> write /test.txt "$foo$bar$" ><fs> rm /test.txt ><fs> umount / ><fs> blkls
2016 Mar 30
4
[PATCH 0/3] rename icat API into download_inode
The command name is a bit confusing because it's similar to "cat" but act as "donwload". Therefore I am renaming it with a more clear name. At the same go I cleaned up a bit the code following the standards and improved the API documentation. This patch is ready for review. Code available at: https://github.com/noxdafox/libguestfs/tree/download_inode Matteo Cafasso (3):
2008 Aug 17
2
Running asterisk as non root user
Hi, I've followed instructions of the book "AsteriskFutureOf TelephonySecEdit" on page 295 onwards ) Link to the Asterisk book: http://downloads.oreilly.com/books/9780596510480.pdf) and get an error when running service asterisk start. The error is: cat: /var/run/asterisk.pid: No such file or directory . I can run aserisk fine from the non-root user. Please help Code Snippet: 1: