Difference between revisions of "Sound Clips"
m (Replaced <source> with <syntaxhighlight>) |
m (→Discussion for future improvements: very minor grammar/spelling fixes + citation needed) |
||
Line 85: | Line 85: | ||
=== Discussion for future improvements === | === Discussion for future improvements === | ||
* Linden Lab | * Linden Lab is implementing (or already have implemented) support server-side and client-side for uploading clips of 30 seconds; however, it is unknown when (or with what restrictions) this feature will become available.{{Citation needed|date=January 2023|A link to a transcript, or a forum post, would be most appreciated!}} | ||
=== Relationship to other features === | === Relationship to other features === |
Revision as of 15:47, 27 January 2023
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
Basic | Premium | Premium Plus |
---|---|---|
10 L$ | 10 L$ | 0 L$ |
Audio software
Windows | Mac | Linux |
---|---|---|
|
|
|
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
Discussion for future improvements
- Linden Lab is implementing (or already have implemented) support server-side and client-side for uploading clips of 30 seconds; however, it is unknown when (or with what restrictions) this feature will become available.[citation needed]
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)