Sound Clips

From Second Life Wiki
Revision as of 13:00, 23 June 2022 by Jenna Huntsman (talk | contribs) (Updated page information to be more concise. Added "Pricing Model" section to account for Premium Plus changes.)
Jump to navigation Jump to search

Feature Design Document

(none)

Functional Spec

  • 10(.000) seconds maximum. (STC)
  • PCM WAV format, 16-bit, 44.1kHz, mono / stereo (Downmixed to mono by the viewer at upload time)

Second Life supports in-world sound clips, which can be played to all residents within range. The maximum time any clip can be is 10 seconds, requiring longer sounds to be stitched together. There are various LSL functions that can be used to play sound clips, as well as a built-in system for gestures. Uploading a sound clip has a variable cost (see below), and the clip must be compatible with SL. As the Knowledge Base says, "Valid sounds are any .WAV file in standard PCM format, 16-bit/44.1kHz/mono or stereo (which will be converted to mono anyway), less than or exactly 10 seconds in length. (10.000 seconds is fine, but 10.001 will fail to upload; to the degree of one sample makes a difference.) Sounds cannot be saved as 8-bit, 22.05 kHz, or any other frequency. Sounds in other formats can be converted in most sound programs. There is currently no support for compression formats such as MP3."

Pricing Model

Account Level
Basic Premium Premium Plus
10 L$ 10 L$ 0 L$

Audio software

Windows Mac Linux
Audacity
Audacity is a free and open-source digital audio editor and recording application software. Torley Linden did a video tutorial on creating and uploading sounds via Audacity, viewable at http://www.youtube.com/watch?v=QBVmFafFatE
Ardour
Ardour is a free hard disk recorder and digital audio workstation application. It may be more suitable for users familiar with audio editing & DAWs in general.
ffmpeg
ffmpeg is a command-line tool, designed for processing of video and audio files. Recommended for advanced users only! See below example.
r8brain
r8brain is a basic, free audio transcoder.
Audacity
Audacity is a free and open-source digital audio editor and recording application software. Torley Linden did a video tutorial on creating and uploading sounds via Audacity, viewable at http://www.youtube.com/watch?v=QBVmFafFatE
Ardour
Ardour is a free hard disk recorder and digital audio workstation application. It may be more suitable for users familiar with audio editing & DAWs in general.
ffmpeg
ffmpeg is a command-line tool, designed for processing of video and audio files. Recommended for advanced users only! See below example.
GarageBand
GarageBand is a line of digital audio workstations for macOS, iPadOS, and iOS devices.
Audacity
Audacity is a free and open-source digital audio editor and recording application software. Torley Linden did a video tutorial on creating and uploading sounds via Audacity, viewable at http://www.youtube.com/watch?v=QBVmFafFatE
Ardour
Ardour is a free hard disk recorder and digital audio workstation application. It may be more suitable for users familiar with audio editing & DAWs in general.
ffmpeg
ffmpeg is a command-line tool, designed for processing of video and audio files. Recommended for advanced users only! See below example.

ffmpeg

The following section assumes some familiarity with the Linux operations system and bash scripting. One of the best tools for audio conversion under Linux is the tool ffmpeg. It is a command line tool that can convert both video and audio from one supported format to other supported formats. Source code for ffmpeg can be downloaded from the link but most modern Linux distributions come with a modern version already installed or ready for download in their package management system. Consult your distribution's documents on how to install packages and what package management system is supported.

The following command will use ffmpeg to convert a sound file to a Second Life compatible WAV file while cutting it just under 10 second segments for instant upload.

ffmpeg -i <filename> -f segment -segment_time 9.9 -ac 1 -ar 44100 <output filename>.%03d.wav

Command line explanation as follows.

  • -i <filename> The input file to convert.
  • -f segment -segment_time 9.9 Save the output file in 9.9 second segments. You can specify any time in segment_time option, including 10 for 10 seconds. But experimenting using 10 as a segment size sometimes produces file sizes to large for uploading. The 9.9 entry seems to be the perfect size for uploading with out issues.
  • -ac 1 Converts a multi channel, stereo, stream into a single, mono, output stream.
  • -ar 44100 Makes sure the output frequency is 44100 hz.
  • <output filename>.%03d.wav Specifies the output name and format for the numbering of each segment. The %03d format will save the output stream in sequential 3 digit segments. example: mozart.000.wav, mozart.001.wav, mozart.002.wav.

Once complete the resulting WAV files should be ready to upload in to Second Life.


Batch conversion
The following batch command can be used to convert a entire directory of mp3 files in to segmented wav files for direct upload.

 $ for i  in *.mp3; do  ffmpeg -i ${i} -f segment -segment_time 9.9 -ac 1 -ar 44100 ${i/mp3/}%03d.wav ; done

Windows
The following command, similar to the prior Linux section, will convert a file to the correct WAV format using ffmpeg on Windows.

ffmpeg -i <input> -c:a pcm_s16le -ac 1 -ar 44100 <output>.wav

Online tools

An online converter which provides complete control over the conversion process can be viewed at Online-Convert.

Test scripts

Audio Test

Discussion for future improvements

  • Linden Lab are (or already have) implemented support serverside and clientside for uploading clips of 30 seconds; however it is unknown when (or with what restrictions) this feature will become available.

Relationship to other features

List of features that need to be tested when this feature changes, and why.

Upload Assets - Upload a sound clip and make sure it still works.


User Guides

(none)