База звуковых эффектов для монтажа

6Partners In Rhyme


Громадная библиотека платной и бесплатной музыки, в которой с первого взгляда можно легко заблудиться. Среди всего этого массива файлов находится куча бесплатных звуков, отыскать их можно на главной странице раздел «Free Sound Effects» (там же есть крайне полезная ссылка под названием «Free Royalty Free Music»). Различные звуки во «Free Sound Effects» поделены на 6 тем:

  • Эмбиент;
  • «Человеческие» эффекты;
  • Транспорт;
  • Животные;
  • Общие звуковые эффекты;
  • Большой подраздел, посвященный бытовым или «домашним» звукам.

При открытии файла из библиотеки «Partners In Rhyme» появляется проигрыватель, в котором можно не только прослушать звук, но и скачать его через команду «сохранить как».
 

Usage

After creating an instance of with passing filename as the first argument to the constructor, you can retrieve data from object properties (listed below).

use wapmorgan\Mp3Info\Mp3Info;
// To get basic audio information
$audio = new Mp3Info('./audio.mp3');

// If you need parse tags, you should set 2nd argument this way:
$audio = new Mp3Info('./audio.mp3', true);

And after that access object properties to get audio information:

echo 'Audio duration: '.floor($audio->duration / 60).' min '.floor($audio->duration % 60).' sec'.PHP_EOL;
echo 'Audio bitrate: '.($audio->bitRate / 1000).' kb/s'.PHP_EOL;
// and so on ...

To access id3v1 tags use property.
To access id3v2 tags use property.
Also, you can use combined list of tags , where id3v2 and id3v1 tags united with id3v1 keys.

// simple id3v1 tags
echo 'Song '.$audio->tags1.' from '.$audio->tags1.PHP_EOL;
// specific id3v2 tags
echo 'Song '.$audio->tags2.' from '.$audio->tags2.PHP_EOL;

// combined tags (simplies way to get as more information as possible)
echo 'Song '.$audio->tags.' from '.$audio->tags.PHP_EOL;

API

Audio information

Property Description Values
MPEG codec version 1 or 2
Audio layer version 1 or 2 or 3
Audio size in bytes. Note that this value is NOT equals file size. int
Audio duration in seconds.microseconds like 3603.0171428571 (means 1 hour and 3 sec)
Audio bit rate in bps like 128000 (means 128kb/s)
Audio sample rate in Hz like 44100 (means 44.1KHz)
Contains true if audio has variable bit rate boolean
Channel mode or or or
Audio tags ver. 1 (aka id3v1).
Audio tags ver. 2 (aka id3v2), only text ones.
Combined audio tags (from id3v1 & id3v2). Keys as in tags1.
Contains time spent to read&extract audio information in sec.msec

Class methods

  • Creates new instance of object and initiate parsing. If second argument is true, audio tags also will be parsed.

  • Checks if file looks like an mp3-file. Returns true if file similar to mp3, otherwise false.

About MP3Info

MP3Info is a little utility used to read and modify the ID3 tags of MP3
files. MP3Info can also display various techincal aspects of an MP3 file
including playing time, bit-rate, sampling frequency and other attributes
in a pre-defined or user-specifiable output format.

Q: OK, so what’s an ‘MP3’?

A: For those of you who have been living in a cave for the past decade, an
MP3 (short for MPEG-1, audio layer 3) is a very popular digital audio file format
which encodes an audio file with a lossy compression algorithm resulting in
files representing a minute of near-CD quality stereo sound in less than a
megabyte of data. Compare this to non-compressed formats (Windows .WAV files
for instance) which encode the same minute of audio in about ten megabytes of
data.

Q: What’s an ‘ID3 tag’?

A: An ID3 tag is a little scrap of data added to the beginning or end of the
MP3 file which stores information about the audio recording including the
title, artist, album, copyright date, and musical genre. ID3 tags are an
optional feature of the MP3 format, so not all MP3 files have ID3 tags.

3The General Series 6000 Sound Effects Library


Пожалуй, одна из самых известных и полных коллекций шумов, созданных за всю историю человечества. Эта библиотека является стандартом, по которому оценивают большинство собраний звуковых эффектов, чем объясняется довольно высокая цена ее использования. Тем не менее отдельные ее части можно достаточно легко найти в бесплатном доступе на торрентах. Учитывая, что все эти звуковые эффекты имеют приставку «Royalty Free», такие базы можно вполне легально использовать в своих проектах. На данный момент вышло восемь выпусков (Extension), в каждом из них находится от 1 до 3,2 тысяч звуковых эффектов. Кроме того, есть отдельный «премиальный» выпуск «General Series 6000», куда вошло более 7500 наиболее востребованных шумов. И комбо-подборка «General Series 6000 Combo», объединившая в себе 20 тысяч звуков. Чтобы не потеряться во всем этом многообразии, к каждому выпуску прилагается pdf-инструкция с подробным указанием характера звуков и их продолжительностью.
 

Other Programs Called ‘MP3Info’

Several people have pointed out that there are other, older programs out
there called mp3info. To date, I have found only one: authored by
Thorvald Natvig <thorvald@natvig.com>
You used to be able to get it at ftp://bimbo.hive.no/pub/mp3info, but
as of November 2006 that link seems to be dead any I haven’t been able to locate
a new one.

Note! Thorvald’s version uses different command-line switches than this version.
I have had reports of people accidentally changing the ID3 tags of their MP3 files as
a result of «upgrading» from Thorvald’s version to mine without realizing they were
completely different programs with different command-line switches. Please
be aware of which mp3info you are using. Check the usage syntax. The two versions
are not interchangeable.

10Music for Video


Специализированная библиотека премиальных звуков для видеопродакшна. Как и на всех подобных сайтах звуков, здесь есть специальный бесплатный раздел. И хотя он не такой большой, как хотелось бы, в нем опубликованы довольно любопытные «киногеничные» аудиоэффекты — тревожные, жуткие, создающие неприятные ощущения, шумовые звуки. Этот ресурс — идеальное место для тех, кто озвучивает триллеры, хорроры или ужасы.
 
Еще больше полезных статей на tvkinoradio.ru для сценаристов, режиссеров, операторов, монтажеров, художников-постановщиков, художников по костюмам, звукорежиссеров, композиторов, супервайзеров визуальных эффектов и продюсеров.

Get It!

The current version of MP3Info is 0.8.5a — released November 14, 2006. This is
primarily a bug fix release relative to version 0.8.4. Check out the Change Log to see what’s new. I apologize to all you
fine folks out there who have contributed patches and suggestions that haven’t
been integrated yet. Adding ID3V2 support is, unfortunately, monopolizing
most of my development time.

    Source: mp3info-0.8.5a.tgz
    Binary (Red Hat/Fedora Linux — i386): mp3info-0.8.5a-1.i386.rpm
    Binary (Windows): mp3info-0.8.5-win.zip
Why isn’t this version 0.8.5a? Because the only difference between 0.8.5 and 0.8.5a does not affect the Windows version.

For the protocol challenged, MP3Info is also available via HTTP

Current and previous versions are available here.

To Do

  • ID3v2 support is the most often-requested feature and is badly needed,
    however this will entail an almost complete rewrite and I’m a lazy SOB,
    so it’s going to be a while yet… Anybody wanna volunteer?

  • Make format specifiers a bit more flexible (allow user to choose
    int/float/string display arbitrarily and provide some mechanism for
    convenient magnitude displays of large numbers (KB for kilobytes, MB for
    megabytes, etc.)

  • Add line-editing capabilities to curses version (I have a user-contributed
    patch, but it’s a little broken)

  • Make exit codes more useful and document them better (i.e. return 1
    if no ID3 found, 2 if MP3 is corrupt, 3 if the file wasn’t found or
    something along those lines).

  • Add capability to copy ID3 tags from one file to another

  • Add -p format specifiers for:
    • Maximum and minimum bitrates
    • File index (first file = 0, second file = 1, etc.)

— Cedric Tefft

Добавить комментарий

Ваш адрес email не будет опубликован. Обязательные поля помечены *

Adblock
detector