Mercurial > pidgin.yaz
annotate plugins/gaim.pl @ 12903:2bb4dc533a31
[gaim-migrate @ 15256]
redpen686 posted modified sounds to gaim-devel:
"The tones were sampled at 44.1 KHz (with a range of up to 22.05 KHz),
which is fine, but since the tones are only up to ~3 to 4 KHz, a lot of
space could be saved by downsampling.
I went to 11,025 Hz, since it is already enough for these frequencies,
and it's also the lowest common denominator for soundcards (rather than
8 or 16 KHz, for example).
The 'alert' sound needed a lowpass filter, but only because of the
high-pitched attack, which people won't notice anyway.
All are still 16-bit, and in stereo (except for the 'alert' sound, which
didn't need it), and so should sound virtually identical."
These are significantly smaller files and I didn't notice a difference in
the sound (of course, my speakers suck). They're also louder, which is good.
I'm committing these so people can try them out.
committer: Tailor Script <tailor@pidgin.im>
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Tue, 17 Jan 2006 02:49:32 +0000 |
parents | e120097bbd72 |
children |
rev | line source |
---|---|
3563 | 1 sub description { |
2 my($a, $b, $c, $d, $e, $f) = @_; | |
3 ("Example", "1.0", "An example Gaim perl script that does nothing particularly useful:\n\t-Show a dialog on load\n\t-Set user idle for 6,000 seconds\n\t-Greets people signing on with \"Hello\"\n\t-Informs you when script has been loaded for one minute.", "Eric Warmenhoven <eric\@warmenhoven.org>", "http://gaim.sf.net", "/dev/null"); | |
4 } | |
806 | 5 |
3563 | 6 $handle = GAIM::register("Example", "1.0", "goodbye", ""); |
7 | |
8 GAIM::print("Perl Says", "Handle $handle"); | |
9 | |
1526
190cef255530
[gaim-migrate @ 1536]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
806
diff
changeset
|
10 $ver = GAIM::get_info(0); |
2355
571971659533
[gaim-migrate @ 2368]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1526
diff
changeset
|
11 @ids = GAIM::get_info(1); |
806 | 12 |
2355
571971659533
[gaim-migrate @ 2368]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1526
diff
changeset
|
13 $msg = "Gaim $ver:"; |
571971659533
[gaim-migrate @ 2368]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1526
diff
changeset
|
14 foreach $id (@ids) { |
571971659533
[gaim-migrate @ 2368]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1526
diff
changeset
|
15 $pro = GAIM::get_info(7, $id); |
571971659533
[gaim-migrate @ 2368]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1526
diff
changeset
|
16 $nam = GAIM::get_info(3, $id); |
571971659533
[gaim-migrate @ 2368]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1526
diff
changeset
|
17 $msg .= "\n$nam using $pro"; |
571971659533
[gaim-migrate @ 2368]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1526
diff
changeset
|
18 } |
806 | 19 |
2355
571971659533
[gaim-migrate @ 2368]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1526
diff
changeset
|
20 |
571971659533
[gaim-migrate @ 2368]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1526
diff
changeset
|
21 GAIM::command("idle", 6000); |
571971659533
[gaim-migrate @ 2368]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1526
diff
changeset
|
22 |
3563 | 23 GAIM::add_event_handler($handle, "event_buddy_signon", "echo_reply"); |
24 GAIM::add_timeout_handler($handle, 60, "notify"); | |
806 | 25 |
26 sub echo_reply { | |
2511
a83b4a5ffcd6
[gaim-migrate @ 2524]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2355
diff
changeset
|
27 $index = $_[0]; |
a83b4a5ffcd6
[gaim-migrate @ 2524]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2355
diff
changeset
|
28 $who = $_[1]; |
a83b4a5ffcd6
[gaim-migrate @ 2524]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2355
diff
changeset
|
29 GAIM::print_to_conv($index, $who, "Hello", 0); |
806 | 30 } |
31 | |
32 sub notify { | |
2355
571971659533
[gaim-migrate @ 2368]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1526
diff
changeset
|
33 GAIM::print("1 minute", "gaim test has been loaded for 1 minute"); |
806 | 34 } |
35 | |
36 sub goodbye { | |
1526
190cef255530
[gaim-migrate @ 1536]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
806
diff
changeset
|
37 GAIM::print("You Bastard!", "You killed Kenny!"); |
806 | 38 } |
3551 | 39 |