|
List Info
Thread: Missing Sound!
|
|
| Missing Sound! |
  United States |
2007-02-22 15:43:59 |
Hey all, there's a sound file referenced in asterisk, that
has not yet
been created!
Specifically, it is vm-duration
is is referenced in apps/app_voicemail.c, in function
play_message_duration()
and is reported in bug 8993 by caio1982.
Kevin Fleming did some research and says:
> This needed some detective work
>
> Asterisk 1.2 did not have nor use this file.
>
> Asterisk 1.4 only gained the use of this file when
Russell committed
> the
> changes from bug #6970. The poster of that patch added
the use of this
> file in bugnote 44919, but no file was ever supplied,
nor was the
> sounds.txt file updated to include the script for it.
>
> This explains why we don't have any master recordings
of this file.
>
> Now, I do agree that the addition of this prompt would
make message
> duration speaking cleaner, but we'll need to decide on
the proper text
> (in English, Spanish and French) and then I'll need to
order the
> recordings.
The length of a voicemail in seconds is divided by 60, and
the resulting
number played just after the vm-duration file is played.
Then
"vm-minutes" is played.
caio1982 suggests that "this message is longer
than" be the wording for
this...
I personally lean toward "this message is at
least" ... but, who am I?
So, any votes or further suggestions as to what to put in
this file?
murf
--
Steve Murphy
Software Developer
Digium
_______________________________________________
--Bandwidth and Colocation provided by Easynews.com --
asterisk-dev mailing list
To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-dev
|
|
| Re: Missing Sound! |

|
2007-02-22 16:16:11 |
|
"This message is approximately..."
?
On 2/22/07, Steve Murphy < murf digium.com">murf digium.com> wrote:
Hey all, there's a sound file referenced in asterisk, that has not yet been created!
Specifically, it is vm-duration is is referenced in apps/app_voicemail.c, in function play_message_duration() and is reported in bug 8993 by caio1982.
Kevin Fleming did some research and says:
> This needed some detective work
> > Asterisk 1.2 did not have nor use this file. > > Asterisk 1.4 only gained the use of this file when Russell committed > the > changes from bug #6970. The poster of that patch added the use of this
> file in bugnote 44919, but no file was ever supplied, nor was the > sounds.txt file updated to include the script for it. > > This explains why we don't have any master recordings of this file.
> > Now, I do agree that the addition of this prompt would make message > duration speaking cleaner, but we'll need to decide on the proper text > (in English, Spanish and French) and then I'll need to order the
> recordings.
The length of a voicemail in seconds is divided by 60, and the resulting number played just after the vm-duration file is played. Then "vm-minutes" is played.
caio1982 suggests that "this message is longer than" be the wording for
this... I personally lean toward "this message is at least" ... but, who am I?
So, any votes or further suggestions as to what to put in this file?
murf
-- Steve Murphy Software Developer
Digium
_______________________________________________ --Bandwidth and Colocation provided by Easynews.com --
asterisk-dev mailing list To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-dev
-- sean
|
| Re: Missing Sound! |
  United States |
2007-02-22 16:49:28 |
On Thursday 22 February 2007 15:43, Steve Murphy wrote:
> The length of a voicemail in seconds is divided by 60,
and the
> resulting number played just after the vm-duration file
is played.
> Then "vm-minutes" is played.
>
> caio1982 suggests that "this message is longer
than" be the wording
> for this...
> I personally lean toward "this message is at
least" ... but, who am
> I?
>
> So, any votes or further suggestions as to what to put
in this file?
"This message is longer than 5 minutes" sounds
wrong, as does "This
message is at least 5 minutes". Both are technically
true for messages
that are 5 minutes, 10 minutes, or 2 hours long. "This
message lasts 5
minutes" sounds better, given that it's giving an exact
duration, but
I'm not married to the phrasing.
While we're recording messages, I need "Press 9 for
more entries" for
a Directory modification I'm working on.
--
Tilghman
_______________________________________________
--Bandwidth and Colocation provided by Easynews.com --
asterisk-dev mailing list
To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-dev
|
|
| Re: Missing Sound! |
  United States |
2007-02-22 17:19:03 |
On Thursday, February 22, 2007, 17:16:11, Sean Bright
wrote:
> On 2/22/07, Steve Murphy <murf digium.com> wrote:
>> ...
>> The length of a voicemail in seconds is divided by
60, and the resulting
>> number played just after the vm-duration file is
played. Then
>> "vm-minutes" is played.
>>
>> caio1982 suggests that "this message is longer
than" be the wording for
>> this...
>> I personally lean toward "this message is at
least" ... but, who am I?
>>
>> So, any votes or further suggestions as to what to
put in this file?
>
> "This message is approximately..."
That implies some sort of rounding to the nearest minute was
done.
Would it be excessive to have the playback go as follows
"this message is"
say (seconds/60)
if ((seconds/60) == 1) "minute"
else "minutes"
if (seconds%60) {
say (seconds%60)
if ((seconds%60) == 1) "second"
else "seconds"
}
"long"
--
rodd polylogics.com "The avalanche has already
started, it is too
Rod Dorman late for the pebbles to vote."
- Ambassador Kosh
_______________________________________________
--Bandwidth and Colocation provided by Easynews.com --
asterisk-dev mailing list
To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-dev
|
|
| Re: Missing Sound! |

|
2007-02-22 17:40:39 |
|
I think the goal is to make this available to current installations and not require a recompile.
I like Tilghman39;s suggestion as well as my own (because I'm biased like that).
On 2/22/07, Rod Dorman < rodd polylogics.com">rodd polylogics.com> wrote:
On Thursday, February 22, 2007, 17:16:11, Sean Bright wrote: > On 2/22/07, Steve Murphy < murf digium.com">murf digium.com> wrote: >> ... >> The length of a voicemail in seconds is divided by 60, and the resulting
>> number played just after the vm-duration file is played. Then >> "vm-minutes" is played. >> >> caio1982 suggests that "this message is longer than" be the wording for
>> this... >> I personally lean toward "this message is at least" ... but, who am I? >> >> So, any votes or further suggestions as to what to put in this file? > > "This message is approximately..."
That implies some sort of rounding to the nearest minute was done.
Would it be excessive to have the playback go as follows "this message is" say (seconds/60) if ((seconds/60) == 1) "minute"
else "minutes" if (seconds%60) { say (seconds%60) if ((seconds%60) == 1) "second" else "seconds" } "long"
-- rodd polylogics.com">
rodd polylogics.com "The avalanche has already started, it is too Rod Dorman late for the pebbles to vote." - Ambassador Kosh
_______________________________________________ --Bandwidth and Colocation provided by
Easynews.com --
asterisk-dev mailing list To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-dev
-- sean
|
[1-5]
|
|