<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.tmb.dj/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Jaybeee</id>
	<title>TMB Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.tmb.dj/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Jaybeee"/>
	<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/Special:Contributions/Jaybeee"/>
	<updated>2026-05-30T09:26:11Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.32.1</generator>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=Yt-dlp&amp;diff=4751</id>
		<title>Yt-dlp</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=Yt-dlp&amp;diff=4751"/>
		<updated>2025-11-07T10:37:03Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==yt-dlp==&lt;br /&gt;
&lt;br /&gt;
'''yt-dlp''' is a feature-rich command-line audio/video downloader with support for thousands of sites. It can grab the actual media on the site, which allows us to get the highest quality version without any [[transcoding]] occurring.&lt;br /&gt;
&lt;br /&gt;
*https://github.com/yt-dlp/yt-dlp&lt;br /&gt;
[[FFmpeg]] is a crucial dependency.&lt;br /&gt;
yt-dlp does provide it's own [https://github.com/yt-dlp/FFmpeg-Builds FFmpeg-Builds] that patches some of the issues the standard FFmpeg has that affects yt-dlp.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===yt-dlp script===&lt;br /&gt;
Copy and paste the below text into a text file and rename it '''yt-dlp.cmd'''&lt;br /&gt;
&lt;br /&gt;
'''Make sure to change the paths in the script below''' - it's specific to '''your''' system/computer/setup.&lt;br /&gt;
&lt;br /&gt;
'''::''' is added to allow comments, so when you want to download the media you'll need to add :: to the ''%vyt-dlp% -F --no-check-certificate %vStream%'' line and remove it from the line below ''%vyt-dlp% -o %vOutput% %vStream%''&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;:: Name:     yt-dlp.cmd&lt;br /&gt;
:: Purpose:  Configures yt-dlp to download media&lt;br /&gt;
:: Author:   jaybeee @ themixingbowl.org | https://github.com/yt-dlp/yt-dlp&lt;br /&gt;
:: Revision: Aug 2022&lt;br /&gt;
&lt;br /&gt;
@ECHO OFF&lt;br /&gt;
&lt;br /&gt;
SETLOCAL ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION&lt;br /&gt;
&lt;br /&gt;
:: variables begin with v&lt;br /&gt;
&lt;br /&gt;
:: set name of this script without file extension&lt;br /&gt;
SET vMe=%~n0&lt;br /&gt;
&lt;br /&gt;
:: set name of the parent directory where this script resides&lt;br /&gt;
SET vParent=%~dp0&lt;br /&gt;
&lt;br /&gt;
:: set youtube-dl path ** CHANGE ME **&lt;br /&gt;
SET vyt-dlp=&amp;quot;C:\PATH\TO\yt-dlp.exe&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: set ffmpeg path if not already in PATH ** CHANGE ME **&lt;br /&gt;
::SET vffmpeg=&amp;quot;C:\PATH\TO\ffmpeg.exe&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: set url ** CHANGE ME **&lt;br /&gt;
SET vStream=http://www.bbc.co.uk/programmes/b00vv0w8&lt;br /&gt;
&lt;br /&gt;
:: set the location of where to save the file ** CHANGE ME ** &lt;br /&gt;
SET vOutput=&amp;quot;C:\PATH\TO\OUTPUT\FOLDER\%%(title)s.%%(ext)s&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:: Remind ourselves not to close the window&lt;br /&gt;
ECHO Recording to %vOutput% . . . don't close this Window!&lt;br /&gt;
&lt;br /&gt;
:: Check version&lt;br /&gt;
%vyt-dlp=&amp;quot;% --version&lt;br /&gt;
&lt;br /&gt;
:: create the command to send to yt-dlp&lt;br /&gt;
:: -F lists available formats&lt;br /&gt;
:: -f to then select the format required such as bestaudio or the actual file, eg audio only&lt;br /&gt;
:: -o actually gets the media&lt;br /&gt;
:: Add this for Mixcloud captures: --no-check-certificate&lt;br /&gt;
:: ** AMEND AS APPROPRIATE **&lt;br /&gt;
%vyt-dlp% -F --no-check-certificate %vStream%&lt;br /&gt;
::%vyt-dlp% -o %vOutput% %vStream%&lt;br /&gt;
::%vyt-dlp% -o %vOutput% --no-check-certificate %vStream%&lt;br /&gt;
::%vyt-dlp% -o %vOutput% --all-formats %vStream%&lt;br /&gt;
&lt;br /&gt;
:: Capture HQ YouTube OPUS file in an WEBM container&lt;br /&gt;
::%vyt-dlp% -o %vOutput% -f 140 %vStream%&lt;br /&gt;
&lt;br /&gt;
:: Capture HQ Mixcloud OPUS file in an WEBM container&lt;br /&gt;
::%vyt-dlp% -o %vOutput% -f dash-f2-a1-x3 --no-check-certificate %vStream%&lt;br /&gt;
&lt;br /&gt;
:: Capture HQ Mixcloud AAC file in M4A container&lt;br /&gt;
::%vyt-dlp% -o %vOutput% -f hls-192 --no-check-certificate %vStream%&lt;br /&gt;
&lt;br /&gt;
:: YouTube Videos: might need to use this to merge the output and get MP4 files.&lt;br /&gt;
::%vyt-dlp% -v -f bestvideo[ext=mp4]+bestaudio[ext=m4a] --merge-output-format mp4 %vStream% -o %vOutput% &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:: Finish&lt;br /&gt;
ECHO Finished recording&lt;br /&gt;
&lt;br /&gt;
:: pause to see output&lt;br /&gt;
PAUSE&lt;br /&gt;
&lt;br /&gt;
:END&lt;br /&gt;
ENDLOCAL&lt;br /&gt;
ECHO ON&lt;br /&gt;
@EXIT /B 0&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Parabolic==&lt;br /&gt;
&lt;br /&gt;
'''Parabolic''' is a powerful frontend for yt-dlp.&lt;br /&gt;
*https://flathub.org/en/apps/org.nickvision.tubeconverter&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==yt-dlp-gui==&lt;br /&gt;
&lt;br /&gt;
'''yt-dl-gui''' is a frontend for yt-dlp.&lt;br /&gt;
*https://github.com/kannagi0303/yt-dlp-gui&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[category:Audio Tools]]&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=Yt-dlp&amp;diff=4750</id>
		<title>Yt-dlp</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=Yt-dlp&amp;diff=4750"/>
		<updated>2025-11-07T10:26:45Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==yt-dlp==&lt;br /&gt;
&lt;br /&gt;
'''yt-dlp''' is a feature-rich command-line audio/video downloader with support for thousands of sites.&lt;br /&gt;
&lt;br /&gt;
*https://github.com/yt-dlp/yt-dlp&lt;br /&gt;
[[FFmpeg]] is a crucial dependency. yt-dlp does provide it's own [https://github.com/yt-dlp/FFmpeg-Builds FFmpeg-Builds] that patches some of the issues the standard FFmpeg has that affects yt-dlp.&lt;br /&gt;
&lt;br /&gt;
Copy and paste the below text into a text file and rename it '''yt-dlp.cmd'''&lt;br /&gt;
&lt;br /&gt;
'''Make sure to change the paths in the script below''' - it's specific to '''your''' system/computer/setup.&lt;br /&gt;
&lt;br /&gt;
'''::''' is added to allow comments, so when you want to download the media you'll need to add :: to the ''%vyt-dlp% -F --no-check-certificate %vStream%'' line and remove it from the line below ''%vyt-dlp% -o %vOutput% %vStream%''&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;:: Name:     yt-dlp.cmd&lt;br /&gt;
:: Purpose:  Configures yt-dlp to download media&lt;br /&gt;
:: Author:   jaybeee @ themixingbowl.org | https://github.com/yt-dlp/yt-dlp&lt;br /&gt;
:: Revision: Aug 2022&lt;br /&gt;
&lt;br /&gt;
@ECHO OFF&lt;br /&gt;
&lt;br /&gt;
SETLOCAL ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION&lt;br /&gt;
&lt;br /&gt;
:: variables begin with v&lt;br /&gt;
&lt;br /&gt;
:: set name of this script without file extension&lt;br /&gt;
SET vMe=%~n0&lt;br /&gt;
&lt;br /&gt;
:: set name of the parent directory where this script resides&lt;br /&gt;
SET vParent=%~dp0&lt;br /&gt;
&lt;br /&gt;
:: set youtube-dl path ** CHANGE ME **&lt;br /&gt;
SET vyt-dlp=&amp;quot;C:\PATH\TO\yt-dlp.exe&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: set ffmpeg path if not already in PATH ** CHANGE ME **&lt;br /&gt;
::SET vffmpeg=&amp;quot;C:\PATH\TO\ffmpeg.exe&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: set url ** CHANGE ME **&lt;br /&gt;
SET vStream=http://www.bbc.co.uk/programmes/b00vv0w8&lt;br /&gt;
&lt;br /&gt;
:: set the location of where to save the file ** CHANGE ME ** &lt;br /&gt;
SET vOutput=&amp;quot;C:\PATH\TO\OUTPUT\FOLDER\%%(title)s.%%(ext)s&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:: Remind ourselves not to close the window&lt;br /&gt;
ECHO Recording to %vOutput% . . . don't close this Window!&lt;br /&gt;
&lt;br /&gt;
:: Check version&lt;br /&gt;
%vyt-dlp=&amp;quot;% --version&lt;br /&gt;
&lt;br /&gt;
:: create the command to send to yt-dlp&lt;br /&gt;
:: -F lists available formats&lt;br /&gt;
:: -f to then select the format required such as bestaudio or the actual file, eg audio only&lt;br /&gt;
:: -o actually gets the media&lt;br /&gt;
:: Add this for Mixcloud captures: --no-check-certificate&lt;br /&gt;
:: ** AMEND AS APPROPRIATE **&lt;br /&gt;
%vyt-dlp% -F --no-check-certificate %vStream%&lt;br /&gt;
::%vyt-dlp% -o %vOutput% %vStream%&lt;br /&gt;
::%vyt-dlp% -o %vOutput% --no-check-certificate %vStream%&lt;br /&gt;
::%vyt-dlp% -o %vOutput% --all-formats %vStream%&lt;br /&gt;
&lt;br /&gt;
:: Capture HQ YouTube OPUS file in an WEBM container&lt;br /&gt;
::%vyt-dlp% -o %vOutput% -f 140 %vStream%&lt;br /&gt;
&lt;br /&gt;
:: Capture HQ Mixcloud OPUS file in an WEBM container&lt;br /&gt;
::%vyt-dlp% -o %vOutput% -f dash-f2-a1-x3 --no-check-certificate %vStream%&lt;br /&gt;
&lt;br /&gt;
:: Capture HQ Mixcloud AAC file in M4A container&lt;br /&gt;
::%vyt-dlp% -o %vOutput% -f hls-192 --no-check-certificate %vStream%&lt;br /&gt;
&lt;br /&gt;
:: YouTube Videos: might need to use this to merge the output and get MP4 files.&lt;br /&gt;
::%vyt-dlp% -v -f bestvideo[ext=mp4]+bestaudio[ext=m4a] --merge-output-format mp4 %vStream% -o %vOutput% &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:: Finish&lt;br /&gt;
ECHO Finished recording&lt;br /&gt;
&lt;br /&gt;
:: pause to see output&lt;br /&gt;
PAUSE&lt;br /&gt;
&lt;br /&gt;
:END&lt;br /&gt;
ENDLOCAL&lt;br /&gt;
ECHO ON&lt;br /&gt;
@EXIT /B 0&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Parabolic==&lt;br /&gt;
&lt;br /&gt;
'''Parabolic''' is a powerful frontend for yt-dlp.&lt;br /&gt;
*https://flathub.org/en/apps/org.nickvision.tubeconverter&lt;br /&gt;
&lt;br /&gt;
==yt-dlp-gui==&lt;br /&gt;
&lt;br /&gt;
'''yt-dl-gui''' is a frontend for yt-dlp.&lt;br /&gt;
*https://github.com/kannagi0303/yt-dlp-gui&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[category:Audio Tools]]&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=Yt-dlp&amp;diff=4749</id>
		<title>Yt-dlp</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=Yt-dlp&amp;diff=4749"/>
		<updated>2025-11-07T10:21:53Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: Created page with &amp;quot;'''yt-dlp''' is a feature-rich command-line audio/video downloader with support for thousands of sites.  *https://github.com/yt-dlp/yt-dlp FFmpeg is a crucial dependency....&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''yt-dlp''' is a feature-rich command-line audio/video downloader with support for thousands of sites.&lt;br /&gt;
&lt;br /&gt;
*https://github.com/yt-dlp/yt-dlp&lt;br /&gt;
[[FFmpeg]] is a crucial dependency. yt-dlp does provide it's own [https://github.com/yt-dlp/FFmpeg-Builds FFmpeg-Builds] that patches some of the issues the standard FFmpeg has that affects yt-dlp.&lt;br /&gt;
&lt;br /&gt;
Copy and paste the below text into a text file and rename it '''yt-dlp.cmd'''&lt;br /&gt;
&lt;br /&gt;
'''Make sure to change the paths in the script below''' - it's specific to '''your''' system/computer/setup.&lt;br /&gt;
&lt;br /&gt;
'''::''' is added to allow comments, so when you want to download the media you'll need to add :: to the ''%vyt-dlp% -F --no-check-certificate %vStream%'' line and remove it from the line below ''%vyt-dlp% -o %vOutput% %vStream%''&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;:: Name:     yt-dlp.cmd&lt;br /&gt;
:: Purpose:  Configures yt-dlp to download media&lt;br /&gt;
:: Author:   jaybeee @ themixingbowl.org | https://github.com/yt-dlp/yt-dlp&lt;br /&gt;
:: Revision: Aug 2022&lt;br /&gt;
&lt;br /&gt;
@ECHO OFF&lt;br /&gt;
&lt;br /&gt;
SETLOCAL ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION&lt;br /&gt;
&lt;br /&gt;
:: variables begin with v&lt;br /&gt;
&lt;br /&gt;
:: set name of this script without file extension&lt;br /&gt;
SET vMe=%~n0&lt;br /&gt;
&lt;br /&gt;
:: set name of the parent directory where this script resides&lt;br /&gt;
SET vParent=%~dp0&lt;br /&gt;
&lt;br /&gt;
:: set youtube-dl path ** CHANGE ME **&lt;br /&gt;
SET vyt-dlp=&amp;quot;C:\PATH\TO\yt-dlp.exe&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: set ffmpeg path if not already in PATH ** CHANGE ME **&lt;br /&gt;
::SET vffmpeg=&amp;quot;C:\PATH\TO\ffmpeg.exe&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: set url ** CHANGE ME **&lt;br /&gt;
SET vStream=http://www.bbc.co.uk/programmes/b00vv0w8&lt;br /&gt;
&lt;br /&gt;
:: set the location of where to save the file ** CHANGE ME ** &lt;br /&gt;
SET vOutput=&amp;quot;C:\PATH\TO\OUTPUT\FOLDER\%%(title)s.%%(ext)s&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:: Remind ourselves not to close the window&lt;br /&gt;
ECHO Recording to %vOutput% . . . don't close this Window!&lt;br /&gt;
&lt;br /&gt;
:: Check version&lt;br /&gt;
%vyt-dlp=&amp;quot;% --version&lt;br /&gt;
&lt;br /&gt;
:: create the command to send to yt-dlp&lt;br /&gt;
:: -F lists available formats&lt;br /&gt;
:: -f to then select the format required such as bestaudio or the actual file, eg audio only&lt;br /&gt;
:: -o actually gets the media&lt;br /&gt;
:: Add this for Mixcloud captures: --no-check-certificate&lt;br /&gt;
:: ** AMEND AS APPROPRIATE **&lt;br /&gt;
%vyt-dlp% -F --no-check-certificate %vStream%&lt;br /&gt;
::%vyt-dlp% -o %vOutput% %vStream%&lt;br /&gt;
::%vyt-dlp% -o %vOutput% --no-check-certificate %vStream%&lt;br /&gt;
::%vyt-dlp% -o %vOutput% --all-formats %vStream%&lt;br /&gt;
&lt;br /&gt;
:: Capture HQ YouTube OPUS file in an WEBM container&lt;br /&gt;
::%vyt-dlp% -o %vOutput% -f 140 %vStream%&lt;br /&gt;
&lt;br /&gt;
:: Capture HQ Mixcloud OPUS file in an WEBM container&lt;br /&gt;
::%vyt-dlp% -o %vOutput% -f dash-f2-a1-x3 --no-check-certificate %vStream%&lt;br /&gt;
&lt;br /&gt;
:: Capture HQ Mixcloud AAC file in M4A container&lt;br /&gt;
::%vyt-dlp% -o %vOutput% -f hls-192 --no-check-certificate %vStream%&lt;br /&gt;
&lt;br /&gt;
:: YouTube Videos: might need to use this to merge the output and get MP4 files.&lt;br /&gt;
::%vyt-dlp% -v -f bestvideo[ext=mp4]+bestaudio[ext=m4a] --merge-output-format mp4 %vStream% -o %vOutput% &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:: Finish&lt;br /&gt;
ECHO Finished recording&lt;br /&gt;
&lt;br /&gt;
:: pause to see output&lt;br /&gt;
PAUSE&lt;br /&gt;
&lt;br /&gt;
:END&lt;br /&gt;
ENDLOCAL&lt;br /&gt;
ECHO ON&lt;br /&gt;
@EXIT /B 0&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[category:Audio Tools]]&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=FAQ&amp;diff=4746</id>
		<title>FAQ</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=FAQ&amp;diff=4746"/>
		<updated>2025-06-21T10:01:48Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: /* Can you delete my (confirmed) account? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Policy}}&lt;br /&gt;
&lt;br /&gt;
==Site information==&lt;br /&gt;
We intend to be the 1st stop for torrents for: The Essential Mix, The Breezeblock, Kiss FM, XFM, Worldwide, BTTB, One World, Blue Room, The Milk Run, Solid Steel, Annie On One and much more...&lt;br /&gt;
Before you do anything here we suggest you have a look at the [[rules]].&lt;br /&gt;
&lt;br /&gt;
===What is this BitTorrent all about anyway? How do I get the files?===&lt;br /&gt;
&lt;br /&gt;
The idea behind Bittorrent is the SHARING of files. As you download a file you will also upload the parts you already have to help others. Bittorrent only works because other users like you are also sharing the files so please be considerate and leave the files open in your [[:Category:Bittorrent_Client_Guide|bittorrent client]] for as long as you can. The site will keep track of your [[ratio|sharing ratio]], the more you share the more music you have access to.&lt;br /&gt;
&lt;br /&gt;
If you are new to BitTorrent then you will be advised to have a look at the very good [https://lifehacker.com/285489/a-beginners-guide-to-bittorrent|Beginners guide to BitTorrent] which explains how BitTorrent works and how to get started.&lt;br /&gt;
&lt;br /&gt;
For a BitTorrent client we recommend using [[qBittorrent]] or [[uTorrent]]. Both clients keep track of all your torrents for you, making it easier to seed and maintain a decent ratio. See the [[Client whitelist]] for more supported clients.&lt;br /&gt;
&lt;br /&gt;
===Where does the donated money go?===&lt;br /&gt;
&lt;br /&gt;
All donated money goes towards hosting the site.&lt;br /&gt;
&lt;br /&gt;
===How does the auto ban/warning system work?===&lt;br /&gt;
'''Starting upload credit'''&lt;br /&gt;
&lt;br /&gt;
All users start with 5G as upload credit, so there is a chance to explore the site's contents without worrying (too much) about ratio.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Ratio'''&lt;br /&gt;
&lt;br /&gt;
A [[ratio]] of 0.3 and lower is considered bad with respect to warnings.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Auto warnings'''&lt;br /&gt;
&lt;br /&gt;
Every day we automatically issue warnings to any account which has a low ratio.  The account then has a warning flag issued recording the date and account statistics when the warning was issued.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Auto bans'''&lt;br /&gt;
&lt;br /&gt;
Every day we automatically ban any account which has been warned for over 30 days and whose ratio hasn't improved.&lt;br /&gt;
&lt;br /&gt;
We also monitor the accounts currently flagged with a warning and will ban any one who is trying to download lots before the auto ban or whose ratio has gotten worse since the warning.&lt;br /&gt;
&lt;br /&gt;
Other non-ratio related warnings can be issued by the admin team for abusive behaviour, persistent commercial uploads etc.&lt;br /&gt;
&lt;br /&gt;
===How does your RSS feed work?===&lt;br /&gt;
&lt;br /&gt;
See [[RSS Feed]]&lt;br /&gt;
&lt;br /&gt;
===How can I contact an admin?===&lt;br /&gt;
&lt;br /&gt;
If you are logged in to the site, use [https://themixingbowl.org/tickets/messageadmin Message Admin] to send a question to the admin team. If you are not able to log in to the site for any reason, use [https://themixingbowl.org/contact/us Contact Us]. In either case your question will be answered by any available admin.&lt;br /&gt;
&lt;br /&gt;
If you message an admin you see online directly on the site you may not get a response, especially if your question is already covered in the FAQ.&lt;br /&gt;
&lt;br /&gt;
==User information==&lt;br /&gt;
&lt;br /&gt;
===I registered an account but did not receive the confirmation e-mail!===&lt;br /&gt;
&lt;br /&gt;
To delete the account so you can re-register, send a message to the admin team with [https://themixingbowl.org/tickets/messageadmin this form]. Note though that if you didn't receive the email the first time it will probably not succeed the second time either so you should really try another email address.&lt;br /&gt;
&lt;br /&gt;
===I've lost my user name or password! Can you send it to me?===&lt;br /&gt;
&lt;br /&gt;
Please use [https://themixingbowl.org/forgot this form] to have the login details mailed back to you.&lt;br /&gt;
&lt;br /&gt;
===Can you rename my account?===&lt;br /&gt;
&lt;br /&gt;
Possibly. Send a message to the admin team explaining why using [https://themixingbowl.org/tickets/messageadmin this form].&lt;br /&gt;
&lt;br /&gt;
===What happens to my account if I don't use it?===&lt;br /&gt;
&lt;br /&gt;
Some user accounts are disabled for inactivity. &lt;br /&gt;
&lt;br /&gt;
Accounts are '''inactive''' if the user hasn't not logged in for 3 months. At 3 months you will get a notification, a reminder after 1 month and disabled if another month passes.&lt;br /&gt;
&lt;br /&gt;
Accounts are '''unused''' if the user has signed up a year ago and not used the account since signing up. Unused accounts will be disabled if not used within 30 days of first notification.&lt;br /&gt;
&lt;br /&gt;
These rules apply to all user and uploader classes. All accounts Resident and above are exempt from being disabled for inactivity.&lt;br /&gt;
Furthermore, if you are seeding at least 5 torrents you will not be disabled (although you will still recieve notifications).&lt;br /&gt;
&lt;br /&gt;
If you know that you will be away from internet for a long time, you may park your account from your profile page. Parked accounts cannot login to the site and use of the tracker is restricted to seeding, i.e. parked accounts can seed but can not download new torrents.&lt;br /&gt;
&lt;br /&gt;
===How do I unpark my account?===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=600 heights=400&amp;gt;&lt;br /&gt;
File:Account-parked.png|Message displayed with a parked account&lt;br /&gt;
File:Account-unparked.png|Message displayed with a just unparked account&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Can you delete my (confirmed) account?===&lt;br /&gt;
&lt;br /&gt;
If you no longer wish to use your account, [https://themixingbowl.org/tickets/messageadmin message the admin] and request that your account be disabled. Note, we do not delete accounts.&lt;br /&gt;
&lt;br /&gt;
===So, what's MY ratio?===&lt;br /&gt;
&lt;br /&gt;
You can view your ratio on your [https://themixingbowl.org/user/view profile page]&lt;br /&gt;
&lt;br /&gt;
It's important to distinguish between your overall ratio and the individual ratio on each torrent you may be seeding or leeching. The overall ratio takes into account the total uploaded and downloaded from your account since you joined the site. The individual ratio just indicates the values for each torrent.&lt;br /&gt;
&lt;br /&gt;
You may see two symbols instead of a number: &amp;quot;Inf.&amp;quot;, which is just an abbreviation for Infinity, and means that you have downloaded 0 bytes while uploading a non-zero amount (ul/dl becomes infinity); &amp;quot;---&amp;quot;, which should be read as &amp;quot;non-available&amp;quot;, and shows up when you have both downloaded and uploaded 0 bytes (ul/dl = 0/0 which is an indeterminate amount).&lt;br /&gt;
&lt;br /&gt;
===Why is my IP displayed on my details page?===&lt;br /&gt;
&lt;br /&gt;
Only you and the site moderators can view your IP address and email. Regular users do not see that information.&lt;br /&gt;
&lt;br /&gt;
===Why does my profile show &amp;quot;unconnectable&amp;quot;? (And why should I care?)===&lt;br /&gt;
&lt;br /&gt;
The tracker has determined that you are firewalled or NATed and cannot accept incoming connections.  This means that other [[peers]] in the [[swarm]] will be unable to connect to you, only you to them. Even worse, if two peers are both in this state they will not be able to connect at all. This will slow down ''your'' torrents and reduce your chance of being able to upload anything, so it's in your best interests to fix it. &lt;br /&gt;
&lt;br /&gt;
Have a read of the [[How to become connectable]] page or lookup your router on [http://www.portforward.com portforward.com]).&lt;br /&gt;
&lt;br /&gt;
===What are the different user classes?===&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!align=&amp;quot;left&amp;quot; valign=&amp;quot;top&amp;quot; style=&amp;quot;color:#2B4157&amp;quot;|User&lt;br /&gt;
|The default class of new members.&lt;br /&gt;
|-&lt;br /&gt;
!align=&amp;quot;left&amp;quot; valign=&amp;quot;top&amp;quot; style=&amp;quot;color:#2B4157&amp;quot;|User[[Image:star.gif]]&lt;br /&gt;
|Has donated money to themixingbowl.org.&lt;br /&gt;
|-&lt;br /&gt;
!align=&amp;quot;left&amp;quot; valign=&amp;quot;top&amp;quot; style=&amp;quot;color:#00C&amp;quot;|Uploader&lt;br /&gt;
|Allowed to upload torrents. For information on how to become an Uploader please see the uploading section of the FAQ.&lt;br /&gt;
|- &lt;br /&gt;
!align=&amp;quot;left&amp;quot; valign=&amp;quot;top&amp;quot; style=&amp;quot;color:green&amp;quot;|Resident&lt;br /&gt;
|User who has contributed to the site. To become a Resident you must meet ALL the following criteria:&lt;br /&gt;
*Have to be registered on the site for more than 3 months&lt;br /&gt;
*Have a ratio of 1.0+&lt;br /&gt;
*Downloaded more than 5GB&lt;br /&gt;
*At least 5 forum posts&lt;br /&gt;
And at least ONE of the following criteria:&lt;br /&gt;
*Over 200 forum posts&lt;br /&gt;
*Uploaded over 20 individual torrents&lt;br /&gt;
*Uploaded over 100GB&lt;br /&gt;
*Have donated any amount&lt;br /&gt;
''Residents are exempt from being disabled for inactivity''.&lt;br /&gt;
|-&lt;br /&gt;
!align=&amp;quot;left&amp;quot; valign=&amp;quot;top&amp;quot;|Other&lt;br /&gt;
|Customised title. Only an Administrator can customize someones title.&lt;br /&gt;
|-&lt;br /&gt;
!align=&amp;quot;left&amp;quot; valign=&amp;quot;top&amp;quot; style=&amp;quot;color:darkblue&amp;quot;|Broadcaster&lt;br /&gt;
|Participates in the TMB Radio shenanigans. &lt;br /&gt;
|-&lt;br /&gt;
!align=&amp;quot;left&amp;quot; valign=&amp;quot;top&amp;quot; style=&amp;quot;color:darkblue&amp;quot;|Pipecock&lt;br /&gt;
|There is only one Nifty Pipecock.&lt;br /&gt;
|-&lt;br /&gt;
!align=&amp;quot;left&amp;quot; valign=&amp;quot;top&amp;quot; style=&amp;quot;color:purple&amp;quot;|VIP&lt;br /&gt;
|Awarded to a user in recognition of an outstanding contribution to TMB. Our way of saying you're pretty bloody awesome.&lt;br /&gt;
|-&lt;br /&gt;
!align=&amp;quot;left&amp;quot; valign=&amp;quot;top&amp;quot; style=&amp;quot;color:red&amp;quot;|Administrator&lt;br /&gt;
|Can do just about anything.&lt;br /&gt;
|-&lt;br /&gt;
!align=&amp;quot;left&amp;quot; valign=&amp;quot;top&amp;quot; style=&amp;quot;color:red&amp;quot;|SysOp&lt;br /&gt;
|coptang (site owner). RIP.&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Hey! I've seen a Resident with less than 100GB uploaded!===&lt;br /&gt;
&lt;br /&gt;
Members who make an outstanding contribution to The Mixing Bowl may be promoted to Resident before they meet all the normal criteria.&lt;br /&gt;
&lt;br /&gt;
===How do I add an avatar to my profile?===&lt;br /&gt;
&lt;br /&gt;
You can set your avatar from your [https://themixingbowl.org/my/prefs/ Preferences] page.&lt;br /&gt;
&lt;br /&gt;
Select the image you wish to use as you avatar and the click &amp;quot;Submit changes&amp;quot; at the bottom of the page. The site accepts JPEG, PNG and GIF image types and they are resized automatically to the appropriate size for the forum. You can upload files up to 2MB in size, if the original is larger than this you will need to manually reduce it's size before uploading. GIFs are not resized and there is a 100KB file size limit for these.&lt;br /&gt;
&lt;br /&gt;
===Can I become an admin?===&lt;br /&gt;
&lt;br /&gt;
No. I'm afraid getting to be an admin by asking is not possible on themixingbowl.&lt;br /&gt;
&lt;br /&gt;
==Uploading==&lt;br /&gt;
&lt;br /&gt;
===Why can't I upload torrents?===&lt;br /&gt;
&lt;br /&gt;
Only specially authorised users ('''&amp;lt;span style=&amp;quot;color:#00C&amp;quot;&amp;gt;Uploaders&amp;lt;/span&amp;gt;''') have permission to upload torrents.&lt;br /&gt;
&lt;br /&gt;
===What criteria must I meet before I can join the Uploader team?===&lt;br /&gt;
&lt;br /&gt;
Any member can become an uploader. In order to join the uploader group [https://themixingbowl.org/tickets/requestuploader read the instructions and fill out the form on the Uploader Request page] to signify that you've read the rules about what kind of torrents are allowed ('''no commercial releases!''').&lt;br /&gt;
&lt;br /&gt;
Once you've done this an admin will add you to the uploaders group. This is a manual process so please allow a few days for this to happen. You will be sent a PM to confirm when your account has been upgraded.&lt;br /&gt;
&lt;br /&gt;
===General Uploaders Etiquette (Uploading Guidelines)===&lt;br /&gt;
&lt;br /&gt;
Maintain excellence at all times. For a more in-depth discussion of what this involves, see the [[Uploading Guidelines]] page.&lt;br /&gt;
&lt;br /&gt;
===How should I title my torrent? (Torrent Naming Guidelines)===&lt;br /&gt;
&lt;br /&gt;
This is covered in the [[Uploading Guidelines]].&lt;br /&gt;
&lt;br /&gt;
===Why have I been demoted back to a user from uploader status?===&lt;br /&gt;
&lt;br /&gt;
There are a number of reasons you might have been demoted to user from uploader or resident. These include (but are not limited to):&lt;br /&gt;
&lt;br /&gt;
*Uploading commercial releases&lt;br /&gt;
*Uploading stream rips&lt;br /&gt;
*Persistently uploading poorly classified torrents&lt;br /&gt;
*Uploads not following the naming guidelines &lt;br /&gt;
&lt;br /&gt;
===What will happen if I ignore any of the uploading guidelines?===&lt;br /&gt;
&lt;br /&gt;
The upload will be deleted, and if you do it persistently you will be demoted.  If you persistently upload commercial releases or argue with an admin you will probably be banned as well. &lt;br /&gt;
&lt;br /&gt;
===Can I upload the new blahblahblah music video?===&lt;br /&gt;
&lt;br /&gt;
No, music video's are treated the same as single songs and are not allowed.  vj mixes, mashups etc are normally ok, if you are in any doubt at all [https://themixingbowl.org/tickets/messageadmin ask] before uploading.&lt;br /&gt;
&lt;br /&gt;
===Can I upload your torrents to other trackers and/or share them with my friends?===&lt;br /&gt;
&lt;br /&gt;
No. Each torrent you download from here contains a unique ID linking it to your account. If other people try to download using the same torrent they will mess up your stats, which could result in you getting banned.&lt;br /&gt;
&lt;br /&gt;
However, the files you download from us are yours to do as you please. You can always create another torrent, pointing to some other tracker, and upload it to the site of your choice. We only ask you to give credit where it's due.&lt;br /&gt;
&lt;br /&gt;
===How do I create a torrent?===&lt;br /&gt;
&lt;br /&gt;
See the [[:Category:Bittorrent_Client_Guide|Bittorrent client guide]] page for guides on how to create torrents.&lt;br /&gt;
&lt;br /&gt;
==Stats==&lt;br /&gt;
&lt;br /&gt;
===Most common reason for stats not updating===&lt;br /&gt;
&lt;br /&gt;
*The user is cheating. (a.k.a. &amp;quot;Summary Ban&amp;quot;)&lt;br /&gt;
*The server is overloaded and unresponsive. Just try to keep the session open until the server responds again. (Flooding the server with consecutive manual updates is not recommended.)&lt;br /&gt;
*You are using a faulty client. If you want to use an experimental or CVS version you do it at your own risk.&lt;br /&gt;
&lt;br /&gt;
===Best practices===&lt;br /&gt;
&lt;br /&gt;
*If a torrent you are currently leeching/seeding is not listed on your profile, just wait or force a manual update.&lt;br /&gt;
*Make sure you exit your client properly, so that the tracker receives &amp;quot;event=completed&amp;quot;.&lt;br /&gt;
*If the tracker is down, do not stop seeding. As long as the tracker is back up before you exit the client the stats should update properly.&lt;br /&gt;
&lt;br /&gt;
===May I use any bittorrent client?===&lt;br /&gt;
&lt;br /&gt;
NO. See the [[client whitelist]] for details of supported clients.&lt;br /&gt;
&lt;br /&gt;
===Why is a torrent I'm leeching/seeding listed several times in my profile?===&lt;br /&gt;
&lt;br /&gt;
If for some reason (e.g. pc crash, or frozen client) your client exits improperly and you restart it, it will have a new peer_id, so it will show as a new torrent. The old one will never receive a &amp;quot;event=completed&amp;quot; or &amp;quot;event=stopped&amp;quot; and will be listed until some tracker timeout. Just ignore it, it will eventually go away.&lt;br /&gt;
&lt;br /&gt;
Another reason could be that you have given torrents you have downloaded from this site to other people. Each .torrent file you download contains a unique ID that links it to your account. For this reason sharing .torrent files you have downloaded from The Mixing Bowl is forbidden.&lt;br /&gt;
&lt;br /&gt;
===I've finished or cancelled a torrent. Why is it still listed in my profile?===&lt;br /&gt;
&lt;br /&gt;
Some clients, notably TorrentStorm and Nova Torrent, do not report properly to the tracker when cancelling or finishing a torrent. In that case the tracker will keep waiting for some message - and thus listing the torrent as seeding or leeching - until some timeout occurs. Just ignore it, it will eventually go away.&lt;br /&gt;
&lt;br /&gt;
===Multiple IPs (Can I login from different computers?)===&lt;br /&gt;
&lt;br /&gt;
Yes, the tracker is now capable of following sessions from different IPs for the same user. A torrent is associated with the user when it starts, and only at that moment is the IP relevant. So if you want to seed/leech from computer A and computer B with the same account you should access the site from computer A, start the torrent there, and then repeat both steps from computer B (not limited to two computers or to a single torrent on each, this is just the simplest example). You do not need to login again when closing the torrent.&lt;br /&gt;
&lt;br /&gt;
===How does NAT/ICS change the picture?===&lt;br /&gt;
&lt;br /&gt;
All torrents are tracker on a per-client basis. Any number of user accounts and/or Bit Torrent clients can report from the same IP address and account stats will be updated correctly.&lt;br /&gt;
&lt;br /&gt;
===How do I improve my ratio?===&lt;br /&gt;
&lt;br /&gt;
Read the [[One Stop Ratio Shop]] and keep an eye out for [[FAQ#Freeleech|Freeleech]]'s.&lt;br /&gt;
&lt;br /&gt;
==Downloading==&lt;br /&gt;
&lt;br /&gt;
===Why did an active torrent suddenly disappear?===&lt;br /&gt;
&lt;br /&gt;
The most likely reasons are that the uploader deleted it because there was a problem with the release, or an admin/moderator deleted it because it broke the site [[rules]].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;reseed&amp;quot; /&amp;gt;&lt;br /&gt;
===How do I resume a broken download or reseed something?===&lt;br /&gt;
&lt;br /&gt;
Download the original .torrent file from server after that open it in you Bit Torrent client and browse the folder of the torrent you are downloading/reseeding.&lt;br /&gt;
&lt;br /&gt;
===What are these &amp;quot;a piece has failed an hash check&amp;quot; messages?===&lt;br /&gt;
&lt;br /&gt;
Bittorrent clients check the data they receive for integrity. When a piece fails this check it is automatically re-downloaded. Occasional hash fails are a common occurrence, and you shouldn't worry.&lt;br /&gt;
&lt;br /&gt;
Some clients have an (advanced) option/preference to &amp;quot;kick/ban&amp;quot; clients that send you bad data or similar. It should be turned on, since it makes sure that if a peer repeatedly sends you pieces that fail the hash check it will be ignored in the future.&lt;br /&gt;
&lt;br /&gt;
===You have the torrent I want, but there's no seeds so I can't download it!===&lt;br /&gt;
&lt;br /&gt;
It may be possible still to download, first of all - just download it and leave it running. There's possibly seeds out there but don't know anyone wants the torrents, at least if you download it you have a chance. If this fails, you can request a reseed. A link will appear on torrents which are eligable for reseed. See [[reseeds]] for more details.&lt;br /&gt;
&lt;br /&gt;
===The torrent is supposed to be 100MB. How come I downloaded 120MB?===&lt;br /&gt;
&lt;br /&gt;
See the hash fails topic. If your client receives bad data it will have to redownload it, therefore the total downloaded may be larger than the torrent size. Make sure the &amp;quot;kick/ban&amp;quot; option is turned on to minimize the extra downloads.&lt;br /&gt;
&lt;br /&gt;
===What ports can I use with my Bit Torrent client===&lt;br /&gt;
&lt;br /&gt;
Due to the widespread use of Deep Packet Inspection by ISPs the choice of a non standard port to use for Bit Torrent connections no longer improves transfer speeds. The Mixing Bowl does not restrict the usage of any ports for clients however it does recommend the use of [[Protocol_Encryption|protocol encryption]]. Please consult the manual for you client for details on enabling protocol encryption.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;megatorrents&amp;quot;&amp;gt;&lt;br /&gt;
===Why do I get a &amp;quot;You need a better ratio to download megatorrents!&amp;quot; or &amp;quot;This torrent is too big for you to download&amp;quot; message?===&lt;br /&gt;
In order to prevent members from digging a big hole in their ratio they can't get out of, they are prevented from downloading any torrent over 1GB.&lt;br /&gt;
&lt;br /&gt;
You can only download megatorrents with a ratio better than 0.75. If the size of torrent is more than you have downloaded, you must have enough uploaded, such that downloading the torrent will not drop your ratio below 1.0. For example, a 10G torrent can be downloaded by a user with a ratio of 0.8 and 12G downloaded but could not be downloaded by a user with a ratio of 0.8 and 9G downloaded.&lt;br /&gt;
&lt;br /&gt;
===Why do I get a &amp;quot;Your downloads are disabled until further notice&amp;quot; message?===&lt;br /&gt;
An admin may decide to disable your downloads. If this happens you should seed everything that you have snatched, afterwards you can visit the [[One_Stop_Ratio_Shop#Bonus_Points]] page and restore your downloads by purchasing additional download slots.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;longfilenames&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===What does the message &amp;quot;torrent has long filenames&amp;quot; mean?===&lt;br /&gt;
Some OS's (notably Windows) have issues when the combined path to a file exceeds certain lengths. If you see this message, be sure to download this torrent to a directory with a short path, e.g. &amp;lt;code&amp;gt;D:\Music&amp;lt;/code&amp;gt; rather than &amp;lt;code&amp;gt;D:\My music downloads\themixingbowl.org\Radio shows and other mixes\&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We do prevent uploads with exceptionally long paths, however since we are an archive site there are a number of uploads existing that do have long filenames, so caution should be taken with these.&lt;br /&gt;
&lt;br /&gt;
==How can I improve my download speed?==&lt;br /&gt;
&lt;br /&gt;
===Do not immediately jump on new torrents===&lt;br /&gt;
&lt;br /&gt;
The download speed mostly depends on the seeder-to-leecher ratio (SLR). Poor download speed is mainly a problem with new and very popular torrents where the SLR is low.&lt;br /&gt;
&lt;br /&gt;
(Proselytising sidenote: make sure you remember that you did not enjoy the low speed. Seed so that others will not endure the same.)&lt;br /&gt;
&lt;br /&gt;
The best speeds will be found around the half-life of a torrent, when the SLR will be at its highest. (The downside is that you will not be able to seed so much. It's up to you to balance the pros and cons of this.)&lt;br /&gt;
&lt;br /&gt;
===Limit your upload speed===&lt;br /&gt;
&lt;br /&gt;
The upload speed affects the download speed in essentially two ways:&lt;br /&gt;
&lt;br /&gt;
*Bittorrent peers tend to favour those other peers that upload to them. This means that if A and B are leeching the same torrent and A is sending data to B at high speed then B will try to reciprocate. So due to this effect high upload speeds lead to high download speeds.&lt;br /&gt;
*Due to the way TCP works, when A is downloading something from B it has to keep telling B that it received the data sent to him. (These are called acknowledgements - ACKs -, a sort of &amp;quot;got it!&amp;quot; messages). If A fails to do this then B will stop sending data and wait. If A is uploading at full speed there may be no bandwidth left for the ACKs and they will be delayed. So due to this effect excessively high upload speeds lead to low download speeds.&lt;br /&gt;
&lt;br /&gt;
The full effect is a combination of the two. The upload should be kept as high as possible while allowing the ACKs to get through without delay. '''A good thumb rule is keeping the upload at about 80% of the theoretical upload speed.''' You will have to fine tune yours to find out what works best for you. (Remember that keeping the upload high has the additional benefit of helping with your ratio.)&lt;br /&gt;
&lt;br /&gt;
===Limit the number of simultaneous connections===&lt;br /&gt;
&lt;br /&gt;
Some operating systems (like Windows 9x) do not deal well with a large number of connections, and may even crash. Also some home routers (particularly when running NAT and/or firewall with stateful inspection services) tend to become slow or crash when having to deal with too many connections. There are no fixed values for this, you may try 60 or 100 and experiment with the value. Note that these numbers are additive, if you have two instances of a client running the numbers add up.&lt;br /&gt;
&lt;br /&gt;
===Limit the number of simultaneous uploads===&lt;br /&gt;
&lt;br /&gt;
Isn't this the same as above? No. Connections limit the number of peers your client is talking to and/or downloading from. Uploads limit the number of peers your client is actually uploading to. The ideal number is typically much lower than the number of connections, and highly dependent on your (physical) connection.&lt;br /&gt;
&lt;br /&gt;
===Just give it some time===&lt;br /&gt;
&lt;br /&gt;
As explained above peers favour other peers that upload to them. When you start leeching a new torrent you have nothing to offer to other peers and they will tend to ignore you. This makes the starts slow, in particular if, by change, the peers you are connected to include few or no seeders. The download speed should increase as soon as you have some pieces to share.&lt;br /&gt;
&lt;br /&gt;
===Why is my internet so slow while leeching?===&lt;br /&gt;
&lt;br /&gt;
Your internet bandwidth is always finite. If you are a peer in a fast torrent it may saturate your connection, and your browsing will suffer. From your client you can limit the download and upload speed to mitigate this.&lt;br /&gt;
&lt;br /&gt;
Browsing was used just as an example, the same would apply to gaming, IMing, etc...&lt;br /&gt;
&lt;br /&gt;
==Proxy/VPN use==&lt;br /&gt;
&lt;br /&gt;
===Site===&lt;br /&gt;
&lt;br /&gt;
If you wish to use a VPN to browse the site, it must be a paid for service that allows you to specify a server/region (or be based in a static location).&lt;br /&gt;
You may also browse the site using your seedbox or private server.&lt;br /&gt;
You should always let staff know by sending a [https://themixingbowl.org/contact/us staff PM] before using the VPN. If possible, please include what service it is, the location, and IP(s).&lt;br /&gt;
Tor, public proxies, and other freely available services are strictly prohibited and your account is likely to be disabled if you use them.&lt;br /&gt;
&lt;br /&gt;
===Tracker===&lt;br /&gt;
&lt;br /&gt;
It is permissible to use almost any type of connection - including public proxies - for P2P bittorrent traffic. Users can seed and download torrent pieces, and announce data to the tracker, from any connection they wish - with the exception of Tor which is forbidden.&lt;br /&gt;
&lt;br /&gt;
It is worth noting that due to a combination of factors (increased latency, worse peering, bottlenecked traffic, inability to port forward, etc), users seeding from behind a proxy could see their upload speeds/net upload traffic decrease.&lt;br /&gt;
&lt;br /&gt;
==Freeleech==&lt;br /&gt;
&lt;br /&gt;
===What is Freeleech?===&lt;br /&gt;
Freeleech is where your ratio doesn't take a hit for downloading a torrent, but your ratio benefits from the uploads.  They are a useful way of improving your ratio. Any user, regardless of current ratio and downloaded amount, can download these freeleech torrents; all restrictions are removed.&lt;br /&gt;
&lt;br /&gt;
===Where can I find TMB torrents that are Freeleech?===&lt;br /&gt;
&lt;br /&gt;
* All [https://tmb.dj/forum/view/21/ Readers Mixes] are Freeleech.&lt;br /&gt;
* TMB has regular '''Freeleech of the Week''' picks ('''FLOTW''') that highlight a member-suggested [https://tmb.dj/forum/view/22/ Megatorrent].  These are announced as news items, so keep your eyes open.&lt;br /&gt;
* All current Freeleech torrents can be found via the [https://tmb.dj/torrent/advancedsearch/ Advanced Search] page by ticking the &amp;quot;'''Free'''&amp;quot; checkbox.&lt;br /&gt;
&lt;br /&gt;
===How can I suggest a Megatorrent for Freeleech?===&lt;br /&gt;
&lt;br /&gt;
* Make suggestions for future Megatorrents using the [https://themixingbowl.org/bonus/torrent/ Nominate a torrent] fucntion.&lt;br /&gt;
&lt;br /&gt;
==What if I can't find the answer to my problem here?==&lt;br /&gt;
&lt;br /&gt;
===You can try these:===&lt;br /&gt;
&lt;br /&gt;
Post in the [https://www.themixingbowl.org/forum/ forums], by all means. You'll find they are usually a friendly and helpful place, provided you follow a few basic guidelines:&lt;br /&gt;
&lt;br /&gt;
*Make sure your problem is not really in this FAQ. There's no point in posting just to be sent back here.&lt;br /&gt;
*Before posting read the sticky topics (the ones at the top). Many times new information that still hasn't been incorporated in the FAQ can be found there.&lt;br /&gt;
*Make just one thread for your issue, an admin can move your thread to the right forum so you don't need to post in them all.&lt;br /&gt;
*Help us in helping you. Do not just say &amp;quot;it doesn't work!&amp;quot;. Provide details so that we don't have to guess or waste time asking. What client do you use? What's your OS? What's your network setup? What's the exact error message you get, if any? What are the torrents you are having problems with? The more you tell the easiest it will be for us, and the more probable your post will get a reply.&lt;br /&gt;
*And needless to say: be polite. Demanding help rarely works, asking for it usually does the trick.&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=FFmpeg&amp;diff=4745</id>
		<title>FFmpeg</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=FFmpeg&amp;diff=4745"/>
		<updated>2025-06-17T14:35:54Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: Opus fade scripts added&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''FFmpeg''' is the leading multimedia framework, able to decode, encode, transcode, mux, remux, demux, stream, filter and play pretty much anything that humans and machines have created. It supports the most obscure ancient formats up to the cutting edge. No matter if they were designed by some standards committee, the community or a corporation.&lt;br /&gt;
&lt;br /&gt;
*https://www.ffmpeg.org/&lt;br /&gt;
*https://ffmpeg.org/download.html &amp;gt; [https://www.gyan.dev/ffmpeg/builds/ffmpeg-git-full.7z ffmpeg full Windows build direct download]&lt;br /&gt;
&lt;br /&gt;
==Audio Editing Scripts==&lt;br /&gt;
&lt;br /&gt;
The instructions and scripts have been written in and tested on the Windows operating system. &lt;br /&gt;
&lt;br /&gt;
===AAC Fades===&lt;br /&gt;
&lt;br /&gt;
Unfortunately, the [[AAC]] format cannot have fades applied to it in a [[Lossless|lossless]] way. Therefore, when applying a fade-in or a fade-out to AAC files the audio will be [[Lossy|lossy]] [[transcoding|transcoded]]. Luckily, lossy transcoding AAC files is far [https://bernholdtech.blogspot.com/2013/03/Nine-different-audio-encoders-100-pass-recompression-test.html less destructive] than other lossy formats such as [[MP3]]s. However, it is still highly recommended to only apply fades to an AAC file that has been cut out of the main AAC file, which can then be merged back with the main AAC file once the fades have been applied. This will minimise the lossy transcoding and keep it to the fade-in and fade-out sections. &lt;br /&gt;
&lt;br /&gt;
====Use-case Scenario====&lt;br /&gt;
&lt;br /&gt;
*Complete all edits of your AAC file in [[MP3DirectCut]] and leave it in there. &lt;br /&gt;
**'''Fade-in''':&lt;br /&gt;
***Cut out the fade-in section: start of file for ''d'' seconds. For example: if you want the fade-in to be 5 seconds long, then cut out the first 5 seconds. It doesn't have to be exactly 5 seconds, but must not be less otherwise the sound might &amp;quot;jump up&amp;quot; when merged back into the main file.&lt;br /&gt;
****Process this ''to-be-faded-in.aac'' file using the fade-in script below.&lt;br /&gt;
*****Open the resulting ''faded-in.aac'' file using another MP3DirectCut instance, select all the audio, copy and paste into the start of the main/original AAC file that is still open in MP3DirectCut. Thus, you've now replaced the original starting audio with the new faded-in audio.&lt;br /&gt;
**'''Fade-out''':&lt;br /&gt;
***Cut out the fade-out section: end of file for ''d'' seconds. For example: if you want the fade-out to be 7 seconds long, then cut out the last 7 seconds. It doesn't have to be exactly 7 seconds, but is best to not be less otherwise the sound doesn't completely fade-out to nothing. &lt;br /&gt;
****Process this ''to-be-faded-out.aac'' file using the fade-out script below.&lt;br /&gt;
*****Open the resulting ''faded-out.aac'' file using another MP3DirectCut instance, select all the audio, copy and paste into the end of the main/original AAC file that is still open in MP3DirectCut. Thus, you've now replaced the original ending audio with the new faded-out audio.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Making these small cuts, processing the fades, then copying &amp;amp; pasting back in, is the best way to minimise negatively impacting the majority of the audio with lossy transcoding.&lt;br /&gt;
&lt;br /&gt;
To note: both scripts will output aac files with a 320kbps bitrate. This can be changed if necessary by altering the ''-b:a'' number.&lt;br /&gt;
&lt;br /&gt;
====AAC Fade-In====&lt;br /&gt;
&lt;br /&gt;
Copy and paste the below text into a text file and rename it '''aac-fade-in.cmd'''&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;:: Name:     aac-fade-in.cmd&lt;br /&gt;
:: Purpose:  Configures ffmpeg to amend the volume to a fade-in - **LOSSY**&lt;br /&gt;
:: Usage:    drag and drop aac file onto this script&lt;br /&gt;
:: Author:   jaybeee @ themixingbowl.org&lt;br /&gt;
:: Revision: Feb 2021 - v0.1&lt;br /&gt;
&lt;br /&gt;
@ECHO OFF&lt;br /&gt;
&lt;br /&gt;
SETLOCAL ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION&lt;br /&gt;
&lt;br /&gt;
:: variables begin with v&lt;br /&gt;
&lt;br /&gt;
:: set name of this script without file extension&lt;br /&gt;
SET vMe=%~n0&lt;br /&gt;
&lt;br /&gt;
:: set name of the parent directory where this script resides&lt;br /&gt;
SET vParent=%~dp0&lt;br /&gt;
&lt;br /&gt;
:: set ffmpeg path location if not already in WINDOWS PATH ** CHANGE ME **&lt;br /&gt;
::SET vffmpeg=&amp;quot;C:\PATH\TO\FFMPEG.EXE&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: Ask the user to enter the duration of the fade-in in seconds&lt;br /&gt;
echo ** Enter duration of fade-in in ss.mmm format when prompted **&lt;br /&gt;
SET /p vSss=&amp;quot;Fade-in duration (ss.mmm): &amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: call ffmpeg to fade in the first d seconds starting at ss&lt;br /&gt;
:: we then have to lossy transcode the audio&lt;br /&gt;
MKDIR aac&lt;br /&gt;
FOR %%f IN (%*) DO ffmpeg -i %%f -af afade=t=in:ss=0:d=%vSss% -b:a 320k &amp;quot;aac\faded-in-%%~nf.aac&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: Finish&lt;br /&gt;
ECHO Finished aac fade-in&lt;br /&gt;
&lt;br /&gt;
:: pause can be used to view the extraction details&lt;br /&gt;
PAUSE&lt;br /&gt;
&lt;br /&gt;
:END&lt;br /&gt;
ENDLOCAL&lt;br /&gt;
ECHO ON&lt;br /&gt;
@EXIT /B 0&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====AAC Fade-Out====&lt;br /&gt;
&lt;br /&gt;
Copy and paste the below text into a text file and rename it '''aac-fade-out.cmd'''&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;:: Name:     aac-fade-out.cmd&lt;br /&gt;
:: Purpose:  Configures ffmpeg to amend the volume to a fade-out - **LOSSY**&lt;br /&gt;
:: Usage:    drag and drop aac file onto this script&lt;br /&gt;
:: Author:   jaybeee @ themixingbowl.org&lt;br /&gt;
:: Revision: Feb 2021 - v0.1&lt;br /&gt;
&lt;br /&gt;
@ECHO OFF&lt;br /&gt;
&lt;br /&gt;
SETLOCAL ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION&lt;br /&gt;
&lt;br /&gt;
:: variables begin with v&lt;br /&gt;
&lt;br /&gt;
:: set name of this script without file extension&lt;br /&gt;
SET vMe=%~n0&lt;br /&gt;
&lt;br /&gt;
:: set name of the parent directory where this script resides&lt;br /&gt;
SET vParent=%~dp0&lt;br /&gt;
&lt;br /&gt;
:: set ffmpeg path location if not already in WINDOWS PATH ** CHANGE ME **&lt;br /&gt;
::SET vffmpeg=&amp;quot;C:\PATH\TO\FFMPEG.EXE&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: Ask the user to enter the duration of the fade-in in seconds&lt;br /&gt;
echo ** Enter duration of fade-out in ss.mmm format when prompted **&lt;br /&gt;
SET /p vEss=&amp;quot;Fade-out duration Time (ss.mmm): &amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: call ffmpeg to fade-out the first d seconds starting at ss&lt;br /&gt;
:: we then have to lossy transcode the audio&lt;br /&gt;
MKDIR aac&lt;br /&gt;
FOR %%f IN (%*) DO ffmpeg -i %%f -af afade=t=out:st=0:d=%vEss% -b:a 320k &amp;quot;aac\faded-out-%%~nf.aac&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: Finish&lt;br /&gt;
ECHO Finished aac fade-out&lt;br /&gt;
&lt;br /&gt;
:: pause can be used to view the extraction details&lt;br /&gt;
PAUSE&lt;br /&gt;
&lt;br /&gt;
:END&lt;br /&gt;
ENDLOCAL&lt;br /&gt;
ECHO ON&lt;br /&gt;
@EXIT /B 0&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Extract Opus from webm===&lt;br /&gt;
&lt;br /&gt;
Copy and paste the below text into a text file and rename it '''webm2opus.cmd'''&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;:: Name:     webm2opus.cmd&lt;br /&gt;
:: Purpose:  Configures ffmpeg to extract opus from webm&lt;br /&gt;
:: Author:   jaybeee @ themixingbowl.org&lt;br /&gt;
:: Revision: March 2022 - v0.2&lt;br /&gt;
&lt;br /&gt;
@ECHO OFF&lt;br /&gt;
&lt;br /&gt;
SETLOCAL ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION&lt;br /&gt;
&lt;br /&gt;
:: variables begin with v&lt;br /&gt;
&lt;br /&gt;
:: set name of this script without file extension&lt;br /&gt;
SET vMe=%~n0&lt;br /&gt;
&lt;br /&gt;
:: set name of the parent directory where this script resides&lt;br /&gt;
SET vParent=%~dp0&lt;br /&gt;
&lt;br /&gt;
:: set location of ffmpeg ** CHANGE ME **&lt;br /&gt;
::SET vffmpeg=&amp;quot;C:\PATH\TO\FFMPEG.exe&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: call ffmpeg to extract opus file(s) from webm file(s) that have been dropped onto it save in opus directory&lt;br /&gt;
MKDIR opus&lt;br /&gt;
FOR %%f IN (%*) DO ffmpeg -i %%f -vn -acodec copy &amp;quot;opus\%%~nf.opus&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: Finish&lt;br /&gt;
ECHO Finished opus extraction&lt;br /&gt;
&lt;br /&gt;
:: pause can be used to view the extraction details&lt;br /&gt;
PAUSE&lt;br /&gt;
&lt;br /&gt;
:END&lt;br /&gt;
ENDLOCAL&lt;br /&gt;
ECHO ON&lt;br /&gt;
@EXIT /B 0&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Opus Fade In ===&lt;br /&gt;
&lt;br /&gt;
Just like the AAC format, Opus also cannot losslessly apply fades. Therefore, when applying a fade-in or a fade-out to Opus files the audio will be lossy transcoded. Luckily, lossy transcoding Opus files is far less destructive than other lossy formats such as MP3s.&lt;br /&gt;
&lt;br /&gt;
Copy and paste the below text into a text file and rename it '''opus-fade-in.cmd'''&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;:: Name:     opus-fade-in.cmd&lt;br /&gt;
:: Purpose:  Configures ffmpeg to amend the volume to a fade-in - **LOSSY**&lt;br /&gt;
:: Usage:    drag and drop opus file onto this script&lt;br /&gt;
:: Author:   jaybeee @ themixingbowl.org&lt;br /&gt;
:: Revision: June 2025 - v0.1&lt;br /&gt;
&lt;br /&gt;
@ECHO OFF&lt;br /&gt;
&lt;br /&gt;
SETLOCAL ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION&lt;br /&gt;
&lt;br /&gt;
:: variables begin with v&lt;br /&gt;
&lt;br /&gt;
:: set name of this script without file extension&lt;br /&gt;
SET vMe=%~n0&lt;br /&gt;
&lt;br /&gt;
:: set name of the parent directory where this script resides&lt;br /&gt;
SET vParent=%~dp0&lt;br /&gt;
&lt;br /&gt;
:: set ffmpeg path location if not already in WINDOWS PATH ** CHANGE ME **&lt;br /&gt;
SET vffmpeg=&amp;quot;C:\PATH\TO\FFMPEG.EXE&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: Ask the user to enter the duration of the fade-in in seconds&lt;br /&gt;
echo ** Enter duration of fade-in in ss.mmm format when prompted **&lt;br /&gt;
SET /p vSss=&amp;quot;Fade-in duration (ss.mmm): &amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: call ffmpeg to fade in the first d seconds starting at ss&lt;br /&gt;
:: we then have to lossy transcode the audio&lt;br /&gt;
:: the 140k refers to bitrate and can be changed to whatever you like&lt;br /&gt;
:: Opus encoding is vbr by default&lt;br /&gt;
MKDIR opus&lt;br /&gt;
FOR %%f IN (%*) DO ffmpeg -i %%f -af afade=t=in:ss=0:d=%vSss% -c:a libopus -b:a 140k &amp;quot;opus\fade-in-%%~nf.opus&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: Finish&lt;br /&gt;
ECHO Finished opus fade-in&lt;br /&gt;
&lt;br /&gt;
:: pause can be used to view the extraction details&lt;br /&gt;
PAUSE&lt;br /&gt;
&lt;br /&gt;
:END&lt;br /&gt;
ENDLOCAL&lt;br /&gt;
ECHO ON&lt;br /&gt;
@EXIT /B 0 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Opus Fade Out ===&lt;br /&gt;
&lt;br /&gt;
Copy and paste the below text into a text file and rename it '''opus-fade-out.cmd'''&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;:: Name:     opus-fade-out.cmd&lt;br /&gt;
:: Purpose:  Configures ffmpeg to amend the volume to a fade-out - **LOSSY**&lt;br /&gt;
:: Usage:    drag and drop opus file onto this script&lt;br /&gt;
:: Author:   jaybeee @ themixingbowl.org&lt;br /&gt;
:: Revision: June 2025 - v0.1&lt;br /&gt;
&lt;br /&gt;
@ECHO OFF&lt;br /&gt;
&lt;br /&gt;
SETLOCAL ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION&lt;br /&gt;
&lt;br /&gt;
:: variables begin with v&lt;br /&gt;
&lt;br /&gt;
:: set name of this script without file extension&lt;br /&gt;
SET vMe=%~n0&lt;br /&gt;
&lt;br /&gt;
:: set name of the parent directory where this script resides&lt;br /&gt;
SET vParent=%~dp0&lt;br /&gt;
&lt;br /&gt;
:: set ffmpeg path location if not already in WINDOWS PATH ** CHANGE ME **&lt;br /&gt;
SET vffmpeg=&amp;quot;C:\PATH\TO\FFMPEG.EXE&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: Ask the user to enter the duration of the fade-out in seconds&lt;br /&gt;
echo ** Enter duration of fade-out in ss.mmm format when prompted **&lt;br /&gt;
SET /p vEss=&amp;quot;Fade-out duration Time (ss.mmm): &amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: call ffmpeg to fade-out the first d seconds starting at ss&lt;br /&gt;
:: we then have to lossy transcode the audio&lt;br /&gt;
:: the 140k refers to bitrate and can be changed to whatever you like&lt;br /&gt;
:: Opus encoding is vbr by default&lt;br /&gt;
MKDIR opus&lt;br /&gt;
FOR %%f IN (%*) DO ffmpeg -i %%f -af afade=t=out:st=0:d=%vEss% -c:a libopus -b:a 140k &amp;quot;opus\fade-out-%%~nf.opus&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: Finish&lt;br /&gt;
ECHO Finished opus fade-out&lt;br /&gt;
&lt;br /&gt;
:: pause can be used to view the extraction details&lt;br /&gt;
PAUSE&lt;br /&gt;
&lt;br /&gt;
:END&lt;br /&gt;
ENDLOCAL&lt;br /&gt;
ECHO ON&lt;br /&gt;
@EXIT /B 0&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[category:Audio Tools]]&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=Rules&amp;diff=4744</id>
		<title>Rules</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=Rules&amp;diff=4744"/>
		<updated>2025-05-10T11:05:48Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: Client whitelist link added to uploading rules&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
{{Policy}}&lt;br /&gt;
&lt;br /&gt;
==General rules - Breaking these rules can and will get you banned!==&lt;br /&gt;
&lt;br /&gt;
#Be excellent to each other.&lt;br /&gt;
#Do not defy the admins' expressed wishes.&lt;br /&gt;
#Keep your overall ratio as close to 1.0 as possible.&lt;br /&gt;
&lt;br /&gt;
==General forum guidelines - Please try to follow these guidelines==&lt;br /&gt;
&lt;br /&gt;
#No moaning, no trolling, no shit-posting, no posting in bad faith.&lt;br /&gt;
#No language other than English in the forums.&lt;br /&gt;
#Do not request/offer/trade invites to other bittorrent trackers in the public forums.&lt;br /&gt;
#Please read the [[FAQ]] before asking any questions.&lt;br /&gt;
&lt;br /&gt;
==Uploading rules - Torrents violating these rules may be deleted without notice==&lt;br /&gt;
&lt;br /&gt;
#All uploads must include the mixingbowl [https://www.themixingbowl.org/static/www.themixingbowl.org.nfo nfo].&lt;br /&gt;
#Only '''non-commercial audio and video''', i.e. nothing that has been '''commercially licensed''' that you can buy in the shops or online.&lt;br /&gt;
#Allowed audio uploads include: DJ Mixes, mixtapes, broadcast radio, podcasts, and live recordings. We do not allow broadcasts of commercial releases played in their entirety.&lt;br /&gt;
#Video uploads must either be of a broadcast by an artist or be documentaries about an artist or a genre.&lt;br /&gt;
#Any uploads that the admins feel are unsuitable for the site will be removed without warning. [https://themixingbowl.org/tickets/messageadmin Ask an admin] before uploading if you're not sure.&lt;br /&gt;
#If you have the tracklist, post it in the Description part of the upload form.&lt;br /&gt;
#Make sure your torrents are well-seeded at least until there are above 5 other seeds.&lt;br /&gt;
#If you have something interesting that somehow violate these rules, [https://themixingbowl.org/tickets/messageadmin ask an admin] and we '''might''' make an exception.&lt;br /&gt;
#Adhere to all of the [[Uploading_Guidelines | Uploading Guidelines]]&lt;br /&gt;
#[[Client whitelist]]: Bittorrent clients we allow.&lt;br /&gt;
&lt;br /&gt;
==Avatar rules - Your avatar must adhere to these requirements==&lt;br /&gt;
&lt;br /&gt;
#'''Must be work safe'''; no nudity etc.&lt;br /&gt;
#GIFs must be less than 100KB in size&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=Main_Page&amp;diff=4743</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=Main_Page&amp;diff=4743"/>
		<updated>2025-05-10T11:03:57Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
==[https://themixingbowl.org themixingbowl.org]==&lt;br /&gt;
'''We intend to be the 1st stop for torrents for: The [[Essential Mix]], The [[Breezeblock]], [[Kiss FM]], [[XFM]], [[Gilles Peterson Worldwide|Worldwide]], [[BTTB]], [[One World]], [[Blue Room]], [[The Milk Run]], [[Solid Steel]], [[Annie On One]] and much more...'''&lt;br /&gt;
&lt;br /&gt;
'''If you like dance music, nightclubbing or anything related to: House, Trance, IDM, Breaks, Hard House, Techno, Drum &amp;amp; Bass, Hip-Hop, Big Beat, Trip-Hop, Turntablism or whatever spastic genre name is flavour of the month and haven't already [https://themixingbowl.org/signup.php signed up] then what are you waiting for?'''&lt;br /&gt;
&lt;br /&gt;
This Wiki is the best place to find information on anything TMB-related including [[bittorrent|how bittorrent works]], [[Digitising_cassette_tapes|ripping old tapes to mp3]] or [[:Category:Uploading Own Recordings|how to upload your own mixes and recordings]]. We have listings for many [[:Category:Radio Stations|international dance music radio stations]] amongst many other things. Please scroll down the page for more information. If you have a specific query, use the search box on the left of the page or check out the [[FAQ]] first. &lt;br /&gt;
&lt;br /&gt;
If you want to add or modify wiki topics please feel free to do so. Any TMB-related contribution is '''very welcome'''!&lt;br /&gt;
&lt;br /&gt;
==Audio Resources / Information==&lt;br /&gt;
&lt;br /&gt;
*[[Client whitelist]]: Bittorrent clients we allow.&lt;br /&gt;
*[[:Category:Audio Formats|Audio Formats]]: Information about many audio formats including [[MP3]], [[FLAC]], [[MP2]] and [[Ogg_Vorbis|Ogg Vorbis]].&lt;br /&gt;
*[[:Category:Audio Tools|Audio Tools]]: Lots of useful tools to create your own mixes, edit and tune audio files (with guides).&lt;br /&gt;
*[[Cue sheet]]: Everything about cue sheets (making them, using them, where to find them).&lt;br /&gt;
*[[:Category:Media Players|Media Players]]: Media players for your OS of choice.&lt;br /&gt;
*[[:Category:Music Genres|Music Genres]]: Need to find out about [[wrong music]] or [[DnB]]? You've come to the right place!&lt;br /&gt;
*[[:Category:Radio Shows|Radio Shows]]: Radio Shows with lots of details (time, broadcasting format,...)&lt;br /&gt;
*[[:Category:Radio Stations|Radio Stations]]: Want to listen to Dance radios worldwide? Want to record them? We have info on frequencies, bitrates, direct links to broadcasting schedules and internet streams...&lt;br /&gt;
&lt;br /&gt;
==Special TMB Guides==&lt;br /&gt;
&lt;br /&gt;
*[[One Stop Ratio Shop]]: Guide to maintaining a healthy ratio.&lt;br /&gt;
*[[:Category:Bittorrent Client Guide|Bittorrent Client Guides]]: HOWTO's for many different Bittorrent clients, their usage and specific optimization for TMB.&lt;br /&gt;
*[[Reseeding Torrents]]: How to reseed files already on your computer&lt;br /&gt;
*[[:Category:Uploading Own Recordings|Recording Shows From Radio]]: Guides on recording from radios and editing and digitising analogue sources.&lt;br /&gt;
*[[Preparing releases from internet-based broadcasts|Ripping Internet Streams]]: What you need to do to make the perfect internet radio stream rip.&lt;br /&gt;
*[[Get iplayer]]: Guide on how to capture BBC content&lt;br /&gt;
*[[Digitising cassette tapes]]: Guide on how to digitise / rip your cassette tapes.&lt;br /&gt;
&lt;br /&gt;
==TMB Social Life &amp;amp; Special Member Contributions==&lt;br /&gt;
&lt;br /&gt;
*[[TMBisms]]: The essential guide to TMB slang.&lt;br /&gt;
*[[:Category:TMB Town and City Guides|TMB Town and City Guides]]: Going somewhere? Meeting other TMB members? TMB-member guides for town and cities around the world.&lt;br /&gt;
*[[TMB Wallpaper]]: TMB User Artwork&lt;br /&gt;
*[[:Category:Live Events|Live Events]]: Dance music events around the world - [[Glade]], [[Global Gathering]], [[Love Parade]], [[Antiworld]], [[Springseven_Graz]], [[The Big Chill]]...&lt;br /&gt;
*[[TMB Gamers]]: TMB Gamers Section, Gamertags, Usernames, Teams, Clans, Etc&lt;br /&gt;
*[[TMB Tunes]]: Waffle-age and opinions on all things musical&lt;br /&gt;
*[[Customise TMB]]: User scripts and styles to customise the appearance of TMB in Firefox, Chrome and Opera&lt;br /&gt;
*[[Protecting your Privacy]] : A guide to VPNs and anonymity&lt;br /&gt;
*[[Internet Relay Chat]] : Come say hi in TMB's IRC room&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=Category:Bittorrent_Client_Guide&amp;diff=4742</id>
		<title>Category:Bittorrent Client Guide</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=Category:Bittorrent_Client_Guide&amp;diff=4742"/>
		<updated>2025-05-10T11:03:37Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: Client whitelist link added&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;HOWTO's of popular Bittorrent Clients go here. Creating torrents, changing ports, optimising upload speeds, becoming connectable. Only those clients relevant for TMB, please!&lt;br /&gt;
&lt;br /&gt;
Also see how [[Client whitelist]] for a list of allowed bittorrent clients.&lt;br /&gt;
&lt;br /&gt;
[[Category:Top Level]]&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=Client_whitelist&amp;diff=4741</id>
		<title>Client whitelist</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=Client_whitelist&amp;diff=4741"/>
		<updated>2025-05-10T10:54:29Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: 5.1.x whitelisted&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following clients are supported with our tracker:&lt;br /&gt;
&lt;br /&gt;
* [https://www.qbittorrent.org/ qBittorrent] 3.x, 4.x, 5.0.x, 5.1.x -- ''recommended client''&lt;br /&gt;
* uTorrent 1.8.x, 2.0.4, 2.2.x, 3.5.x&lt;br /&gt;
* uTorrent (Mac) 1.x&lt;br /&gt;
* [https://apps.kde.org/en-gb/ktorrent/ KTorrent] 4.3.x&lt;br /&gt;
* [https://www.rasterbar.com/products/libtorrent/ Libtorrent (Rasterbar)] 0.1, 0.15, 0.16.x, 1.x&lt;br /&gt;
* [http://rakshasa.github.io/rtorrent/ rtorrent] 0.12.x, 0.13.x&lt;br /&gt;
* Mainline (bittorent) 6.4, 7.x (up to 7.8.x)&lt;br /&gt;
* [https://transmissionbt.com/ Transmission] 1.7.x, 2.x, 3.0, 4.0&lt;br /&gt;
* [https://deluge-torrent.org/ Deluge] 1.3x&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Please note: we do not recommend uTorrent and Mainline, but they are still currently whitelisted with the versions noted.&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=Uploading_Guidelines&amp;diff=4739</id>
		<title>Uploading Guidelines</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=Uploading_Guidelines&amp;diff=4739"/>
		<updated>2025-02-19T09:16:52Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: Added new Uploading Etiquette line&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Policy}}&lt;br /&gt;
&lt;br /&gt;
Not everything written on this page is an unbreakable [[Rules|rule]]. There are times where it may be appropriate to ignore some guidelines, but if you're new to The Mixing Bowl you should probably follow them at all times until you've got a feel for the ethos of the site.&lt;br /&gt;
&lt;br /&gt;
==General Uploading Etiquette==&lt;br /&gt;
&lt;br /&gt;
* There are over 4,000 members here with uploading privileges. '''You are not more important than anyone else'''.&lt;br /&gt;
* There are over 100,000 torrents in the database. '''Your upload is not more important than any other'''.&lt;br /&gt;
* Try to follow the guidelines we've compiled so that your upload is of good quality with regards to the presentation of it on our site, the information about it and it's audio quality where this can be controlled. &lt;br /&gt;
* Don't immediately upload lots of torrents after becoming an uploader; you will probably cock things right up and create a mess. Take it easy and ask in the forums if you get stuck and if your answer isn't covered here.&lt;br /&gt;
* Only upload 2 torrents at a time. Wait until they are well seeded by a few other people before you move onto more.&lt;br /&gt;
* Name your torrent and folder to be uploaded according the the guidelines. &lt;br /&gt;
* Please keep the scene crap to a minimum. By all means include the nfo with the upload, but don't copy and paste a screen full of indecipherable symbols and &amp;quot;shout-outs&amp;quot; into the torrent description.&lt;br /&gt;
* CDs given away free with magazines are allowed to be upped, but only if the audio is mixed and then '''only once the next months magazine edition is out''', ie once you can no longer purchase the magazine with the CD.&lt;br /&gt;
* Before uploading, please check if there is a regular uploader for the show. If there is, reach out to that member to discuss.&lt;br /&gt;
&lt;br /&gt;
'''The following action can be taken if an admin feels someone is uploading against the spirit of these guidelines :'''&lt;br /&gt;
&lt;br /&gt;
* Ban the individual torrent. You will not be allowed to upload the same mix again if this happens.&lt;br /&gt;
* Demote the member back to standard member status. This means you will lose your uploading rights and also resident status if you had attained it.&lt;br /&gt;
* Official Admin Warning for the member. Two of these and you are banned forever.&lt;br /&gt;
* Ban the member.&lt;br /&gt;
&lt;br /&gt;
==Readers' Mixes Uploading Etiquette==&lt;br /&gt;
&lt;br /&gt;
* The readers mixes section was created for members to get feedback on mixes they want to share.&lt;br /&gt;
* All torrents in this section are ratio free to encourage people to download and give feedback to the member.&lt;br /&gt;
* Don't upload more than 2 readers mixes a week, '''this forum is not your own'''.&lt;br /&gt;
* Don't upload readers mixes to increase your ratio, eg with a bunch of playlisted autofaded tracks with no care or thought.  You should upload because you want to get some feedback and share your creation!&lt;br /&gt;
* Don't excessively bump/pimp your own mixes. Bumping one mix a few times is fine, but '''bumping your back catalogue in one go is not!'''&lt;br /&gt;
* Blatant use of Artist name in titles is unacceptable if an admin feels it's only done to trick people into downloading.&lt;br /&gt;
* Don't create a mix with just a new artist's album mixed in a different order than the official album; '''show the artist you are supposedly paying homage to some respect.'''&lt;br /&gt;
&lt;br /&gt;
'''Please Note:'''&lt;br /&gt;
* Everyone started somewhere and we strongly encourage people to share mixes they have created so some of these wordings are intentionally left vague.&lt;br /&gt;
* The admin will make decisions on a case by case basis.  If you don't agree with the decision that's fine but remember the rules, specifically: [[Rules|Do not defy the admins' expressed wishes]].&lt;br /&gt;
* If you feel someone is uploading against the spirit of the readers mix forum report [[Image:Error.png|Report Button]] the torrent stating why, and then please leave decisions to the admin team, ie no backseat moderation thank you!&lt;br /&gt;
&lt;br /&gt;
'''To ensure every member gets fair exposure the following action can be taken if an admin feels someone is uploading against the spirit of this section :'''&lt;br /&gt;
&lt;br /&gt;
* Move torrent to the studio promo/anything else forum therefore removing the ratio free aspect of the torrent.&lt;br /&gt;
* Ban the individual torrent. You will not be allowed to upload the same mix again if this happens.&lt;br /&gt;
* Demote the member back to standard member status. This means you will lose your uploading rights and also resident status if you had attained it.&lt;br /&gt;
* Official Admin Warning for the member. Two of these and you are banned forever.&lt;br /&gt;
* Ban the member.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Torrent Tagging Guidelines==&lt;br /&gt;
&lt;br /&gt;
With the launch of TMBv2 the way in which torrents are named and categorised has changed dramatically. Titles, artists, categories and genres are all now specified separately which has greatly enhanced the filtering and searching functions of the site. This has in part been made possible by the development of a new &amp;quot;tagging&amp;quot; systems.&lt;br /&gt;
&lt;br /&gt;
For more details on the new system please read the following guide and examples.&lt;br /&gt;
&lt;br /&gt;
===Title===&lt;br /&gt;
&lt;br /&gt;
The title should be a very brief description of the torrent. This can be the name of the radio show, event or witty name for your Readers Mix. &amp;lt;span style=&amp;quot;color: red&amp;quot;&amp;gt;The title should not contain any artists names or genres.&amp;lt;/span&amp;gt; All extra details about and upload should be included in the description.&lt;br /&gt;
&lt;br /&gt;
====Good Titles====&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;Clublife - EP 92&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;BTTB - Back to the Basics&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;Essential Mix - Live from Glastonbury&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Bad Titles====&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color: red&amp;quot;&amp;gt;Essential Mix - Sasha - MP3&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Should only be&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;Essential Mix&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Sasha''' should be defined as an artist, '''MP3''' specified as the codec and '''Essential Mix''' tag selected.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
And another example&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color: red&amp;quot;&amp;gt;Radio 1 Drum and Bass show with Fabio, Grooverider and High Contrast&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Should be&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;Radio 1 Drum and Bass show&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Fabio''', '''Grooverider''' and '''High Contrast''' should be specified as artists.&lt;br /&gt;
&lt;br /&gt;
===Artists===&lt;br /&gt;
&lt;br /&gt;
Artists should be entered as a comma separated list. The site has an autocomplete function which will guess as you type the artist you are entering from the artists already in our database. '''The artist tag field is for who created the mix/session/performance, not every artist featured.'''&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;High Contrast, Pendulum&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The list of artists should '''not''' contain '''and''' or '''&amp;amp;''' unless they are part of the artists full name. Neither should they contain any special characters such as brackets '''()''', pipes '''|''' or dashes '''-'''.&lt;br /&gt;
&lt;br /&gt;
The following are incorrect;&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color: red&amp;quot;&amp;gt;Sasha and Digweed&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color: red&amp;quot;&amp;gt;Cal Alex Vs Dreamgirl&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
and should be&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;Sasha, Digweed&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;Cal Alex, Dreamgirl&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Tags===&lt;br /&gt;
&lt;br /&gt;
====Main Tags====&lt;br /&gt;
&lt;br /&gt;
We have specified a set of tags as being &amp;quot;Main Tags&amp;quot; and every upload must have at least one of these selected. The purpose of main tags is to provide at least the most basic information about an upload, in most cases this is the source of the torrent. The list of Main Tags can be found on the upload form by clicking the green &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;main tags&amp;lt;/span&amp;gt; help link.&lt;br /&gt;
&lt;br /&gt;
Many of the popular radio shows are main tags, examples being the '''Essential Mix''', '''ASOT''' and '''Breezeblock'''. '''Other Radio''' is provided for radio shows for which there in no main tag. '''Live DJ Mix''' &amp;amp; '''Studio/Promo''' are self explanatory, as is '''Readers Mix'''. '''Vids''' is provided for video uploads and '''Other''' can be used when no other main tag is suitable.&lt;br /&gt;
&lt;br /&gt;
It is perfectly acceptable to use more than one main tag for an upload, the combination below being an example if the Essential Mix was being broadcast live from an event.&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;Essential Mix, Live DJ Mix&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Other Tags====&lt;br /&gt;
&lt;br /&gt;
Attributes of an upload can be specified by the inclusion of extra tags. Most commonly this will be the genre or style of a mix however tags can be extended to include any attribute. For example an event name could be used as a tag to allow users to find all torrents uploaded from that event, eg. '''Sonar''', '''Glastonbury''' or '''Warehouse Project'''.&lt;br /&gt;
&lt;br /&gt;
====Tag Ordering====&lt;br /&gt;
&lt;br /&gt;
The order in which you specify tags effects the images which are displayed in the [https://themixingbowl.org/torrent/ torrent list]. The rules for this are as follows.&lt;br /&gt;
&lt;br /&gt;
* Main tags take priority, the first main tag will set the first image and the second main tag the second image.&lt;br /&gt;
* If only one main tag is specified the second image will be the next tag for which we have an image. Most of the common genres and radio shows have images however not all tags have images.&lt;br /&gt;
* In the case that the only tag defined is a main tag the tag '''Misc.''' will be added. This will also happen if none of the secondary tags specified have images.&lt;br /&gt;
&lt;br /&gt;
The coding for these rules is relatively new so older torrents will not follow this convention.&lt;br /&gt;
&lt;br /&gt;
====Examples====&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;Essential Mix, Live DJ Mix, Glastonbury, Breakbeat, Drum and Bass&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;Live DJ Mix, Electro, Warehouse Project&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;Other Radio, Trance, AH.fm&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;Readers Mix, Techno, Ableton&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;Vids, Interview, Instructional&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;Vids, Documentary, House, 1990s&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Codec===&lt;br /&gt;
&lt;br /&gt;
Select the encoding used for the recording, common values are MP3, AAC and Lossless. For videos please use specify Other.&lt;br /&gt;
&lt;br /&gt;
===Bitrate===&lt;br /&gt;
&lt;br /&gt;
When MP3 and MP2 codecs are selected you are required to specify the bitrate of the recording. Valid values are between 1-1500 and Lame switches such as V0, V1, V2 &amp;amp; VBR. For all other codecs the bitrate is not required however it can be added where appropriate.&lt;br /&gt;
&lt;br /&gt;
===Length===&lt;br /&gt;
&lt;br /&gt;
Specify the length of the recording in minutes. If you don't know or can't determine the time please enter an estimate.&lt;br /&gt;
&lt;br /&gt;
===Date===&lt;br /&gt;
&lt;br /&gt;
Three fields are provided to specify the date of a torrent; day, month and year. In the event that you do not know the full date of the torrent provide as much information as you can. The most basic date information required for every torrent is the year.&lt;br /&gt;
&lt;br /&gt;
===Description===&lt;br /&gt;
&lt;br /&gt;
The description field allows you to add extra information about the torrent, such as tracklisings, programme synopsis and artwork. A good description can greatly enhance an upload and make it much more appealing to downloaders.&lt;br /&gt;
&lt;br /&gt;
It is highly recommended that the tracklist for mixes are added to the description if known.&lt;br /&gt;
&lt;br /&gt;
===Folder and file names===&lt;br /&gt;
&lt;br /&gt;
Use sensible folder and file names including enough details to be unique without going over the top. For example, the artist responsible for the mix, the title and date are all sensible values to use. There is a hard limit of 200 characters for the combined folder and file names. If you are hitting this limit, consider removing any duplication between the folder and filenames.&lt;br /&gt;
&lt;br /&gt;
==How to attract more downloaders to your torrents==&lt;br /&gt;
&lt;br /&gt;
* Name/Title your upload clearly &amp;amp; according to our guidelines.&lt;br /&gt;
* Provide a good description including your method of capture if you are uploading a radio show or live set.&lt;br /&gt;
* If you are uploading a CD learn how to rip with [[EAC]] and encode it correctly with [[LAME]].&lt;br /&gt;
* Include a tracklist if at all possible (you can often find them by searching google).&lt;br /&gt;
* Use sensible names for the folder and files to be uploaded - see [[#Folder_and_file_names|Folder and file names]]&lt;br /&gt;
* If possible include a [[Cue_sheet|.cue sheet]].&lt;br /&gt;
* Seed it until there are a few other seeders.&lt;br /&gt;
&lt;br /&gt;
==Common mistakes made by new uploaders==&lt;br /&gt;
&lt;br /&gt;
* SHOUTING IN YOUR TITLES.&lt;br /&gt;
* @@&amp;gt;&amp;gt;!!??# or other useless characters in your title (aka ebay idiot syndrome).&lt;br /&gt;
* Useless folder title (always include the artist name, mix title and date if it is a radio show or live dj set).&lt;br /&gt;
* Useless info in the title, eg (OMG GREAT MIX!)&lt;br /&gt;
* Including your username in the title, filename or main file tags (comment tag is ok)&lt;br /&gt;
* CDs ripped with mediaplayer/itunes or other non gapless compliant applications.&lt;br /&gt;
* Uploading a single mp3 instead of uploading inside a clearly named folder.&lt;br /&gt;
* Uploading a mix then not seeding for a day (wait to upload if you can't seed for some time).&lt;br /&gt;
* If you have 2 parts put them in a folder and upload as one, DO NOT upload 2 separate torrents&lt;br /&gt;
* Forgetting to include the site .nfo file.&lt;br /&gt;
* Incorrect choice of category or genre.&lt;br /&gt;
&lt;br /&gt;
'''Important:'''&lt;br /&gt;
&lt;br /&gt;
* If you have made any of these mistakes and an admin notices it they will ban (remove) your torrent. If any other member thinks your torrent hasn't followed the uploading guidelines they can report it [[Image:Error.png|Report Button]] (which will bring it to the attention of the admin team). If you have already had uploads banned the admin may revoke your uploading privileges. It will be harder for you to regain your uploader status as you will have to demonstrate an understanding of the guidelines and a willingness to follow them.&lt;br /&gt;
* If you have made these mistakes on any of your uploads don't panic. You can edit your own torrent including any of the details, you can also delete your own torrent. You should only delete your torrent if it can't be edited for example when you didn't upload inside a folder or had a useless filename, in this case you will need to make the corrections and upload again. To edit or delete a torrent view the torrent details [[Image:Table.png]]  (not the forum topic) and click [[Image:Pencil.png|Edit this torrent]].&lt;br /&gt;
* If you see a torrent you feel isn't up to scratch you should report it using the link provided in the forum thread [[Image:Error.png|Report Button]].  You could tell the uploader in the thread if it is something easily fixable, like incorrect genre or category, but don't start any flaming with abusive comments!&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=FLAC&amp;diff=4738</id>
		<title>FLAC</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=FLAC&amp;diff=4738"/>
		<updated>2025-01-18T16:44:09Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''FLAC''' is an open and free [[Lossless]] compressed audio format. Unlike lossy audio formats like [[MP3]], [[Ogg Vorbis]] and [[AAC]], there is no loss of quality when saving audio files in the FLAC format.&lt;br /&gt;
&lt;br /&gt;
FLAC is the recommended [[Lossless]] audio format to use on [http://wiki.themixingbowl.org/ The Mixing Bowl]&lt;br /&gt;
&lt;br /&gt;
==FLAC Homepage==&lt;br /&gt;
&lt;br /&gt;
*http://flac.sourceforge.net/&lt;br /&gt;
&lt;br /&gt;
==Download==&lt;br /&gt;
&lt;br /&gt;
*http://flac.sourceforge.net/download.html&lt;br /&gt;
*http://www.rarewares.org/lossless.php#flac-bundle&lt;br /&gt;
&lt;br /&gt;
==Playback==&lt;br /&gt;
&lt;br /&gt;
===Software===&lt;br /&gt;
&lt;br /&gt;
The following media players will playback FLAC files:&lt;br /&gt;
&lt;br /&gt;
*[http://www.foobar2000.org/ foobar2000]&lt;br /&gt;
*[http://www.videolan.org/vlc/ VLC]&lt;br /&gt;
*[http://www.winamp.com/ Winamp]&lt;br /&gt;
&lt;br /&gt;
===Hardware===&lt;br /&gt;
&lt;br /&gt;
*[http://flac.sourceforge.net/links.html#hardware FLAC's device list]&lt;br /&gt;
*[http://wiki.xiph.org/index.php/FLAC Xiph's device list]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Encoding==&lt;br /&gt;
&lt;br /&gt;
It's possible to encode a [[WAV]] to FLAC in [[Winamp]] and in [[Foobar2000]]. In [[Foobar2000]] just right click -&amp;gt; Convert -&amp;gt; Convert to Same Directory -&amp;gt; FLAC, level 5, all the other settings off -&amp;gt; OK. &lt;br /&gt;
&lt;br /&gt;
As of FLAC v1.4+ level 7 is the recommended setting: almost the same compression gain as -8 (best), but encodes faster. &lt;br /&gt;
&lt;br /&gt;
You can easily do this with the [https://github.com/hat3k/FLAC-Frontend-H new FLAC frontend].&lt;br /&gt;
&lt;br /&gt;
[[Category:Audio Formats]]&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=Uploading_Guidelines&amp;diff=4737</id>
		<title>Uploading Guidelines</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=Uploading_Guidelines&amp;diff=4737"/>
		<updated>2025-01-10T20:12:41Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Policy}}&lt;br /&gt;
&lt;br /&gt;
Not everything written on this page is an unbreakable [[Rules|rule]]. There are times where it may be appropriate to ignore some guidelines, but if you're new to The Mixing Bowl you should probably follow them at all times until you've got a feel for the ethos of the site.&lt;br /&gt;
&lt;br /&gt;
==General Uploading Etiquette==&lt;br /&gt;
&lt;br /&gt;
* There are over 4,000 members here with uploading privileges. '''You are not more important than anyone else'''.&lt;br /&gt;
* There are over 100,000 torrents in the database. '''Your upload is not more important than any other'''.&lt;br /&gt;
* Try to follow the guidelines we've compiled so that your upload is of good quality with regards to the presentation of it on our site, the information about it and it's audio quality where this can be controlled. &lt;br /&gt;
* Don't immediately upload lots of torrents after becoming an uploader; you will probably cock things right up and create a mess. Take it easy and ask in the forums if you get stuck and if your answer isn't covered here.&lt;br /&gt;
* Only upload 2 torrents at a time. Wait until they are well seeded by a few other people before you move onto more.&lt;br /&gt;
* Name your torrent and folder to be uploaded according the the guidelines. &lt;br /&gt;
* Please keep the scene crap to a minimum. By all means include the nfo with the upload, but don't copy and paste a screen full of indecipherable symbols and &amp;quot;shout-outs&amp;quot; into the torrent description.&lt;br /&gt;
* CDs given away free with magazines are allowed to be upped, but only if the audio is mixed and then '''only once the next months magazine edition is out''', ie once you can no longer purchase the magazine with the CD.&lt;br /&gt;
&lt;br /&gt;
'''The following action can be taken if an admin feels someone is uploading against the spirit of these guidelines :'''&lt;br /&gt;
&lt;br /&gt;
* Ban the individual torrent. You will not be allowed to upload the same mix again if this happens.&lt;br /&gt;
* Demote the member back to standard member status. This means you will lose your uploading rights and also resident status if you had attained it.&lt;br /&gt;
* Official Admin Warning for the member. Two of these and you are banned forever.&lt;br /&gt;
* Ban the member.&lt;br /&gt;
&lt;br /&gt;
==Readers' Mixes Uploading Etiquette==&lt;br /&gt;
&lt;br /&gt;
* The readers mixes section was created for members to get feedback on mixes they want to share.&lt;br /&gt;
* All torrents in this section are ratio free to encourage people to download and give feedback to the member.&lt;br /&gt;
* Don't upload more than 2 readers mixes a week, '''this forum is not your own'''.&lt;br /&gt;
* Don't upload readers mixes to increase your ratio, eg with a bunch of playlisted autofaded tracks with no care or thought.  You should upload because you want to get some feedback and share your creation!&lt;br /&gt;
* Don't excessively bump/pimp your own mixes. Bumping one mix a few times is fine, but '''bumping your back catalogue in one go is not!'''&lt;br /&gt;
* Blatant use of Artist name in titles is unacceptable if an admin feels it's only done to trick people into downloading.&lt;br /&gt;
* Don't create a mix with just a new artist's album mixed in a different order than the official album; '''show the artist you are supposedly paying homage to some respect.'''&lt;br /&gt;
&lt;br /&gt;
'''Please Note:'''&lt;br /&gt;
* Everyone started somewhere and we strongly encourage people to share mixes they have created so some of these wordings are intentionally left vague.&lt;br /&gt;
* The admin will make decisions on a case by case basis.  If you don't agree with the decision that's fine but remember the rules, specifically: [[Rules|Do not defy the admins' expressed wishes]].&lt;br /&gt;
* If you feel someone is uploading against the spirit of the readers mix forum report [[Image:Error.png|Report Button]] the torrent stating why, and then please leave decisions to the admin team, ie no backseat moderation thank you!&lt;br /&gt;
&lt;br /&gt;
'''To ensure every member gets fair exposure the following action can be taken if an admin feels someone is uploading against the spirit of this section :'''&lt;br /&gt;
&lt;br /&gt;
* Move torrent to the studio promo/anything else forum therefore removing the ratio free aspect of the torrent.&lt;br /&gt;
* Ban the individual torrent. You will not be allowed to upload the same mix again if this happens.&lt;br /&gt;
* Demote the member back to standard member status. This means you will lose your uploading rights and also resident status if you had attained it.&lt;br /&gt;
* Official Admin Warning for the member. Two of these and you are banned forever.&lt;br /&gt;
* Ban the member.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Torrent Tagging Guidelines==&lt;br /&gt;
&lt;br /&gt;
With the launch of TMBv2 the way in which torrents are named and categorised has changed dramatically. Titles, artists, categories and genres are all now specified separately which has greatly enhanced the filtering and searching functions of the site. This has in part been made possible by the development of a new &amp;quot;tagging&amp;quot; systems.&lt;br /&gt;
&lt;br /&gt;
For more details on the new system please read the following guide and examples.&lt;br /&gt;
&lt;br /&gt;
===Title===&lt;br /&gt;
&lt;br /&gt;
The title should be a very brief description of the torrent. This can be the name of the radio show, event or witty name for your Readers Mix. &amp;lt;span style=&amp;quot;color: red&amp;quot;&amp;gt;The title should not contain any artists names or genres.&amp;lt;/span&amp;gt; All extra details about and upload should be included in the description.&lt;br /&gt;
&lt;br /&gt;
====Good Titles====&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;Clublife - EP 92&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;BTTB - Back to the Basics&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;Essential Mix - Live from Glastonbury&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Bad Titles====&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color: red&amp;quot;&amp;gt;Essential Mix - Sasha - MP3&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Should only be&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;Essential Mix&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Sasha''' should be defined as an artist, '''MP3''' specified as the codec and '''Essential Mix''' tag selected.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
And another example&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color: red&amp;quot;&amp;gt;Radio 1 Drum and Bass show with Fabio, Grooverider and High Contrast&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Should be&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;Radio 1 Drum and Bass show&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Fabio''', '''Grooverider''' and '''High Contrast''' should be specified as artists.&lt;br /&gt;
&lt;br /&gt;
===Artists===&lt;br /&gt;
&lt;br /&gt;
Artists should be entered as a comma separated list. The site has an autocomplete function which will guess as you type the artist you are entering from the artists already in our database. '''The artist tag field is for who created the mix/session/performance, not every artist featured.'''&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;High Contrast, Pendulum&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The list of artists should '''not''' contain '''and''' or '''&amp;amp;''' unless they are part of the artists full name. Neither should they contain any special characters such as brackets '''()''', pipes '''|''' or dashes '''-'''.&lt;br /&gt;
&lt;br /&gt;
The following are incorrect;&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color: red&amp;quot;&amp;gt;Sasha and Digweed&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color: red&amp;quot;&amp;gt;Cal Alex Vs Dreamgirl&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
and should be&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;Sasha, Digweed&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;Cal Alex, Dreamgirl&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Tags===&lt;br /&gt;
&lt;br /&gt;
====Main Tags====&lt;br /&gt;
&lt;br /&gt;
We have specified a set of tags as being &amp;quot;Main Tags&amp;quot; and every upload must have at least one of these selected. The purpose of main tags is to provide at least the most basic information about an upload, in most cases this is the source of the torrent. The list of Main Tags can be found on the upload form by clicking the green &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;main tags&amp;lt;/span&amp;gt; help link.&lt;br /&gt;
&lt;br /&gt;
Many of the popular radio shows are main tags, examples being the '''Essential Mix''', '''ASOT''' and '''Breezeblock'''. '''Other Radio''' is provided for radio shows for which there in no main tag. '''Live DJ Mix''' &amp;amp; '''Studio/Promo''' are self explanatory, as is '''Readers Mix'''. '''Vids''' is provided for video uploads and '''Other''' can be used when no other main tag is suitable.&lt;br /&gt;
&lt;br /&gt;
It is perfectly acceptable to use more than one main tag for an upload, the combination below being an example if the Essential Mix was being broadcast live from an event.&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;Essential Mix, Live DJ Mix&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Other Tags====&lt;br /&gt;
&lt;br /&gt;
Attributes of an upload can be specified by the inclusion of extra tags. Most commonly this will be the genre or style of a mix however tags can be extended to include any attribute. For example an event name could be used as a tag to allow users to find all torrents uploaded from that event, eg. '''Sonar''', '''Glastonbury''' or '''Warehouse Project'''.&lt;br /&gt;
&lt;br /&gt;
====Tag Ordering====&lt;br /&gt;
&lt;br /&gt;
The order in which you specify tags effects the images which are displayed in the [https://themixingbowl.org/torrent/ torrent list]. The rules for this are as follows.&lt;br /&gt;
&lt;br /&gt;
* Main tags take priority, the first main tag will set the first image and the second main tag the second image.&lt;br /&gt;
* If only one main tag is specified the second image will be the next tag for which we have an image. Most of the common genres and radio shows have images however not all tags have images.&lt;br /&gt;
* In the case that the only tag defined is a main tag the tag '''Misc.''' will be added. This will also happen if none of the secondary tags specified have images.&lt;br /&gt;
&lt;br /&gt;
The coding for these rules is relatively new so older torrents will not follow this convention.&lt;br /&gt;
&lt;br /&gt;
====Examples====&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;Essential Mix, Live DJ Mix, Glastonbury, Breakbeat, Drum and Bass&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;Live DJ Mix, Electro, Warehouse Project&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;Other Radio, Trance, AH.fm&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;Readers Mix, Techno, Ableton&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;Vids, Interview, Instructional&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;Vids, Documentary, House, 1990s&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Codec===&lt;br /&gt;
&lt;br /&gt;
Select the encoding used for the recording, common values are MP3, AAC and Lossless. For videos please use specify Other.&lt;br /&gt;
&lt;br /&gt;
===Bitrate===&lt;br /&gt;
&lt;br /&gt;
When MP3 and MP2 codecs are selected you are required to specify the bitrate of the recording. Valid values are between 1-1500 and Lame switches such as V0, V1, V2 &amp;amp; VBR. For all other codecs the bitrate is not required however it can be added where appropriate.&lt;br /&gt;
&lt;br /&gt;
===Length===&lt;br /&gt;
&lt;br /&gt;
Specify the length of the recording in minutes. If you don't know or can't determine the time please enter an estimate.&lt;br /&gt;
&lt;br /&gt;
===Date===&lt;br /&gt;
&lt;br /&gt;
Three fields are provided to specify the date of a torrent; day, month and year. In the event that you do not know the full date of the torrent provide as much information as you can. The most basic date information required for every torrent is the year.&lt;br /&gt;
&lt;br /&gt;
===Description===&lt;br /&gt;
&lt;br /&gt;
The description field allows you to add extra information about the torrent, such as tracklisings, programme synopsis and artwork. A good description can greatly enhance an upload and make it much more appealing to downloaders.&lt;br /&gt;
&lt;br /&gt;
It is highly recommended that the tracklist for mixes are added to the description if known.&lt;br /&gt;
&lt;br /&gt;
===Folder and file names===&lt;br /&gt;
&lt;br /&gt;
Use sensible folder and file names including enough details to be unique without going over the top. For example, the artist responsible for the mix, the title and date are all sensible values to use. There is a hard limit of 200 characters for the combined folder and file names. If you are hitting this limit, consider removing any duplication between the folder and filenames.&lt;br /&gt;
&lt;br /&gt;
==How to attract more downloaders to your torrents==&lt;br /&gt;
&lt;br /&gt;
* Name/Title your upload clearly &amp;amp; according to our guidelines.&lt;br /&gt;
* Provide a good description including your method of capture if you are uploading a radio show or live set.&lt;br /&gt;
* If you are uploading a CD learn how to rip with [[EAC]] and encode it correctly with [[LAME]].&lt;br /&gt;
* Include a tracklist if at all possible (you can often find them by searching google).&lt;br /&gt;
* Use sensible names for the folder and files to be uploaded - see [[#Folder_and_file_names|Folder and file names]]&lt;br /&gt;
* If possible include a [[Cue_sheet|.cue sheet]].&lt;br /&gt;
* Seed it until there are a few other seeders.&lt;br /&gt;
&lt;br /&gt;
==Common mistakes made by new uploaders==&lt;br /&gt;
&lt;br /&gt;
* SHOUTING IN YOUR TITLES.&lt;br /&gt;
* @@&amp;gt;&amp;gt;!!??# or other useless characters in your title (aka ebay idiot syndrome).&lt;br /&gt;
* Useless folder title (always include the artist name, mix title and date if it is a radio show or live dj set).&lt;br /&gt;
* Useless info in the title, eg (OMG GREAT MIX!)&lt;br /&gt;
* Including your username in the title, filename or main file tags (comment tag is ok)&lt;br /&gt;
* CDs ripped with mediaplayer/itunes or other non gapless compliant applications.&lt;br /&gt;
* Uploading a single mp3 instead of uploading inside a clearly named folder.&lt;br /&gt;
* Uploading a mix then not seeding for a day (wait to upload if you can't seed for some time).&lt;br /&gt;
* If you have 2 parts put them in a folder and upload as one, DO NOT upload 2 separate torrents&lt;br /&gt;
* Forgetting to include the site .nfo file.&lt;br /&gt;
* Incorrect choice of category or genre.&lt;br /&gt;
&lt;br /&gt;
'''Important:'''&lt;br /&gt;
&lt;br /&gt;
* If you have made any of these mistakes and an admin notices it they will ban (remove) your torrent. If any other member thinks your torrent hasn't followed the uploading guidelines they can report it [[Image:Error.png|Report Button]] (which will bring it to the attention of the admin team). If you have already had uploads banned the admin may revoke your uploading privileges. It will be harder for you to regain your uploader status as you will have to demonstrate an understanding of the guidelines and a willingness to follow them.&lt;br /&gt;
* If you have made these mistakes on any of your uploads don't panic. You can edit your own torrent including any of the details, you can also delete your own torrent. You should only delete your torrent if it can't be edited for example when you didn't upload inside a folder or had a useless filename, in this case you will need to make the corrections and upload again. To edit or delete a torrent view the torrent details [[Image:Table.png]]  (not the forum topic) and click [[Image:Pencil.png|Edit this torrent]].&lt;br /&gt;
* If you see a torrent you feel isn't up to scratch you should report it using the link provided in the forum thread [[Image:Error.png|Report Button]].  You could tell the uploader in the thread if it is something easily fixable, like incorrect genre or category, but don't start any flaming with abusive comments!&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=Rules&amp;diff=4736</id>
		<title>Rules</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=Rules&amp;diff=4736"/>
		<updated>2024-11-14T09:01:28Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: expanded #1&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
{{Policy}}&lt;br /&gt;
&lt;br /&gt;
==General rules - Breaking these rules can and will get you banned!==&lt;br /&gt;
&lt;br /&gt;
#Be excellent to each other.&lt;br /&gt;
#Do not defy the admins' expressed wishes.&lt;br /&gt;
#Keep your overall ratio as close to 1.0 as possible.&lt;br /&gt;
&lt;br /&gt;
==General forum guidelines - Please try to follow these guidelines==&lt;br /&gt;
&lt;br /&gt;
#No moaning, no trolling, no shit-posting, no posting in bad faith.&lt;br /&gt;
#No language other than English in the forums.&lt;br /&gt;
#Do not request/offer/trade invites to other bittorrent trackers in the public forums.&lt;br /&gt;
#Please read the [[FAQ]] before asking any questions.&lt;br /&gt;
&lt;br /&gt;
==Uploading rules - Torrents violating these rules may be deleted without notice==&lt;br /&gt;
&lt;br /&gt;
#All uploads must include the mixingbowl [https://www.themixingbowl.org/static/www.themixingbowl.org.nfo nfo].&lt;br /&gt;
#Only '''non-commercial audio and video''', i.e. nothing that has been '''commercially licensed''' that you can buy in the shops or online.&lt;br /&gt;
#Allowed audio uploads include: DJ Mixes, mixtapes, broadcast radio, podcasts, and live recordings. We do not allow broadcasts of commercial releases played in their entirety.&lt;br /&gt;
#Video uploads must either be of a broadcast by an artist or be documentaries about an artist or a genre.&lt;br /&gt;
#Any uploads that the admins feel are unsuitable for the site will be removed without warning. [https://themixingbowl.org/tickets/messageadmin Ask an admin] before uploading if you're not sure.&lt;br /&gt;
#If you have the tracklist, post it in the Description part of the upload form.&lt;br /&gt;
#Make sure your torrents are well-seeded at least until there are above 5 other seeds.&lt;br /&gt;
#If you have something interesting that somehow violate these rules, [https://themixingbowl.org/tickets/messageadmin ask an admin] and we '''might''' make an exception.&lt;br /&gt;
#Adhere to all of the [[Uploading_Guidelines | Uploading Guidelines]]&lt;br /&gt;
&lt;br /&gt;
==Avatar rules - Your avatar must adhere to these requirements==&lt;br /&gt;
&lt;br /&gt;
#'''Must be work safe'''; no nudity etc.&lt;br /&gt;
#GIFs must be less than 100KB in size&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=About&amp;diff=4735</id>
		<title>About</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=About&amp;diff=4735"/>
		<updated>2024-11-07T10:03:57Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: /* 2004 screenshot of Mr coptang's Mixing Bowl */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==[https://themixingbowl.org themixingbowl.org]==&lt;br /&gt;
We intend to be the 1st stop for torrents for: The [[Essential Mix]], The [[Breezeblock]], [[Kiss FM]], [[XFM]], [[Gilles Peterson Worldwide|Worldwide]], [[BTTB]], [[One World]], [[Blue Room]], [[The Milk Run]], [[Solid Steel]], [[Annie On One]] and much more...&lt;br /&gt;
&lt;br /&gt;
If you like dance music, nightclubbing or anything related to: House, Trance, IDM, Breaks, Hard House, Techno, Drum &amp;amp; Bass, Hip-Hop, Big Beat, Trip-Hop, Turntablism or whatever spastic genre name is flavour of the month and haven't already [https://themixingbowl.org/signup.php signed up] then what are you waiting for?&lt;br /&gt;
&lt;br /&gt;
==[https://themixingbowl.org/post/view/54371 surgeon's History Of TMBv1]== &lt;br /&gt;
''Posted: Sep 18, 2005 11:26:32 PM''&lt;br /&gt;
&lt;br /&gt;
I was addicted to Suprnova grabbing loads of applications and music. The music constantly had a .nfo for http://coptang.f2s.com/ [themixingbowl]&lt;br /&gt;
&lt;br /&gt;
I was in heaven, as many of you are when you first discovered the site.&lt;br /&gt;
&lt;br /&gt;
It had categories for the [[Essential Mix]], [[Breezeblock]], [[Annie Nightingale]], [[Peel Sessions]] and so forth. wow wow wow!&lt;br /&gt;
&lt;br /&gt;
'''This was a site specialising in BBC Radio One shows , BTTB and Nova Radio'''&lt;br /&gt;
&lt;br /&gt;
Bookmarked  -  I was the 200 and something member of the site. I registered sometime around August 2004... I swiftly looked for the site owner to basically congratulate his philosophy especially the [[Breezeblock]] and [[Essential Mix]] category. coptang's join date was April 2004 so I knew this puppy was new. &lt;br /&gt;
&lt;br /&gt;
I started upping torrents left, right and centre and TMB was attracting a stable amount of users per week, around 20 to 30. Suprnova was getting too big and millions of hits were the key to TMB's success.&lt;br /&gt;
&lt;br /&gt;
coptang, glint, DaezD and Baldfresh (R.I.P) were running the show. Baldfresh had the best avatar I had ever seen, some scary monster face with red eyes coming out of a black background!&lt;br /&gt;
&lt;br /&gt;
coptang then made me Mod (as it was then). Nicktids was then upgraded to Mod around about two months after me. Excellent knowledge of the inner workings of [[Azureus]] and invaluable for the [[FAQ]].&lt;br /&gt;
&lt;br /&gt;
Each night at 12:10 midnight, us Admins and SysOp would put all torrents uploaded that day onto Suprnova, basically personally grabbing all torrents throughout the day! Upping them at that time meant they would go on the main page and would stay there for a matter of two days, the ultimate advertising as all torrents on Suprnova directed you to TMB! By '''October 2004''' TMB was getting a shed load of new members directed by hitting torrents on Suprnova, sometimes 100 new members a day. The load was becoming too much on coptang's free web space on his ISP! Something needed to be done, so we asked for donations and got stable hosting (so we thought) and moved from http://coptang.f2s.com/ to https://www.themixingbowl.org. The dot org was the choice of the admin - sounds important.&lt;br /&gt;
&lt;br /&gt;
Anywooooo coptang then spent fooking hours-days-weeks-months sorting out the beta version of the new site with great input from glint, baldfresh and DaezD. We started at the very tail end of '''December 2004''' and opened our doors to a select few original members a couple of weeks after that to check for errors and then to the masses around '''February 2005'''.&lt;br /&gt;
&lt;br /&gt;
We have had one fuck up since the site was originally formed as http://coptang.f2s.com/ by a host admin error [cnuts]... but that's it - but that was very fucking annoying!&lt;br /&gt;
&lt;br /&gt;
TMB is beautiful, and we owe a lot of gratitude to coptang.&lt;br /&gt;
&lt;br /&gt;
*glint for a lot of effort behing the scenes with .php and general site maintenance&lt;br /&gt;
*tz for a lot of code  &amp;lt;--- shit loads of code (I love the ban and warning feature!)&lt;br /&gt;
*DaezD for his comedy - I miss him - where the fuck are you dude?&lt;br /&gt;
*mbw23 for never being here [admin since new site was opened]&lt;br /&gt;
*gforce for being a complete dude - one of the original &amp;quot;old man&amp;quot; tags&lt;br /&gt;
*Baldfresh was amazing - I miss his IRC chats and always amazingly helpful on OiNK and Indietorrents&lt;br /&gt;
*Me - well I'm too bored at work all day! Internet access is great!&lt;br /&gt;
*nicktids - amazingly helpful with [[Azureus]] queries and very good with helping ppl in torrent support&lt;br /&gt;
&lt;br /&gt;
== 2004 screenshots of Mr Coptang's Mixing Bowl &amp;amp; Lovenasium ==&lt;br /&gt;
In the beginning it was called coptang's Wank Cabin, but one of his mates couldn't view it from work as wank is a rude word. So TMB was born.&lt;br /&gt;
&amp;lt;gallery widths=600 heights=400&amp;gt;&lt;br /&gt;
File:mrcoptangsmixingbowl2004.jpg|TMB 14th July 2004&lt;br /&gt;
File:20040808-mr-coptangs-mixing-bowl-index.png|TMB 8th August 2004&lt;br /&gt;
File:20041118-mr-coptangs-lovenasium.png|Mr Coptang's Lovenasium 18th November 2004&lt;br /&gt;
File:Mr-coptangs-lovenasium.gif|Mr Coptang's Lovenasium logo&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== TMBv2 ==&lt;br /&gt;
&lt;br /&gt;
On Saturday 15th November 2008 at approximately 8pm London, UK time, TMBv2 was launched.&lt;br /&gt;
&lt;br /&gt;
=== TMBv2 - Background and What's New ===&lt;br /&gt;
&lt;br /&gt;
In May 07 we set out to build our idea of the perfect BitTorrent-based community website. Using the years of experience gained from running TMB we have come to an understanding as to what the most important functions of a BT site are. It was our goal to create a site which encompassed all the great features of TMBv1 and also offered us the flexibility to add new features. Our heavily customised TBDev code has served us well but to achieve the goals for the new site we had to abandon it and start afresh. We put to work the latest standards in web development and set about coding v2. 50,000 lines of code and 18 months later we have created a Bit Torrent codebase like no other. There are items on our wish-list for v2 that have had to be left out for the launch - perfection isn't easy to achieve but we believe that we are 99% there.&lt;br /&gt;
&lt;br /&gt;
A full list of credits can be found [https://themixingbowl.org/credits here] however we would like to take this opportunity to express our thanks to all that have helped us with testing and debugging up to now. This includes the small group of testers who have been with us since the very beginning and all Residents who have participated in testing the Beta. All the time you have contributed to poking and prodding the site during its various stages of development is greatly appreciated.&lt;br /&gt;
&lt;br /&gt;
TMBv2 is highly modular by design which allows us to bolt on new pages and features quickly and easily. In the weeks following the launch our development team will be ironing out bugs which surface when 30K users are let loose on it. As soon as possible we will be looking for your suggestions and input on new features you would like to see.&lt;br /&gt;
&lt;br /&gt;
The behind-the-scenes changes are innumerable and only comprehensible by the truly l33t. However, there has been a large number of changes to the user interface and how users interact with the site.&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=File:Mr-coptangs-lovenasium.gif&amp;diff=4734</id>
		<title>File:Mr-coptangs-lovenasium.gif</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=File:Mr-coptangs-lovenasium.gif&amp;diff=4734"/>
		<updated>2024-11-07T10:02:43Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: Mr Coptang's Lovenasium&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Mr Coptang's Lovenasium&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=File:20041118-mr-coptangs-lovenasium.png&amp;diff=4733</id>
		<title>File:20041118-mr-coptangs-lovenasium.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=File:20041118-mr-coptangs-lovenasium.png&amp;diff=4733"/>
		<updated>2024-11-07T10:01:46Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: Screenshot of Mr Coptang's Lovenasium from 18th November 2004&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Screenshot of Mr Coptang's Lovenasium from 18th November 2004&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=File:20040808-mr-coptangs-mixing-bowl-index.png&amp;diff=4732</id>
		<title>File:20040808-mr-coptangs-mixing-bowl-index.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=File:20040808-mr-coptangs-mixing-bowl-index.png&amp;diff=4732"/>
		<updated>2024-11-07T10:01:22Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Screenshot of TMB from 8th August 2004&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=File:Mrcoptangsmixingbowl2004.jpg&amp;diff=4731</id>
		<title>File:Mrcoptangsmixingbowl2004.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=File:Mrcoptangsmixingbowl2004.jpg&amp;diff=4731"/>
		<updated>2024-11-07T10:01:01Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Screenshot of TMB from 14th July 2004&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=File:20040808-mr-coptangs-mixing-bowl-index.png&amp;diff=4730</id>
		<title>File:20040808-mr-coptangs-mixing-bowl-index.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=File:20040808-mr-coptangs-mixing-bowl-index.png&amp;diff=4730"/>
		<updated>2024-11-07T10:00:10Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Screenshot of TMB back in 8th August 2004&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=File:20040808-mr-coptangs-mixing-bowl-index.png&amp;diff=4729</id>
		<title>File:20040808-mr-coptangs-mixing-bowl-index.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=File:20040808-mr-coptangs-mixing-bowl-index.png&amp;diff=4729"/>
		<updated>2024-11-07T09:46:16Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: Screenshot of TMB back in August 8th 2004&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Screenshot of TMB back in August 8th 2004&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=File:Mrcoptangsmixingbowl2004.jpg&amp;diff=4728</id>
		<title>File:Mrcoptangsmixingbowl2004.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=File:Mrcoptangsmixingbowl2004.jpg&amp;diff=4728"/>
		<updated>2024-11-07T09:36:25Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: full date of capture added&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Screenshot of TMB back in July 14th 2004&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=Links&amp;diff=4727</id>
		<title>Links</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=Links&amp;diff=4727"/>
		<updated>2024-11-07T09:32:39Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: torrent sites links removed as all dead. More link updates and tweaks&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Links that may be useful to the [[TMB]] community. This page is now unlocked so all TMB members can add new links. Please keep them relevant and work safe.&lt;br /&gt;
&lt;br /&gt;
==TMB Links==&lt;br /&gt;
&lt;br /&gt;
*[http://www.openrightsgroup.org/ Open Rights Group] - Looking out for digital rights in the UK.&lt;br /&gt;
*[https://www.themixingbowl.org/rss.xml RSS feed] - TMB RSS feed. See the [[FAQ#How_does_your_RSS_feed_work.3F|FAQ]] for more information.&lt;br /&gt;
*[[:Category:Audio_Tools|Audio Tools]] - TMB wiki audio tool pages&lt;br /&gt;
&lt;br /&gt;
==BitTorrent Information==&lt;br /&gt;
&lt;br /&gt;
*[https://help.bittorrent.com/en/support/solutions/articles/29000039924-what-is-bittorrent-] - Everything you need to know about BitTorrent.&lt;br /&gt;
&lt;br /&gt;
==BitTorrent Software==&lt;br /&gt;
&lt;br /&gt;
*See [[Client_whitelist]]&lt;br /&gt;
&lt;br /&gt;
==Radio shows/stations==&lt;br /&gt;
&lt;br /&gt;
*[https://www.bbc.co.uk/sounds/schedules/bbc_radio_one Radio 1] - BBC Radio 1, home of the Breezeblock, Essential Mix plus many more.&lt;br /&gt;
*[https://www.bbc.co.uk/sounds/schedules/bbc_1xtra 1Xtra] - BBC 1Xtra, Hip Hop, Drum &amp;amp; Bass, Dancehall and more.&lt;br /&gt;
*[http://www.bbc.co.uk/6music/shows/6mix/ 6 Mix] - BBC 6 Music's 6 Mix show; ended Friday 27th March 2015.&lt;br /&gt;
*[http://www.vinylizer.net/ BTTB] - Back To The Basics - Eclectic German radio show.&lt;br /&gt;
*[http://www.ninjatune.net/solidsteel/ Solid Steel] - Ninja Tune radio.&lt;br /&gt;
&lt;br /&gt;
==Tracklists==&lt;br /&gt;
&lt;br /&gt;
*[https://www.mixes.wiki MIXES.WIKI] Premier database for DJ mixes, radio shows and podcasts. Built on the legacy of MixesDB closing on June 29th, 2024&lt;br /&gt;
*[https://swamptowers.blogspot.com/ The Swamp]&lt;br /&gt;
*[https://peel.fandom.com/wiki/John_Peel_Wiki John Peel Wiki]&lt;br /&gt;
*[https://genome.ch.bbc.co.uk/ BBC Genome Project] a website containing BBC listings from 1923-2009]&lt;br /&gt;
*[https://www.tuneid.com/ tuneID] Premier forum for identifying electronic music tracks&lt;br /&gt;
*[https://www.1001tracklists.com/ 1001 Tracklists]&lt;br /&gt;
*[https://trackid.net/ TrackId.net]&lt;br /&gt;
*[http://web.archive.org/web/*/http://www.bbc.co.uk/radio1/schedule/ Radio 1 schedules] Archived on the Wayback Machine from 2002.&lt;br /&gt;
*[https://swamptowers.weebly.com/breezeblock.html The Swamp old] - ''Swamps'' original Breezeblock &amp;amp; 6 Mix tracklist and info site&lt;br /&gt;
&lt;br /&gt;
==Internet tools==&lt;br /&gt;
&lt;br /&gt;
*[http://www.tineye.com/ tineye.com] searches the web with an image, either a url or uploaded by you. also comes as a [http://www.tineye.com/plugin plugin] for [https://addons.mozilla.org/en-US/firefox/addon/8922 firefox] and [https://chrome.google.com/extensions/detail/haebnnbpedcbhciplfhjjkbafijpncjl chrome]&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=FAQ&amp;diff=4725</id>
		<title>FAQ</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=FAQ&amp;diff=4725"/>
		<updated>2024-09-28T11:55:32Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Policy}}&lt;br /&gt;
&lt;br /&gt;
==Site information==&lt;br /&gt;
We intend to be the 1st stop for torrents for: The Essential Mix, The Breezeblock, Kiss FM, XFM, Worldwide, BTTB, One World, Blue Room, The Milk Run, Solid Steel, Annie On One and much more...&lt;br /&gt;
Before you do anything here we suggest you have a look at the [[rules]].&lt;br /&gt;
&lt;br /&gt;
===What is this BitTorrent all about anyway? How do I get the files?===&lt;br /&gt;
&lt;br /&gt;
The idea behind Bittorrent is the SHARING of files. As you download a file you will also upload the parts you already have to help others. Bittorrent only works because other users like you are also sharing the files so please be considerate and leave the files open in your [[:Category:Bittorrent_Client_Guide|bittorrent client]] for as long as you can. The site will keep track of your [[ratio|sharing ratio]], the more you share the more music you have access to.&lt;br /&gt;
&lt;br /&gt;
If you are new to BitTorrent then you will be advised to have a look at the very good [https://lifehacker.com/285489/a-beginners-guide-to-bittorrent|Beginners guide to BitTorrent] which explains how BitTorrent works and how to get started.&lt;br /&gt;
&lt;br /&gt;
For a BitTorrent client we recommend using [[qBittorrent]] or [[uTorrent]]. Both clients keep track of all your torrents for you, making it easier to seed and maintain a decent ratio. See the [[Client whitelist]] for more supported clients.&lt;br /&gt;
&lt;br /&gt;
===Where does the donated money go?===&lt;br /&gt;
&lt;br /&gt;
All donated money goes towards hosting the site.&lt;br /&gt;
&lt;br /&gt;
===How does the auto ban/warning system work?===&lt;br /&gt;
'''Ratio'''&lt;br /&gt;
&lt;br /&gt;
A ratio of 0.3 and lower is considered bad with respect to warnings.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Auto warnings'''&lt;br /&gt;
&lt;br /&gt;
Every day we automatically issue warnings to any account which has a low ratio.  The account then has a warning flag issued recording the date and account statistics when the warning was issued.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Auto bans'''&lt;br /&gt;
&lt;br /&gt;
Every day we automatically ban any account which has been warned for over 30 days and whose ratio hasn't improved.&lt;br /&gt;
&lt;br /&gt;
We also monitor the accounts currently flagged with a warning and will ban any one who is trying to download lots before the auto ban or whose ratio has gotten worse since the warning.&lt;br /&gt;
&lt;br /&gt;
Other non-ratio related warnings can be issued by the admin team for abusive behaviour, persistent commercial uploads etc.&lt;br /&gt;
&lt;br /&gt;
===How does your RSS feed work?===&lt;br /&gt;
&lt;br /&gt;
See [[RSS Feed]]&lt;br /&gt;
&lt;br /&gt;
===How can I contact an admin?===&lt;br /&gt;
&lt;br /&gt;
If you are logged in to the site, use [https://themixingbowl.org/tickets/messageadmin Message Admin] to send a question to the admin team. If you are not able to log in to the site for any reason, use [https://themixingbowl.org/contact/us Contact Us]. In either case your question will be answered by any available admin.&lt;br /&gt;
&lt;br /&gt;
If you message an admin you see online directly on the site you may not get a response, especially if your question is already covered in the FAQ.&lt;br /&gt;
&lt;br /&gt;
==User information==&lt;br /&gt;
&lt;br /&gt;
===I registered an account but did not receive the confirmation e-mail!===&lt;br /&gt;
&lt;br /&gt;
To delete the account so you can re-register, send a message to the admin team with [https://themixingbowl.org/tickets/messageadmin this form]. Note though that if you didn't receive the email the first time it will probably not succeed the second time either so you should really try another email address.&lt;br /&gt;
&lt;br /&gt;
===I've lost my user name or password! Can you send it to me?===&lt;br /&gt;
&lt;br /&gt;
Please use [https://themixingbowl.org/forgot this form] to have the login details mailed back to you.&lt;br /&gt;
&lt;br /&gt;
===Can you rename my account?===&lt;br /&gt;
&lt;br /&gt;
Possibly. Send a message to the admin team explaining why using [https://themixingbowl.org/tickets/messageadmin this form].&lt;br /&gt;
&lt;br /&gt;
===What happens to my account if I don't use it?===&lt;br /&gt;
&lt;br /&gt;
Some user accounts are disabled for inactivity. &lt;br /&gt;
&lt;br /&gt;
Accounts are '''inactive''' if the user hasn't not logged in for 3 months. At 3 months you will get a notification, a reminder after 1 month and disabled if another month passes.&lt;br /&gt;
&lt;br /&gt;
Accounts are '''unused''' if the user has signed up a year ago and not used the account since signing up. Unused accounts will be disabled if not used within 30 days of first notification.&lt;br /&gt;
&lt;br /&gt;
These rules apply to all user and uploader classes. All accounts Resident and above are exempt from being disabled for inactivity.&lt;br /&gt;
Furthermore, if you are seeding at least 5 torrents you will not be disabled (although you will still recieve notifications).&lt;br /&gt;
&lt;br /&gt;
If you know that you will be away from internet for a long time, you may park your account from your profile page. Parked accounts cannot login to the site and use of the tracker is restricted to seeding, i.e. parked accounts can seed but can not download new torrents.&lt;br /&gt;
&lt;br /&gt;
===How do I unpark my account?===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=600 heights=400&amp;gt;&lt;br /&gt;
File:Account-parked.png|Message displayed with a parked account&lt;br /&gt;
File:Account-unparked.png|Message displayed with a just unparked account&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Can you delete my (confirmed) account?===&lt;br /&gt;
&lt;br /&gt;
Send a message to the admin team including the email address you signed up with using [https://themixingbowl.org/tickets/messageadmin this form].&lt;br /&gt;
&lt;br /&gt;
===So, what's MY ratio?===&lt;br /&gt;
&lt;br /&gt;
You can view your ratio on your [https://themixingbowl.org/user/view profile page]&lt;br /&gt;
&lt;br /&gt;
It's important to distinguish between your overall ratio and the individual ratio on each torrent you may be seeding or leeching. The overall ratio takes into account the total uploaded and downloaded from your account since you joined the site. The individual ratio just indicates the values for each torrent.&lt;br /&gt;
&lt;br /&gt;
You may see two symbols instead of a number: &amp;quot;Inf.&amp;quot;, which is just an abbreviation for Infinity, and means that you have downloaded 0 bytes while uploading a non-zero amount (ul/dl becomes infinity); &amp;quot;---&amp;quot;, which should be read as &amp;quot;non-available&amp;quot;, and shows up when you have both downloaded and uploaded 0 bytes (ul/dl = 0/0 which is an indeterminate amount).&lt;br /&gt;
&lt;br /&gt;
===Why is my IP displayed on my details page?===&lt;br /&gt;
&lt;br /&gt;
Only you and the site moderators can view your IP address and email. Regular users do not see that information.&lt;br /&gt;
&lt;br /&gt;
===Why does my profile show &amp;quot;unconnectable&amp;quot;? (And why should I care?)===&lt;br /&gt;
&lt;br /&gt;
The tracker has determined that you are firewalled or NATed and cannot accept incoming connections.  This means that other [[peers]] in the [[swarm]] will be unable to connect to you, only you to them. Even worse, if two peers are both in this state they will not be able to connect at all. This will slow down ''your'' torrents and reduce your chance of being able to upload anything, so it's in your best interests to fix it. &lt;br /&gt;
&lt;br /&gt;
Have a read of the [[How to become connectable]] page or lookup your router on [http://www.portforward.com portforward.com]).&lt;br /&gt;
&lt;br /&gt;
===What are the different user classes?===&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!align=&amp;quot;left&amp;quot; valign=&amp;quot;top&amp;quot; style=&amp;quot;color:#2B4157&amp;quot;|User&lt;br /&gt;
|The default class of new members.&lt;br /&gt;
|-&lt;br /&gt;
!align=&amp;quot;left&amp;quot; valign=&amp;quot;top&amp;quot; style=&amp;quot;color:#2B4157&amp;quot;|User[[Image:star.gif]]&lt;br /&gt;
|Has donated money to themixingbowl.org.&lt;br /&gt;
|-&lt;br /&gt;
!align=&amp;quot;left&amp;quot; valign=&amp;quot;top&amp;quot; style=&amp;quot;color:#00C&amp;quot;|Uploader&lt;br /&gt;
|Allowed to upload torrents. For information on how to become an Uploader please see the uploading section of the FAQ.&lt;br /&gt;
|- &lt;br /&gt;
!align=&amp;quot;left&amp;quot; valign=&amp;quot;top&amp;quot; style=&amp;quot;color:green&amp;quot;|Resident&lt;br /&gt;
|User who has contributed to the site. To become a Resident you must meet ALL the following criteria:&lt;br /&gt;
*Have to be registered on the site for more than 3 months&lt;br /&gt;
*Have a ratio of 1.0+&lt;br /&gt;
*Downloaded more than 5GB&lt;br /&gt;
*At least 5 forum posts&lt;br /&gt;
And at least ONE of the following criteria:&lt;br /&gt;
*Over 200 forum posts&lt;br /&gt;
*Uploaded over 20 individual torrents&lt;br /&gt;
*Uploaded over 100GB&lt;br /&gt;
*Have donated any amount&lt;br /&gt;
''Residents are exempt from being disabled for inactivity''.&lt;br /&gt;
|-&lt;br /&gt;
!align=&amp;quot;left&amp;quot; valign=&amp;quot;top&amp;quot;|Other&lt;br /&gt;
|Customised title. Only an Administrator can customize someones title.&lt;br /&gt;
|-&lt;br /&gt;
!align=&amp;quot;left&amp;quot; valign=&amp;quot;top&amp;quot; style=&amp;quot;color:darkblue&amp;quot;|Broadcaster&lt;br /&gt;
|Participates in the TMB Radio shenanigans. &lt;br /&gt;
|-&lt;br /&gt;
!align=&amp;quot;left&amp;quot; valign=&amp;quot;top&amp;quot; style=&amp;quot;color:darkblue&amp;quot;|Pipecock&lt;br /&gt;
|There is only one Nifty Pipecock.&lt;br /&gt;
|-&lt;br /&gt;
!align=&amp;quot;left&amp;quot; valign=&amp;quot;top&amp;quot; style=&amp;quot;color:purple&amp;quot;|VIP&lt;br /&gt;
|Awarded to a user in recognition of an outstanding contribution to TMB. Our way of saying you're pretty bloody awesome.&lt;br /&gt;
|-&lt;br /&gt;
!align=&amp;quot;left&amp;quot; valign=&amp;quot;top&amp;quot; style=&amp;quot;color:red&amp;quot;|Administrator&lt;br /&gt;
|Can do just about anything.&lt;br /&gt;
|-&lt;br /&gt;
!align=&amp;quot;left&amp;quot; valign=&amp;quot;top&amp;quot; style=&amp;quot;color:red&amp;quot;|SysOp&lt;br /&gt;
|coptang (site owner). RIP.&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Hey! I've seen a Resident with less than 100GB uploaded!===&lt;br /&gt;
&lt;br /&gt;
Members who make an outstanding contribution to The Mixing Bowl may be promoted to Resident before they meet all the normal criteria.&lt;br /&gt;
&lt;br /&gt;
===How do I add an avatar to my profile?===&lt;br /&gt;
&lt;br /&gt;
You can set your avatar from your [https://themixingbowl.org/my/prefs/ Preferences] page.&lt;br /&gt;
&lt;br /&gt;
Select the image you wish to use as you avatar and the click &amp;quot;Submit changes&amp;quot; at the bottom of the page. The site accepts JPEG, PNG and GIF image types and they are resized automatically to the appropriate size for the forum. You can upload files up to 2MB in size, if the original is larger than this you will need to manually reduce it's size before uploading. GIFs are not resized and there is a 100KB file size limit for these.&lt;br /&gt;
&lt;br /&gt;
===Can I become an admin?===&lt;br /&gt;
&lt;br /&gt;
No. I'm afraid getting to be an admin by asking is not possible on themixingbowl.&lt;br /&gt;
&lt;br /&gt;
==Uploading==&lt;br /&gt;
&lt;br /&gt;
===Why can't I upload torrents?===&lt;br /&gt;
&lt;br /&gt;
Only specially authorised users ('''&amp;lt;span style=&amp;quot;color:#00C&amp;quot;&amp;gt;Uploaders&amp;lt;/span&amp;gt;''') have permission to upload torrents.&lt;br /&gt;
&lt;br /&gt;
===What criteria must I meet before I can join the Uploader team?===&lt;br /&gt;
&lt;br /&gt;
Any member can become an uploader. In order to join the uploader group [https://themixingbowl.org/tickets/requestuploader read the instructions and fill out the form on the Uploader Request page] to signify that you've read the rules about what kind of torrents are allowed ('''no commercial releases!''').&lt;br /&gt;
&lt;br /&gt;
Once you've done this an admin will add you to the uploaders group. This is a manual process so please allow a few days for this to happen. You will be sent a PM to confirm when your account has been upgraded.&lt;br /&gt;
&lt;br /&gt;
===General Uploaders Etiquette (Uploading Guidelines)===&lt;br /&gt;
&lt;br /&gt;
Maintain excellence at all times. For a more in-depth discussion of what this involves, see the [[Uploading Guidelines]] page.&lt;br /&gt;
&lt;br /&gt;
===How should I title my torrent? (Torrent Naming Guidelines)===&lt;br /&gt;
&lt;br /&gt;
This is covered in the [[Uploading Guidelines]].&lt;br /&gt;
&lt;br /&gt;
===Why have I been demoted back to a user from uploader status?===&lt;br /&gt;
&lt;br /&gt;
There are a number of reasons you might have been demoted to user from uploader or resident. These include (but are not limited to):&lt;br /&gt;
&lt;br /&gt;
*Uploading commercial releases&lt;br /&gt;
*Uploading stream rips&lt;br /&gt;
*Persistently uploading poorly classified torrents&lt;br /&gt;
*Uploads not following the naming guidelines &lt;br /&gt;
&lt;br /&gt;
===What will happen if I ignore any of the uploading guidelines?===&lt;br /&gt;
&lt;br /&gt;
The upload will be deleted, and if you do it persistently you will be demoted.  If you persistently upload commercial releases or argue with an admin you will probably be banned as well. &lt;br /&gt;
&lt;br /&gt;
===Can I upload the new blahblahblah music video?===&lt;br /&gt;
&lt;br /&gt;
No, music video's are treated the same as single songs and are not allowed.  vj mixes, mashups etc are normally ok, if you are in any doubt at all [https://themixingbowl.org/tickets/messageadmin ask] before uploading.&lt;br /&gt;
&lt;br /&gt;
===Can I upload your torrents to other trackers and/or share them with my friends?===&lt;br /&gt;
&lt;br /&gt;
No. Each torrent you download from here contains a unique ID linking it to your account. If other people try to download using the same torrent they will mess up your stats, which could result in you getting banned.&lt;br /&gt;
&lt;br /&gt;
However, the files you download from us are yours to do as you please. You can always create another torrent, pointing to some other tracker, and upload it to the site of your choice. We only ask you to give credit where it's due.&lt;br /&gt;
&lt;br /&gt;
===How do I create a torrent?===&lt;br /&gt;
&lt;br /&gt;
See the [[:Category:Bittorrent_Client_Guide|Bittorrent client guide]] page for guides on how to create torrents.&lt;br /&gt;
&lt;br /&gt;
==Stats==&lt;br /&gt;
&lt;br /&gt;
===Most common reason for stats not updating===&lt;br /&gt;
&lt;br /&gt;
*The user is cheating. (a.k.a. &amp;quot;Summary Ban&amp;quot;)&lt;br /&gt;
*The server is overloaded and unresponsive. Just try to keep the session open until the server responds again. (Flooding the server with consecutive manual updates is not recommended.)&lt;br /&gt;
*You are using a faulty client. If you want to use an experimental or CVS version you do it at your own risk.&lt;br /&gt;
&lt;br /&gt;
===Best practices===&lt;br /&gt;
&lt;br /&gt;
*If a torrent you are currently leeching/seeding is not listed on your profile, just wait or force a manual update.&lt;br /&gt;
*Make sure you exit your client properly, so that the tracker receives &amp;quot;event=completed&amp;quot;.&lt;br /&gt;
*If the tracker is down, do not stop seeding. As long as the tracker is back up before you exit the client the stats should update properly.&lt;br /&gt;
&lt;br /&gt;
===May I use any bittorrent client?===&lt;br /&gt;
&lt;br /&gt;
NO. See the [[client whitelist]] for details of supported clients.&lt;br /&gt;
&lt;br /&gt;
===Why is a torrent I'm leeching/seeding listed several times in my profile?===&lt;br /&gt;
&lt;br /&gt;
If for some reason (e.g. pc crash, or frozen client) your client exits improperly and you restart it, it will have a new peer_id, so it will show as a new torrent. The old one will never receive a &amp;quot;event=completed&amp;quot; or &amp;quot;event=stopped&amp;quot; and will be listed until some tracker timeout. Just ignore it, it will eventually go away.&lt;br /&gt;
&lt;br /&gt;
Another reason could be that you have given torrents you have downloaded from this site to other people. Each .torrent file you download contains a unique ID that links it to your account. For this reason sharing .torrent files you have downloaded from The Mixing Bowl is forbidden.&lt;br /&gt;
&lt;br /&gt;
===I've finished or cancelled a torrent. Why is it still listed in my profile?===&lt;br /&gt;
&lt;br /&gt;
Some clients, notably TorrentStorm and Nova Torrent, do not report properly to the tracker when cancelling or finishing a torrent. In that case the tracker will keep waiting for some message - and thus listing the torrent as seeding or leeching - until some timeout occurs. Just ignore it, it will eventually go away.&lt;br /&gt;
&lt;br /&gt;
===Multiple IPs (Can I login from different computers?)===&lt;br /&gt;
&lt;br /&gt;
Yes, the tracker is now capable of following sessions from different IPs for the same user. A torrent is associated with the user when it starts, and only at that moment is the IP relevant. So if you want to seed/leech from computer A and computer B with the same account you should access the site from computer A, start the torrent there, and then repeat both steps from computer B (not limited to two computers or to a single torrent on each, this is just the simplest example). You do not need to login again when closing the torrent.&lt;br /&gt;
&lt;br /&gt;
===How does NAT/ICS change the picture?===&lt;br /&gt;
&lt;br /&gt;
All torrents are tracker on a per-client basis. Any number of user accounts and/or Bit Torrent clients can report from the same IP address and account stats will be updated correctly.&lt;br /&gt;
&lt;br /&gt;
===How do I improve my ratio?===&lt;br /&gt;
&lt;br /&gt;
Read the [[One Stop Ratio Shop]] and keep an eye out for [[FAQ#Freeleech|Freeleech]]'s.&lt;br /&gt;
&lt;br /&gt;
==Downloading==&lt;br /&gt;
&lt;br /&gt;
===Why did an active torrent suddenly disappear?===&lt;br /&gt;
&lt;br /&gt;
The most likely reasons are that the uploader deleted it because there was a problem with the release, or an admin/moderator deleted it because it broke the site [[rules]].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;reseed&amp;quot; /&amp;gt;&lt;br /&gt;
===How do I resume a broken download or reseed something?===&lt;br /&gt;
&lt;br /&gt;
Download the original .torrent file from server after that open it in you Bit Torrent client and browse the folder of the torrent you are downloading/reseeding.&lt;br /&gt;
&lt;br /&gt;
===What are these &amp;quot;a piece has failed an hash check&amp;quot; messages?===&lt;br /&gt;
&lt;br /&gt;
Bittorrent clients check the data they receive for integrity. When a piece fails this check it is automatically re-downloaded. Occasional hash fails are a common occurrence, and you shouldn't worry.&lt;br /&gt;
&lt;br /&gt;
Some clients have an (advanced) option/preference to &amp;quot;kick/ban&amp;quot; clients that send you bad data or similar. It should be turned on, since it makes sure that if a peer repeatedly sends you pieces that fail the hash check it will be ignored in the future.&lt;br /&gt;
&lt;br /&gt;
===You have the torrent I want, but there's no seeds so I can't download it!===&lt;br /&gt;
&lt;br /&gt;
It may be possible still to download, first of all - just download it and leave it running. There's possibly seeds out there but don't know anyone wants the torrents, at least if you download it you have a chance. If this fails, you can request a reseed. A link will appear on torrents which are eligable for reseed. See [[reseeds]] for more details.&lt;br /&gt;
&lt;br /&gt;
===The torrent is supposed to be 100MB. How come I downloaded 120MB?===&lt;br /&gt;
&lt;br /&gt;
See the hash fails topic. If your client receives bad data it will have to redownload it, therefore the total downloaded may be larger than the torrent size. Make sure the &amp;quot;kick/ban&amp;quot; option is turned on to minimize the extra downloads.&lt;br /&gt;
&lt;br /&gt;
===What ports can I use with my Bit Torrent client===&lt;br /&gt;
&lt;br /&gt;
Due to the widespread use of Deep Packet Inspection by ISPs the choice of a non standard port to use for Bit Torrent connections no longer improves transfer speeds. The Mixing Bowl does not restrict the usage of any ports for clients however it does recommend the use of [[Protocol_Encryption|protocol encryption]]. Please consult the manual for you client for details on enabling protocol encryption.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;megatorrents&amp;quot;&amp;gt;&lt;br /&gt;
===Why do I get a &amp;quot;You need a better ratio to download megatorrents!&amp;quot; or &amp;quot;This torrent is too big for you to download&amp;quot; message?===&lt;br /&gt;
In order to prevent members from digging a big hole in their ratio they can't get out of, they are prevented from downloading any torrent over 1GB.&lt;br /&gt;
&lt;br /&gt;
You can only download megatorrents with a ratio better than 0.75. If the size of torrent is more than you have downloaded, you must have enough uploaded, such that downloading the torrent will not drop your ratio below 1.0. For example, a 10G torrent can be downloaded by a user with a ratio of 0.8 and 12G downloaded but could not be downloaded by a user with a ratio of 0.8 and 9G downloaded.&lt;br /&gt;
&lt;br /&gt;
===Why do I get a &amp;quot;Your downloads are disabled until further notice&amp;quot; message?===&lt;br /&gt;
An admin may decide to disable your downloads. If this happens you should seed everything that you have snatched, afterwards you can visit the [[One_Stop_Ratio_Shop#Bonus_Points]] page and restore your downloads by purchasing additional download slots.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;longfilenames&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===What does the message &amp;quot;torrent has long filenames&amp;quot; mean?===&lt;br /&gt;
Some OS's (notably Windows) have issues when the combined path to a file exceeds certain lengths. If you see this message, be sure to download this torrent to a directory with a short path, e.g. &amp;lt;code&amp;gt;D:\Music&amp;lt;/code&amp;gt; rather than &amp;lt;code&amp;gt;D:\My music downloads\themixingbowl.org\Radio shows and other mixes\&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We do prevent uploads with exceptionally long paths, however since we are an archive site there are a number of uploads existing that do have long filenames, so caution should be taken with these.&lt;br /&gt;
&lt;br /&gt;
==How can I improve my download speed?==&lt;br /&gt;
&lt;br /&gt;
===Do not immediately jump on new torrents===&lt;br /&gt;
&lt;br /&gt;
The download speed mostly depends on the seeder-to-leecher ratio (SLR). Poor download speed is mainly a problem with new and very popular torrents where the SLR is low.&lt;br /&gt;
&lt;br /&gt;
(Proselytising sidenote: make sure you remember that you did not enjoy the low speed. Seed so that others will not endure the same.)&lt;br /&gt;
&lt;br /&gt;
The best speeds will be found around the half-life of a torrent, when the SLR will be at its highest. (The downside is that you will not be able to seed so much. It's up to you to balance the pros and cons of this.)&lt;br /&gt;
&lt;br /&gt;
===Limit your upload speed===&lt;br /&gt;
&lt;br /&gt;
The upload speed affects the download speed in essentially two ways:&lt;br /&gt;
&lt;br /&gt;
*Bittorrent peers tend to favour those other peers that upload to them. This means that if A and B are leeching the same torrent and A is sending data to B at high speed then B will try to reciprocate. So due to this effect high upload speeds lead to high download speeds.&lt;br /&gt;
*Due to the way TCP works, when A is downloading something from B it has to keep telling B that it received the data sent to him. (These are called acknowledgements - ACKs -, a sort of &amp;quot;got it!&amp;quot; messages). If A fails to do this then B will stop sending data and wait. If A is uploading at full speed there may be no bandwidth left for the ACKs and they will be delayed. So due to this effect excessively high upload speeds lead to low download speeds.&lt;br /&gt;
&lt;br /&gt;
The full effect is a combination of the two. The upload should be kept as high as possible while allowing the ACKs to get through without delay. '''A good thumb rule is keeping the upload at about 80% of the theoretical upload speed.''' You will have to fine tune yours to find out what works best for you. (Remember that keeping the upload high has the additional benefit of helping with your ratio.)&lt;br /&gt;
&lt;br /&gt;
===Limit the number of simultaneous connections===&lt;br /&gt;
&lt;br /&gt;
Some operating systems (like Windows 9x) do not deal well with a large number of connections, and may even crash. Also some home routers (particularly when running NAT and/or firewall with stateful inspection services) tend to become slow or crash when having to deal with too many connections. There are no fixed values for this, you may try 60 or 100 and experiment with the value. Note that these numbers are additive, if you have two instances of a client running the numbers add up.&lt;br /&gt;
&lt;br /&gt;
===Limit the number of simultaneous uploads===&lt;br /&gt;
&lt;br /&gt;
Isn't this the same as above? No. Connections limit the number of peers your client is talking to and/or downloading from. Uploads limit the number of peers your client is actually uploading to. The ideal number is typically much lower than the number of connections, and highly dependent on your (physical) connection.&lt;br /&gt;
&lt;br /&gt;
===Just give it some time===&lt;br /&gt;
&lt;br /&gt;
As explained above peers favour other peers that upload to them. When you start leeching a new torrent you have nothing to offer to other peers and they will tend to ignore you. This makes the starts slow, in particular if, by change, the peers you are connected to include few or no seeders. The download speed should increase as soon as you have some pieces to share.&lt;br /&gt;
&lt;br /&gt;
===Why is my internet so slow while leeching?===&lt;br /&gt;
&lt;br /&gt;
Your internet bandwidth is always finite. If you are a peer in a fast torrent it may saturate your connection, and your browsing will suffer. From your client you can limit the download and upload speed to mitigate this.&lt;br /&gt;
&lt;br /&gt;
Browsing was used just as an example, the same would apply to gaming, IMing, etc...&lt;br /&gt;
&lt;br /&gt;
==Proxy/VPN use==&lt;br /&gt;
&lt;br /&gt;
===Site===&lt;br /&gt;
&lt;br /&gt;
If you wish to use a VPN to browse the site, it must be a paid for service that allows you to specify a server/region (or be based in a static location).&lt;br /&gt;
You may also browse the site using your seedbox or private server.&lt;br /&gt;
You should always let staff know by sending a [https://themixingbowl.org/contact/us staff PM] before using the VPN. If possible, please include what service it is, the location, and IP(s).&lt;br /&gt;
Tor, public proxies, and other freely available services are strictly prohibited and your account is likely to be disabled if you use them.&lt;br /&gt;
&lt;br /&gt;
===Tracker===&lt;br /&gt;
&lt;br /&gt;
It is permissible to use almost any type of connection - including public proxies - for P2P bittorrent traffic. Users can seed and download torrent pieces, and announce data to the tracker, from any connection they wish - with the exception of Tor which is forbidden.&lt;br /&gt;
&lt;br /&gt;
It is worth noting that due to a combination of factors (increased latency, worse peering, bottlenecked traffic, inability to port forward, etc), users seeding from behind a proxy could see their upload speeds/net upload traffic decrease.&lt;br /&gt;
&lt;br /&gt;
==Freeleech==&lt;br /&gt;
&lt;br /&gt;
===What is Freeleech?===&lt;br /&gt;
Freeleech is where your ratio doesn't take a hit for downloading a torrent, but your ratio benefits from the uploads.  They are a useful way of improving your ratio. Any user, regardless of current ratio and downloaded amount, can download these freeleech torrents; all restrictions are removed.&lt;br /&gt;
&lt;br /&gt;
===Where can I find TMB torrents that are Freeleech?===&lt;br /&gt;
&lt;br /&gt;
* All [https://tmb.dj/forum/view/21/ Readers Mixes] are Freeleech.&lt;br /&gt;
* TMB has regular '''Freeleech of the Week''' picks ('''FLOTW''') that highlight a member-suggested [https://tmb.dj/forum/view/22/ Megatorrent].  These are announced as news items, so keep your eyes open.&lt;br /&gt;
* All current Freeleech torrents can be found via the [https://tmb.dj/torrent/advancedsearch/ Advanced Search] page by ticking the &amp;quot;'''Free'''&amp;quot; checkbox.&lt;br /&gt;
&lt;br /&gt;
===How can I suggest a Megatorrent for Freeleech?===&lt;br /&gt;
&lt;br /&gt;
* Make suggestions for future Megatorrents using the [https://themixingbowl.org/bonus/torrent/ Nominate a torrent] fucntion.&lt;br /&gt;
&lt;br /&gt;
==What if I can't find the answer to my problem here?==&lt;br /&gt;
&lt;br /&gt;
===You can try these:===&lt;br /&gt;
&lt;br /&gt;
Post in the [https://www.themixingbowl.org/forum/ forums], by all means. You'll find they are usually a friendly and helpful place, provided you follow a few basic guidelines:&lt;br /&gt;
&lt;br /&gt;
*Make sure your problem is not really in this FAQ. There's no point in posting just to be sent back here.&lt;br /&gt;
*Before posting read the sticky topics (the ones at the top). Many times new information that still hasn't been incorporated in the FAQ can be found there.&lt;br /&gt;
*Make just one thread for your issue, an admin can move your thread to the right forum so you don't need to post in them all.&lt;br /&gt;
*Help us in helping you. Do not just say &amp;quot;it doesn't work!&amp;quot;. Provide details so that we don't have to guess or waste time asking. What client do you use? What's your OS? What's your network setup? What's the exact error message you get, if any? What are the torrents you are having problems with? The more you tell the easiest it will be for us, and the more probable your post will get a reply.&lt;br /&gt;
*And needless to say: be polite. Demanding help rarely works, asking for it usually does the trick.&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=File:Account-unparked.png&amp;diff=4724</id>
		<title>File:Account-unparked.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=File:Account-unparked.png&amp;diff=4724"/>
		<updated>2024-09-28T11:46:51Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: Account Unparked Message&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Account Unparked Message&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=File:Account-parked.png&amp;diff=4723</id>
		<title>File:Account-parked.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=File:Account-parked.png&amp;diff=4723"/>
		<updated>2024-09-28T11:42:19Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: Account Parked Message&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Account Parked Message&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=Links&amp;diff=4722</id>
		<title>Links</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=Links&amp;diff=4722"/>
		<updated>2024-09-10T17:40:54Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: /* Tracklists */ updated a load of links&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Links that may be useful to the [[TMB]] community. This page is now unlocked so all TMB members can add new links. Please keep them relevant and work safe.&lt;br /&gt;
&lt;br /&gt;
==TMB Links==&lt;br /&gt;
&lt;br /&gt;
*[http://www.openrightsgroup.org/ Open Rights Group] - Looking out for digital rights in the UK.&lt;br /&gt;
*[https://www.themixingbowl.org/rss.xml RSS feed] - TMB RSS feed. See the [[FAQ#How_does_your_RSS_feed_work.3F|FAQ]] for more information.&lt;br /&gt;
*[[:Category:Audio_Tools|Audio Tools]] - TMB wiki audio tool pages&lt;br /&gt;
&lt;br /&gt;
==BitTorrent Information==&lt;br /&gt;
&lt;br /&gt;
*[http://help.bittorrent.com/customer/en/portal/articles/178790-the-basics-of-bittorrent The Basics of BitTorrent] - Everything you need to know about BitTorrent.&lt;br /&gt;
&lt;br /&gt;
==BitTorrent Software==&lt;br /&gt;
&lt;br /&gt;
*[https://www.utorrent.com/ µTorrent] - &amp;quot;A (very) tiny BitTorrent client&amp;quot;.&lt;br /&gt;
*[https://www.qbittorrent.org/ qBittorrent] - The qBittorrent project aims to provide an open-source software alternative to µTorrent.&lt;br /&gt;
*[http://www.deluge-torrent.org/ Deluge] - Open source, cross-platform BitTorrent client.&lt;br /&gt;
&lt;br /&gt;
==Radio shows/stations==&lt;br /&gt;
&lt;br /&gt;
*[http://www.bbc.co.uk/radio1/ Radio 1] - BBC Radio 1, home of the Breezeblock, Essential Mix plus many more.&lt;br /&gt;
*[http://www.bbc.co.uk/1xtra/ 1Xtra] - BBC 1Xtra, Hip Hop, Drum &amp;amp; Bass, Dancehall and more.&lt;br /&gt;
*[http://www.bbc.co.uk/6music/shows/6mix/ 6 Mix] - BBC 6 Music's 6 Mix show.&lt;br /&gt;
*[http://www.vinylizer.net/ BTTB] - Back To The Basics - Eclectic German radio show.&lt;br /&gt;
*[http://www.ninjatune.net/solidsteel/ Solid Steel] - Ninja Tune radio.&lt;br /&gt;
&lt;br /&gt;
==Tracklists==&lt;br /&gt;
&lt;br /&gt;
*[https://www.mixes.wiki MIXES.WIKI] Premier database for DJ mixes, radio shows and podcasts. Built on the legacy of MixesDB closing on June 29th, 2024&lt;br /&gt;
*[https://swamptowers.blogspot.com/ The Swamp]&lt;br /&gt;
*[https://peel.fandom.com/wiki/John_Peel_Wiki John Peel Wiki]&lt;br /&gt;
*[https://genome.ch.bbc.co.uk/ BBC Genome Project] a website containing BBC listings from 1923-2009]&lt;br /&gt;
*[https://www.tuneid.com/ tuneID] Premier forum for identifying electronic music tracks&lt;br /&gt;
*[https://www.1001tracklists.com/ 1001 Tracklists]&lt;br /&gt;
*[https://trackid.net/ TrackId.net]&lt;br /&gt;
*[http://web.archive.org/web/*/http://www.bbc.co.uk/radio1/schedule/ Radio 1 schedules] Archived on the Wayback Machine from 2002.&lt;br /&gt;
*[https://swamptowers.weebly.com/breezeblock.html The Swamp old] - ''Swamps'' original Breezeblock &amp;amp; 6 Mix tracklist and info site&lt;br /&gt;
&lt;br /&gt;
==Torrent Sites==&lt;br /&gt;
&lt;br /&gt;
*[http://www.mvgroup.org/forums/index.php? MV Group] - Torrent releases of quality documentary and science series.&lt;br /&gt;
*[http://www.sonofshun.com Son of Shun] - Contains shows related to politics, science, sociological, and documentaries.&lt;br /&gt;
*[http://www.Global-Sets.com Global-Sets] - Best tracker for torrents!&lt;br /&gt;
&lt;br /&gt;
==Internet tools==&lt;br /&gt;
&lt;br /&gt;
*[http://www.tineye.com/ tineye.com] searches the web with an image, either a url or uploaded by you. also comes as a [http://www.tineye.com/plugin plugin] for [https://addons.mozilla.org/en-US/firefox/addon/8922 firefox] and [https://chrome.google.com/extensions/detail/haebnnbpedcbhciplfhjjkbafijpncjl chrome]&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=Cue_sheet&amp;diff=4721</id>
		<title>Cue sheet</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=Cue_sheet&amp;diff=4721"/>
		<updated>2024-09-10T17:40:38Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: updated a load of links&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Cue sheets''' are used to provide index information for a large audio file. Cue sheets have the file extension &amp;quot;.cue&amp;quot;, and are simple plain text files. &lt;br /&gt;
&lt;br /&gt;
Cue sheets are especially useful for DJ mixes where the resulting audio file is one long [[mp3]]. With a tracklist a cue sheet can be created that will allow you to access the tracks very easily. Remember though: cue sheets only work with compatible software.&lt;br /&gt;
&lt;br /&gt;
= Playing Cue sheets =&lt;br /&gt;
&lt;br /&gt;
Cue sheets are only useful if you can play them! Here is a list of compatible software players:&lt;br /&gt;
&lt;br /&gt;
* [[Foobar2000]] has native support for cue sheets (Windows)&lt;br /&gt;
* [[Winamp]]&lt;br /&gt;
* [http://www.mplayerhq.hu/ MPlayer] (Windows/Linux)&lt;br /&gt;
* [https://mpesch3.de/1by1.html 1by1 player] (Windows)&lt;br /&gt;
* [http://mediamonkey.com MediaMonkey] with [http://trixmoto.net/mm/scripts.php?id=3 CueReader] (Windows)&lt;br /&gt;
* [https://amarok.kde.org/ Amarok] (Linux)&lt;br /&gt;
&lt;br /&gt;
== Winamp Plugins ==&lt;br /&gt;
* [https://winampheritage.com/plugin/cue-player/143011 Cue Player] Plugin for Winamp (Windows)&lt;br /&gt;
* [http://brianvictor.tripod.com/mp3cue.htm#download mp3cue] Plugin for Winamp with XMMS (Linux)&lt;br /&gt;
&lt;br /&gt;
For the plugins all you have to do is have the cue and the mp3 file in the same folder and ideally with the same filename: &lt;br /&gt;
* for most players just drag the cue sheet inside the main or playlist window, and it works just fine&lt;br /&gt;
* for the '''mp3cue''' plugin it's different - here you drag the mp3 file inside the Winamp window and the cue will open in a separate window.&lt;br /&gt;
&lt;br /&gt;
All plugins will show up the track name, and at the end of each track it will keep on playing without any gaps at the end of song, coz it will keep on going smoothly throughout the whole mix, coz you gotta remember its playing one mp3.&lt;br /&gt;
&lt;br /&gt;
== MediaMonkey Scripts ==&lt;br /&gt;
* [https://www.riklewis.com/mediamonkey/scripts.php?id=3 CueReader]&lt;br /&gt;
The cue file has to be in the same directory and have the same filename. If you are getting a warning message whenever you load a file, take a look at your Internet Explorer Security settings for Local Area Network. This didn't seem to change much for me, and found this from [http://www.mediamonkey.com/forum/viewtopic.php?f=2&amp;amp;t=6847&amp;amp;start=210&amp;amp;st=0&amp;amp;sk=t&amp;amp;sd=a MediaMonkey forums]: &lt;br /&gt;
&lt;br /&gt;
* Run regedit.exe&lt;br /&gt;
* Goto HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\0&lt;br /&gt;
* Modify key 1201 = 0&lt;br /&gt;
&lt;br /&gt;
This enables the above option in your My Computer zone, apparently.&lt;br /&gt;
&lt;br /&gt;
= Splitting Cue Sheets =&lt;br /&gt;
&lt;br /&gt;
You can split a long audio file into smaller audio files by using a cue splitter&lt;br /&gt;
* [http://www.medieval.it/content/view/28/70/ Medieval CUE Splitter]&lt;br /&gt;
* [[MP3DirectCut]]&lt;br /&gt;
&lt;br /&gt;
= Creating Cue sheets =&lt;br /&gt;
&lt;br /&gt;
To understand the make-up of a cue sheet please see the [http://wiki.hydrogenaudio.org/index.php?title=Cue_sheet Hydrogenaudio.org Cue Sheet wiki].&lt;br /&gt;
&lt;br /&gt;
Cue sheets are just text files with the file extension set as '''.cue'''. Thus, one of the easiest ways to create a cue sheet is to use a text editor like Notepad and create a template:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
REM GENRE Dubstep/IDM/Electronica&lt;br /&gt;
REM DATE 2008&lt;br /&gt;
REM COMMENT Excellent&lt;br /&gt;
TITLE &amp;quot;Electronic Explorations - 001 - Milanese&amp;quot;&lt;br /&gt;
FILE &amp;quot;ElectronicExplorations_001_Milanese.mp3&amp;quot; WAVE&lt;br /&gt;
  TRACK 01 AUDIO&lt;br /&gt;
    TITLE &amp;quot;Intro&amp;quot;&lt;br /&gt;
    PERFORMER &amp;quot;Electronic Explorations&amp;quot;&lt;br /&gt;
    INDEX 01 00:00:00&lt;br /&gt;
  TRACK 02 AUDIO&lt;br /&gt;
    TITLE &amp;quot;Sneak Up&amp;quot;&lt;br /&gt;
    PERFORMER &amp;quot;215 T.F.K.&amp;quot;&lt;br /&gt;
    INDEX 01 00:33:36&lt;br /&gt;
  TRACK 03 AUDIO&lt;br /&gt;
    TITLE &amp;quot;Three Drops (Original Mix)&amp;quot;&lt;br /&gt;
    PERFORMER &amp;quot;October&amp;quot;&lt;br /&gt;
    INDEX 01 04:02:39&lt;br /&gt;
  TRACK 04 AUDIO&lt;br /&gt;
    TITLE &amp;quot;Sissy Spacek (Ruff)&amp;quot;&lt;br /&gt;
    PERFORMER &amp;quot;Bong-Ra&amp;quot;&lt;br /&gt;
    INDEX 01 06:28:56&lt;br /&gt;
  TRACK 05 AUDIO&lt;br /&gt;
    TITLE &amp;quot;Miserere&amp;quot;&lt;br /&gt;
    PERFORMER &amp;quot;Quark Ruckspin and Planas&amp;quot;&lt;br /&gt;
    INDEX 01 10:40:37&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
All you have to do is then amend the '''FILE''' and '''TITLE''' at the top of the cue sheet as appropriate. Also, amend the individual '''TRACK''' '''TITLE''' and '''PERFORMER''' and '''INDEX''' values.&lt;br /&gt;
&lt;br /&gt;
== Guide To Making A Cue Sheet Work ==&lt;br /&gt;
&lt;br /&gt;
The following is a step-by-step guide to help the uninitiated make use of a cue sheet (on Windows):&lt;br /&gt;
&lt;br /&gt;
#On your Windows PC go to ''My Computer'' &amp;gt; ''Tools'' &amp;gt; ''Folder Options'' &amp;gt; ''View'' &amp;gt; untick ''Hide extensions for known file types''. &lt;br /&gt;
#:*This will allow you to view the entire filename (e.g. ''my-mix.cue'') and will make things easier in the following steps.&lt;br /&gt;
#If someone has detailed the contents of a cue sheet and you want to make a cue sheet from that then simply copy all the text and paste into a text file:&lt;br /&gt;
#:*Open up ''Notepad'', paste the text into it and '''save as''' ''filename.cue'' (remember to ensure the filename extension is '''.cue''').&lt;br /&gt;
#::*If you didn't do the above correctly, don't worry. Simply navigate to where you saved the cue sheet and edit the filename in Windows Exploring. Just replace the '''.txt''' with '''.cue'''.&lt;br /&gt;
#:::*Try to always name the cue sheet the same as the mp3 (with the exception of the extension). For example: ''my-mix.mp3'' and ''my-mix.cue''. This is because a lot of audio software players that support cue sheets also require the same filename for the audio file and cue sheet.&lt;br /&gt;
#It's very likely that cue sheets will not be associated with any program, especially not an audio software player. &lt;br /&gt;
##[[Foobar2000]] allows you to associate many audio file types within it's program:&lt;br /&gt;
##::*''File'' &amp;gt; ''Preferences'' &amp;gt; ''File Types''&lt;br /&gt;
##Another way to associate cue sheets with an audio software player that supports cue sheets is as follows:&lt;br /&gt;
##::*''right-click the cue sheet'' &amp;gt; ''Properties'' &amp;gt; ''Change...'' button &amp;gt; select the program you wish to use. Now whenever you double click the cue sheet it will load into the audio player.&lt;br /&gt;
&lt;br /&gt;
== Cue Sheet Creation Tools ==&lt;br /&gt;
&lt;br /&gt;
There are various tools that can create and edit cue sheets:&lt;br /&gt;
* [https://cuegenerator.net/ Cue Generator]&lt;br /&gt;
* [https://cuenation.com/tools/ CueNation Tools]&lt;br /&gt;
* [https://web.archive.org/web/20230607121739/http://qed.qproject.org/ QeD: Liveset cue-sheet editor] - feature rich&lt;br /&gt;
* [https://cuemaster.org/ CueMaster - cues from CDDB/FreeDB entries]&lt;br /&gt;
* [http://www.milosoftware.com/en/index.php?body=cdwave.php CD Wave], instructions for creating cue sheets with [[CD Wave]]&lt;br /&gt;
Most cue sites with cue sheet generators also allow the upload of cues in this way building cue-sheet collections.&lt;br /&gt;
&lt;br /&gt;
= Finding Cue sheets =&lt;br /&gt;
&lt;br /&gt;
Sites that provide cue sheets for download (roughly in the order of popularity and stored content): &lt;br /&gt;
* [https://cuenation.com/ cuenation]&lt;br /&gt;
Actively maintained with many cue sheets for newest DJ sets (mainly Trance &amp;amp; Progressive).&lt;br /&gt;
&lt;br /&gt;
* [http://www.regeert.nl/cuesheet/ Cue Sheet Heaven] &lt;br /&gt;
The site contains 15200+ cues mainly for DJ sets before 2007.&lt;br /&gt;
&lt;br /&gt;
= Burning Cue sheets to an audio CD =&lt;br /&gt;
&lt;br /&gt;
* [[Foobar2000]]&lt;br /&gt;
* [[Cdrtfe]]&lt;br /&gt;
* [[Burrrn]]&lt;br /&gt;
* [http://www.imgburn.com/ ImgBurn]&lt;br /&gt;
&lt;br /&gt;
= Looking for tracklistings (as a precondition for preparing cues) =&lt;br /&gt;
&lt;br /&gt;
Sometimes you will find a few cues as well...&lt;br /&gt;
* [https://www.mixes.wiki MIXES.WIKI] built on the legacy of MixesDB closing on June 29th, 2024&lt;br /&gt;
* [https://www.1001tracklists.com/ 1001 Tracklists]&lt;br /&gt;
* [https://trackid.net/ TrackId.net]&lt;br /&gt;
* [https://tracklistings.co.uk/ Tracklistings.co.uk]&lt;br /&gt;
* [https://gnudb.org/ gnudb.org] (replaced FreeDB)&lt;br /&gt;
* [https://web.archive.org/web/20220811122019/https://www.essentialmix.nu/ Essential Mix Tracklistings]&lt;br /&gt;
* And check for more on our [[Links]] page as well.&lt;br /&gt;
&lt;br /&gt;
= Misc =&lt;br /&gt;
[[CUETools]]&lt;br /&gt;
&lt;br /&gt;
Also check the Wikipedia entry for more info on the cue-sheet syntax and for some info about using cue-sheets with CD images [http://en.wikipedia.org/wiki/Cue_sheet_%28computing%29]!&lt;br /&gt;
&lt;br /&gt;
[[category:Audio Tools]]&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=Client_whitelist&amp;diff=4720</id>
		<title>Client whitelist</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=Client_whitelist&amp;diff=4720"/>
		<updated>2024-02-10T09:34:28Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following clients are supported with our tracker:&lt;br /&gt;
&lt;br /&gt;
* [https://www.qbittorrent.org/ qBittorrent] 3.x, 4.x -- ''recommended client''&lt;br /&gt;
* uTorrent 1.8.x, 2.0.4, 2.2.x, 3.5.x&lt;br /&gt;
* uTorrent (Mac) 1.x&lt;br /&gt;
* [https://apps.kde.org/en-gb/ktorrent/ KTorrent] 4.3.x&lt;br /&gt;
* [https://www.rasterbar.com/products/libtorrent/ Libtorrent (Rasterbar)] 0.1, 0.15, 0.16.x, 1.x&lt;br /&gt;
* [http://rakshasa.github.io/rtorrent/ rtorrent] 0.12.x, 0.13.x&lt;br /&gt;
* Mainline (bittorent) 6.4, 7.x (up to 7.8.x)&lt;br /&gt;
* [https://transmissionbt.com/ Transmission] 1.7.x, 2.x, 3.0, 4.0&lt;br /&gt;
* [https://deluge-torrent.org/ Deluge] 1.3x&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Please note: we do not recommend uTorrent and Mainline, but they are still currently whitelisted with the versions noted.&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=Cue_sheet&amp;diff=4719</id>
		<title>Cue sheet</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=Cue_sheet&amp;diff=4719"/>
		<updated>2024-01-17T21:04:08Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: /* Looking for tracklistings (as a precondition for preparing cues) */ url changed to archive.org for ssentialmix.nu as it's gone :-(&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Cue sheets''' are used to provide index information for a large audio file. Cue sheets have the file extension &amp;quot;.cue&amp;quot;, and are simple plain text files. &lt;br /&gt;
&lt;br /&gt;
Cue sheets are especially useful for DJ mixes where the resulting audio file is one long [[mp3]]. With a tracklist a cue sheet can be created that will allow you to access the tracks very easily. Remember though: cue sheets only work with compatible software.&lt;br /&gt;
&lt;br /&gt;
= Playing Cue sheets =&lt;br /&gt;
&lt;br /&gt;
Cue sheets are only useful if you can play them! Here is a list of compatible software players:&lt;br /&gt;
&lt;br /&gt;
* [[Foobar2000]] has native support for cue sheets (Windows)&lt;br /&gt;
* [[Winamp]]&lt;br /&gt;
* [http://www.mplayerhq.hu/ MPlayer] (Windows/Linux)&lt;br /&gt;
* [https://mpesch3.de/1by1.html 1by1 player] (Windows)&lt;br /&gt;
* [http://mediamonkey.com MediaMonkey] with [http://trixmoto.net/mm/scripts.php?id=3 CueReader] (Windows)&lt;br /&gt;
* [https://amarok.kde.org/ Amarok] (Linux)&lt;br /&gt;
&lt;br /&gt;
== Winamp Plugins ==&lt;br /&gt;
* [https://winampheritage.com/plugin/cue-player/143011 Cue Player] Plugin for Winamp (Windows)&lt;br /&gt;
* [http://brianvictor.tripod.com/mp3cue.htm#download mp3cue] Plugin for Winamp with XMMS (Linux)&lt;br /&gt;
&lt;br /&gt;
For the plugins all you have to do is have the cue and the mp3 file in the same folder and ideally with the same filename: &lt;br /&gt;
* for most players just drag the cue sheet inside the main or playlist window, and it works just fine&lt;br /&gt;
* for the '''mp3cue''' plugin it's different - here you drag the mp3 file inside the Winamp window and the cue will open in a separate window.&lt;br /&gt;
&lt;br /&gt;
All plugins will show up the track name, and at the end of each track it will keep on playing without any gaps at the end of song, coz it will keep on going smoothly throughout the whole mix, coz you gotta remember its playing one mp3.&lt;br /&gt;
&lt;br /&gt;
== MediaMonkey Scripts ==&lt;br /&gt;
* [https://www.riklewis.com/mediamonkey/scripts.php?id=3 CueReader]&lt;br /&gt;
The cue file has to be in the same directory and have the same filename. If you are getting a warning message whenever you load a file, take a look at your Internet Explorer Security settings for Local Area Network. This didn't seem to change much for me, and found this from [http://www.mediamonkey.com/forum/viewtopic.php?f=2&amp;amp;t=6847&amp;amp;start=210&amp;amp;st=0&amp;amp;sk=t&amp;amp;sd=a MediaMonkey forums]: &lt;br /&gt;
&lt;br /&gt;
* Run regedit.exe&lt;br /&gt;
* Goto HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\0&lt;br /&gt;
* Modify key 1201 = 0&lt;br /&gt;
&lt;br /&gt;
This enables the above option in your My Computer zone, apparently.&lt;br /&gt;
&lt;br /&gt;
= Splitting Cue Sheets =&lt;br /&gt;
&lt;br /&gt;
You can split a long audio file into smaller audio files by using a cue splitter&lt;br /&gt;
* [http://www.medieval.it/content/view/28/70/ Medieval CUE Splitter]&lt;br /&gt;
* [[MP3DirectCut]]&lt;br /&gt;
&lt;br /&gt;
= Creating Cue sheets =&lt;br /&gt;
&lt;br /&gt;
To understand the make-up of a cue sheet please see the [http://wiki.hydrogenaudio.org/index.php?title=Cue_sheet Hydrogenaudio.org Cue Sheet wiki].&lt;br /&gt;
&lt;br /&gt;
Cue sheets are just text files with the file extension set as '''.cue'''. Thus, one of the easiest ways to create a cue sheet is to use a text editor like Notepad and create a template:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
REM GENRE Dubstep/IDM/Electronica&lt;br /&gt;
REM DATE 2008&lt;br /&gt;
REM COMMENT Excellent&lt;br /&gt;
TITLE &amp;quot;Electronic Explorations - 001 - Milanese&amp;quot;&lt;br /&gt;
FILE &amp;quot;ElectronicExplorations_001_Milanese.mp3&amp;quot; WAVE&lt;br /&gt;
  TRACK 01 AUDIO&lt;br /&gt;
    TITLE &amp;quot;Intro&amp;quot;&lt;br /&gt;
    PERFORMER &amp;quot;Electronic Explorations&amp;quot;&lt;br /&gt;
    INDEX 01 00:00:00&lt;br /&gt;
  TRACK 02 AUDIO&lt;br /&gt;
    TITLE &amp;quot;Sneak Up&amp;quot;&lt;br /&gt;
    PERFORMER &amp;quot;215 T.F.K.&amp;quot;&lt;br /&gt;
    INDEX 01 00:33:36&lt;br /&gt;
  TRACK 03 AUDIO&lt;br /&gt;
    TITLE &amp;quot;Three Drops (Original Mix)&amp;quot;&lt;br /&gt;
    PERFORMER &amp;quot;October&amp;quot;&lt;br /&gt;
    INDEX 01 04:02:39&lt;br /&gt;
  TRACK 04 AUDIO&lt;br /&gt;
    TITLE &amp;quot;Sissy Spacek (Ruff)&amp;quot;&lt;br /&gt;
    PERFORMER &amp;quot;Bong-Ra&amp;quot;&lt;br /&gt;
    INDEX 01 06:28:56&lt;br /&gt;
  TRACK 05 AUDIO&lt;br /&gt;
    TITLE &amp;quot;Miserere&amp;quot;&lt;br /&gt;
    PERFORMER &amp;quot;Quark Ruckspin and Planas&amp;quot;&lt;br /&gt;
    INDEX 01 10:40:37&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
All you have to do is then amend the '''FILE''' and '''TITLE''' at the top of the cue sheet as appropriate. Also, amend the individual '''TRACK''' '''TITLE''' and '''PERFORMER''' and '''INDEX''' values.&lt;br /&gt;
&lt;br /&gt;
== Guide To Making A Cue Sheet Work ==&lt;br /&gt;
&lt;br /&gt;
The following is a step-by-step guide to help the uninitiated make use of a cue sheet (on Windows):&lt;br /&gt;
&lt;br /&gt;
#On your Windows PC go to ''My Computer'' &amp;gt; ''Tools'' &amp;gt; ''Folder Options'' &amp;gt; ''View'' &amp;gt; untick ''Hide extensions for known file types''. &lt;br /&gt;
#:*This will allow you to view the entire filename (e.g. ''my-mix.cue'') and will make things easier in the following steps.&lt;br /&gt;
#If someone has detailed the contents of a cue sheet and you want to make a cue sheet from that then simply copy all the text and paste into a text file:&lt;br /&gt;
#:*Open up ''Notepad'', paste the text into it and '''save as''' ''filename.cue'' (remember to ensure the filename extension is '''.cue''').&lt;br /&gt;
#::*If you didn't do the above correctly, don't worry. Simply navigate to where you saved the cue sheet and edit the filename in Windows Exploring. Just replace the '''.txt''' with '''.cue'''.&lt;br /&gt;
#:::*Try to always name the cue sheet the same as the mp3 (with the exception of the extension). For example: ''my-mix.mp3'' and ''my-mix.cue''. This is because a lot of audio software players that support cue sheets also require the same filename for the audio file and cue sheet.&lt;br /&gt;
#It's very likely that cue sheets will not be associated with any program, especially not an audio software player. &lt;br /&gt;
##[[Foobar2000]] allows you to associate many audio file types within it's program:&lt;br /&gt;
##::*''File'' &amp;gt; ''Preferences'' &amp;gt; ''File Types''&lt;br /&gt;
##Another way to associate cue sheets with an audio software player that supports cue sheets is as follows:&lt;br /&gt;
##::*''right-click the cue sheet'' &amp;gt; ''Properties'' &amp;gt; ''Change...'' button &amp;gt; select the program you wish to use. Now whenever you double click the cue sheet it will load into the audio player.&lt;br /&gt;
&lt;br /&gt;
== Cue Sheet Creation Tools ==&lt;br /&gt;
&lt;br /&gt;
There are various tools that can create and edit cue sheets:&lt;br /&gt;
* [https://cuegenerator.net/ Cue Generator]&lt;br /&gt;
* [https://cuenation.com/tools/ CueNation Tools]&lt;br /&gt;
* [https://web.archive.org/web/20230607121739/http://qed.qproject.org/ QeD: Liveset cue-sheet editor] - feature rich&lt;br /&gt;
* [https://cuemaster.org/ CueMaster - cues from CDDB/FreeDB entries]&lt;br /&gt;
* [http://www.milosoftware.com/en/index.php?body=cdwave.php CD Wave], instructions for creating cue sheets with [[CD Wave]]&lt;br /&gt;
Most cue sites with cue sheet generators also allow the upload of cues in this way building cue-sheet collections.&lt;br /&gt;
&lt;br /&gt;
= Finding Cue sheets =&lt;br /&gt;
&lt;br /&gt;
Sites that provide cue sheets for download (roughly in the order of popularity and stored content): &lt;br /&gt;
* [https://cuenation.com/ cuenation]&lt;br /&gt;
Actively maintained with many cue sheets for newest DJ sets (mainly Trance &amp;amp; Progressive).&lt;br /&gt;
&lt;br /&gt;
* [http://www.regeert.nl/cuesheet/ Cue Sheet Heaven] &lt;br /&gt;
The site contains 15200+ cues mainly for DJ sets before 2007.&lt;br /&gt;
&lt;br /&gt;
= Burning Cue sheets to an audio CD =&lt;br /&gt;
&lt;br /&gt;
* [[Foobar2000]]&lt;br /&gt;
* [[Cdrtfe]]&lt;br /&gt;
* [[Burrrn]]&lt;br /&gt;
* [http://www.imgburn.com/ ImgBurn]&lt;br /&gt;
&lt;br /&gt;
= Looking for tracklistings (as a precondition for preparing cues) =&lt;br /&gt;
&lt;br /&gt;
Sometimes you will find a few cues as well...&lt;br /&gt;
* [https://gnudb.org/search.php gnudb.org] (replaced FreeDB)&lt;br /&gt;
* [http://tracklistings.co.uk/ Tracklistings.co.uk]&lt;br /&gt;
* [https://www.1001tracklists.com/ 1001 Tracklists]&lt;br /&gt;
* [https://web.archive.org/web/20220811122019/https://www.essentialmix.nu/ Essential Mix Tracklistings]&lt;br /&gt;
* [http://tranceaddict.com/forums3/forumdisplay.php?s=&amp;amp;forumid=6 TranceAddict tracklistings]&lt;br /&gt;
* And check for more on our [[Links]] page as well.&lt;br /&gt;
&lt;br /&gt;
= Misc =&lt;br /&gt;
[[CUETools]]&lt;br /&gt;
&lt;br /&gt;
Also check the Wikipedia entry for more info on the cue-sheet syntax and for some info about using cue-sheets with CD images [http://en.wikipedia.org/wiki/Cue_sheet_%28computing%29]!&lt;br /&gt;
&lt;br /&gt;
[[category:Audio Tools]]&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=Cue_sheet&amp;diff=4718</id>
		<title>Cue sheet</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=Cue_sheet&amp;diff=4718"/>
		<updated>2024-01-17T21:02:13Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: /* Cue Sheet Creation Tools */ changed QeD url to archive.org one as it's gone :-(&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Cue sheets''' are used to provide index information for a large audio file. Cue sheets have the file extension &amp;quot;.cue&amp;quot;, and are simple plain text files. &lt;br /&gt;
&lt;br /&gt;
Cue sheets are especially useful for DJ mixes where the resulting audio file is one long [[mp3]]. With a tracklist a cue sheet can be created that will allow you to access the tracks very easily. Remember though: cue sheets only work with compatible software.&lt;br /&gt;
&lt;br /&gt;
= Playing Cue sheets =&lt;br /&gt;
&lt;br /&gt;
Cue sheets are only useful if you can play them! Here is a list of compatible software players:&lt;br /&gt;
&lt;br /&gt;
* [[Foobar2000]] has native support for cue sheets (Windows)&lt;br /&gt;
* [[Winamp]]&lt;br /&gt;
* [http://www.mplayerhq.hu/ MPlayer] (Windows/Linux)&lt;br /&gt;
* [https://mpesch3.de/1by1.html 1by1 player] (Windows)&lt;br /&gt;
* [http://mediamonkey.com MediaMonkey] with [http://trixmoto.net/mm/scripts.php?id=3 CueReader] (Windows)&lt;br /&gt;
* [https://amarok.kde.org/ Amarok] (Linux)&lt;br /&gt;
&lt;br /&gt;
== Winamp Plugins ==&lt;br /&gt;
* [https://winampheritage.com/plugin/cue-player/143011 Cue Player] Plugin for Winamp (Windows)&lt;br /&gt;
* [http://brianvictor.tripod.com/mp3cue.htm#download mp3cue] Plugin for Winamp with XMMS (Linux)&lt;br /&gt;
&lt;br /&gt;
For the plugins all you have to do is have the cue and the mp3 file in the same folder and ideally with the same filename: &lt;br /&gt;
* for most players just drag the cue sheet inside the main or playlist window, and it works just fine&lt;br /&gt;
* for the '''mp3cue''' plugin it's different - here you drag the mp3 file inside the Winamp window and the cue will open in a separate window.&lt;br /&gt;
&lt;br /&gt;
All plugins will show up the track name, and at the end of each track it will keep on playing without any gaps at the end of song, coz it will keep on going smoothly throughout the whole mix, coz you gotta remember its playing one mp3.&lt;br /&gt;
&lt;br /&gt;
== MediaMonkey Scripts ==&lt;br /&gt;
* [https://www.riklewis.com/mediamonkey/scripts.php?id=3 CueReader]&lt;br /&gt;
The cue file has to be in the same directory and have the same filename. If you are getting a warning message whenever you load a file, take a look at your Internet Explorer Security settings for Local Area Network. This didn't seem to change much for me, and found this from [http://www.mediamonkey.com/forum/viewtopic.php?f=2&amp;amp;t=6847&amp;amp;start=210&amp;amp;st=0&amp;amp;sk=t&amp;amp;sd=a MediaMonkey forums]: &lt;br /&gt;
&lt;br /&gt;
* Run regedit.exe&lt;br /&gt;
* Goto HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\0&lt;br /&gt;
* Modify key 1201 = 0&lt;br /&gt;
&lt;br /&gt;
This enables the above option in your My Computer zone, apparently.&lt;br /&gt;
&lt;br /&gt;
= Splitting Cue Sheets =&lt;br /&gt;
&lt;br /&gt;
You can split a long audio file into smaller audio files by using a cue splitter&lt;br /&gt;
* [http://www.medieval.it/content/view/28/70/ Medieval CUE Splitter]&lt;br /&gt;
* [[MP3DirectCut]]&lt;br /&gt;
&lt;br /&gt;
= Creating Cue sheets =&lt;br /&gt;
&lt;br /&gt;
To understand the make-up of a cue sheet please see the [http://wiki.hydrogenaudio.org/index.php?title=Cue_sheet Hydrogenaudio.org Cue Sheet wiki].&lt;br /&gt;
&lt;br /&gt;
Cue sheets are just text files with the file extension set as '''.cue'''. Thus, one of the easiest ways to create a cue sheet is to use a text editor like Notepad and create a template:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
REM GENRE Dubstep/IDM/Electronica&lt;br /&gt;
REM DATE 2008&lt;br /&gt;
REM COMMENT Excellent&lt;br /&gt;
TITLE &amp;quot;Electronic Explorations - 001 - Milanese&amp;quot;&lt;br /&gt;
FILE &amp;quot;ElectronicExplorations_001_Milanese.mp3&amp;quot; WAVE&lt;br /&gt;
  TRACK 01 AUDIO&lt;br /&gt;
    TITLE &amp;quot;Intro&amp;quot;&lt;br /&gt;
    PERFORMER &amp;quot;Electronic Explorations&amp;quot;&lt;br /&gt;
    INDEX 01 00:00:00&lt;br /&gt;
  TRACK 02 AUDIO&lt;br /&gt;
    TITLE &amp;quot;Sneak Up&amp;quot;&lt;br /&gt;
    PERFORMER &amp;quot;215 T.F.K.&amp;quot;&lt;br /&gt;
    INDEX 01 00:33:36&lt;br /&gt;
  TRACK 03 AUDIO&lt;br /&gt;
    TITLE &amp;quot;Three Drops (Original Mix)&amp;quot;&lt;br /&gt;
    PERFORMER &amp;quot;October&amp;quot;&lt;br /&gt;
    INDEX 01 04:02:39&lt;br /&gt;
  TRACK 04 AUDIO&lt;br /&gt;
    TITLE &amp;quot;Sissy Spacek (Ruff)&amp;quot;&lt;br /&gt;
    PERFORMER &amp;quot;Bong-Ra&amp;quot;&lt;br /&gt;
    INDEX 01 06:28:56&lt;br /&gt;
  TRACK 05 AUDIO&lt;br /&gt;
    TITLE &amp;quot;Miserere&amp;quot;&lt;br /&gt;
    PERFORMER &amp;quot;Quark Ruckspin and Planas&amp;quot;&lt;br /&gt;
    INDEX 01 10:40:37&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
All you have to do is then amend the '''FILE''' and '''TITLE''' at the top of the cue sheet as appropriate. Also, amend the individual '''TRACK''' '''TITLE''' and '''PERFORMER''' and '''INDEX''' values.&lt;br /&gt;
&lt;br /&gt;
== Guide To Making A Cue Sheet Work ==&lt;br /&gt;
&lt;br /&gt;
The following is a step-by-step guide to help the uninitiated make use of a cue sheet (on Windows):&lt;br /&gt;
&lt;br /&gt;
#On your Windows PC go to ''My Computer'' &amp;gt; ''Tools'' &amp;gt; ''Folder Options'' &amp;gt; ''View'' &amp;gt; untick ''Hide extensions for known file types''. &lt;br /&gt;
#:*This will allow you to view the entire filename (e.g. ''my-mix.cue'') and will make things easier in the following steps.&lt;br /&gt;
#If someone has detailed the contents of a cue sheet and you want to make a cue sheet from that then simply copy all the text and paste into a text file:&lt;br /&gt;
#:*Open up ''Notepad'', paste the text into it and '''save as''' ''filename.cue'' (remember to ensure the filename extension is '''.cue''').&lt;br /&gt;
#::*If you didn't do the above correctly, don't worry. Simply navigate to where you saved the cue sheet and edit the filename in Windows Exploring. Just replace the '''.txt''' with '''.cue'''.&lt;br /&gt;
#:::*Try to always name the cue sheet the same as the mp3 (with the exception of the extension). For example: ''my-mix.mp3'' and ''my-mix.cue''. This is because a lot of audio software players that support cue sheets also require the same filename for the audio file and cue sheet.&lt;br /&gt;
#It's very likely that cue sheets will not be associated with any program, especially not an audio software player. &lt;br /&gt;
##[[Foobar2000]] allows you to associate many audio file types within it's program:&lt;br /&gt;
##::*''File'' &amp;gt; ''Preferences'' &amp;gt; ''File Types''&lt;br /&gt;
##Another way to associate cue sheets with an audio software player that supports cue sheets is as follows:&lt;br /&gt;
##::*''right-click the cue sheet'' &amp;gt; ''Properties'' &amp;gt; ''Change...'' button &amp;gt; select the program you wish to use. Now whenever you double click the cue sheet it will load into the audio player.&lt;br /&gt;
&lt;br /&gt;
== Cue Sheet Creation Tools ==&lt;br /&gt;
&lt;br /&gt;
There are various tools that can create and edit cue sheets:&lt;br /&gt;
* [https://cuegenerator.net/ Cue Generator]&lt;br /&gt;
* [https://cuenation.com/tools/ CueNation Tools]&lt;br /&gt;
* [https://web.archive.org/web/20230607121739/http://qed.qproject.org/ QeD: Liveset cue-sheet editor] - feature rich&lt;br /&gt;
* [https://cuemaster.org/ CueMaster - cues from CDDB/FreeDB entries]&lt;br /&gt;
* [http://www.milosoftware.com/en/index.php?body=cdwave.php CD Wave], instructions for creating cue sheets with [[CD Wave]]&lt;br /&gt;
Most cue sites with cue sheet generators also allow the upload of cues in this way building cue-sheet collections.&lt;br /&gt;
&lt;br /&gt;
= Finding Cue sheets =&lt;br /&gt;
&lt;br /&gt;
Sites that provide cue sheets for download (roughly in the order of popularity and stored content): &lt;br /&gt;
* [https://cuenation.com/ cuenation]&lt;br /&gt;
Actively maintained with many cue sheets for newest DJ sets (mainly Trance &amp;amp; Progressive).&lt;br /&gt;
&lt;br /&gt;
* [http://www.regeert.nl/cuesheet/ Cue Sheet Heaven] &lt;br /&gt;
The site contains 15200+ cues mainly for DJ sets before 2007.&lt;br /&gt;
&lt;br /&gt;
= Burning Cue sheets to an audio CD =&lt;br /&gt;
&lt;br /&gt;
* [[Foobar2000]]&lt;br /&gt;
* [[Cdrtfe]]&lt;br /&gt;
* [[Burrrn]]&lt;br /&gt;
* [http://www.imgburn.com/ ImgBurn]&lt;br /&gt;
&lt;br /&gt;
= Looking for tracklistings (as a precondition for preparing cues) =&lt;br /&gt;
&lt;br /&gt;
Sometimes you will find a few cues as well...&lt;br /&gt;
* [https://gnudb.org/search.php gnudb.org] (replaced FreeDB)&lt;br /&gt;
* [http://tracklistings.co.uk/ Tracklistings.co.uk]&lt;br /&gt;
* [https://www.1001tracklists.com/ 1001 Tracklists]&lt;br /&gt;
* [http://www.essentialmix.nu/ Essential Mix Tracklistings]&lt;br /&gt;
* [http://tranceaddict.com/forums3/forumdisplay.php?s=&amp;amp;forumid=6 TranceAddict tracklistings]&lt;br /&gt;
* And check for more on our [[Links]] page as well.&lt;br /&gt;
&lt;br /&gt;
= Misc =&lt;br /&gt;
[[CUETools]]&lt;br /&gt;
&lt;br /&gt;
Also check the Wikipedia entry for more info on the cue-sheet syntax and for some info about using cue-sheets with CD images [http://en.wikipedia.org/wiki/Cue_sheet_%28computing%29]!&lt;br /&gt;
&lt;br /&gt;
[[category:Audio Tools]]&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=MP4Box&amp;diff=4717</id>
		<title>MP4Box</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=MP4Box&amp;diff=4717"/>
		<updated>2023-12-14T11:00:31Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''MP4Box''' is a command-line multi-purpose MP4 file manipulation tool with a vast number of functionalities such as conversion, splitting, hinting, dumping and more. MP4Box does NOT perform audio/video/image transcoding.&lt;br /&gt;
&lt;br /&gt;
*[https://gpac.io/downloads/gpac-nightly-builds/ MP4Box Latest Builds on GPAC website]&lt;br /&gt;
*[https://github.com/gpac/gpac/wiki/MP4Box MP4Box website]&lt;br /&gt;
*[http://www.videohelp.com/software/MP4Box download links]&lt;br /&gt;
&lt;br /&gt;
[[category:Audio Tools]]&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=Client_whitelist&amp;diff=4716</id>
		<title>Client whitelist</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=Client_whitelist&amp;diff=4716"/>
		<updated>2023-10-24T08:45:30Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: links and note&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following clients are supported with our tracker:&lt;br /&gt;
&lt;br /&gt;
* uTorrent 1.8.x, 2.0.4, 2.2.x, 3.5.x&lt;br /&gt;
* uTorrent (Mac) 1.x&lt;br /&gt;
* [https://www.qbittorrent.org/ qBittorrent] 3.x, 4.x&lt;br /&gt;
* [https://apps.kde.org/en-gb/ktorrent/ KTorrent] 4.3.x&lt;br /&gt;
* [https://www.rasterbar.com/products/libtorrent/ Libtorrent (Rasterbar)] 0.1, 0.15, 0.16.x, 1.x&lt;br /&gt;
* [http://rakshasa.github.io/rtorrent/ rtorrent] 0.12.x, 0.13.x&lt;br /&gt;
* Mainline (bittorent) 6.4, 7.x (up to 7.8.x)&lt;br /&gt;
* [https://transmissionbt.com/ Transmission] 1.7.x, 2.x, 3.0, 4.0&lt;br /&gt;
* [https://deluge-torrent.org/ Deluge] 1.3x&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Please note: we do not recommend uTorrent and Mainline, but they are still currently whitelisted with the versions noted.&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=FFmpeg&amp;diff=4715</id>
		<title>FFmpeg</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=FFmpeg&amp;diff=4715"/>
		<updated>2023-03-04T23:31:37Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: /* Audio Editing Scripts */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''FFmpeg''' is the leading multimedia framework, able to decode, encode, transcode, mux, remux, demux, stream, filter and play pretty much anything that humans and machines have created. It supports the most obscure ancient formats up to the cutting edge. No matter if they were designed by some standards committee, the community or a corporation.&lt;br /&gt;
&lt;br /&gt;
*https://www.ffmpeg.org/&lt;br /&gt;
*https://ffmpeg.org/download.html &amp;gt; [https://www.gyan.dev/ffmpeg/builds/ffmpeg-git-full.7z ffmpeg full Windows build direct download]&lt;br /&gt;
&lt;br /&gt;
==Audio Editing Scripts==&lt;br /&gt;
&lt;br /&gt;
The instructions and scripts have been written in and tested on the Windows operating system. &lt;br /&gt;
&lt;br /&gt;
===AAC Fades===&lt;br /&gt;
&lt;br /&gt;
Unfortunately, the [[AAC]] format cannot have fades applied to it in a [[Lossless|lossless]] way. Therefore, when applying a fade-in or a fade-out to AAC files the audio will be [[Lossy|lossy]] [[transcoding|transcoded]]. Luckily, lossy transcoding AAC files is far [https://bernholdtech.blogspot.com/2013/03/Nine-different-audio-encoders-100-pass-recompression-test.html less destructive] than other lossy formats such as [[MP3]]s. However, it is still highly recommended to only apply fades to an AAC file that has been cut out of the main AAC file, which can then be merged back with the main AAC file once the fades have been applied. This will minimise the lossy transcoding and keep it to the fade-in and fade-out sections. &lt;br /&gt;
&lt;br /&gt;
====Use-case Scenario====&lt;br /&gt;
&lt;br /&gt;
*Complete all edits of your AAC file in [[MP3DirectCut]] and leave it in there. &lt;br /&gt;
**'''Fade-in''':&lt;br /&gt;
***Cut out the fade-in section: start of file for ''d'' seconds. For example: if you want the fade-in to be 5 seconds long, then cut out the first 5 seconds. It doesn't have to be exactly 5 seconds, but must not be less otherwise the sound might &amp;quot;jump up&amp;quot; when merged back into the main file.&lt;br /&gt;
****Process this ''to-be-faded-in.aac'' file using the fade-in script below.&lt;br /&gt;
*****Open the resulting ''faded-in.aac'' file using another MP3DirectCut instance, select all the audio, copy and paste into the start of the main/original AAC file that is still open in MP3DirectCut. Thus, you've now replaced the original starting audio with the new faded-in audio.&lt;br /&gt;
**'''Fade-out''':&lt;br /&gt;
***Cut out the fade-out section: end of file for ''d'' seconds. For example: if you want the fade-out to be 7 seconds long, then cut out the last 7 seconds. It doesn't have to be exactly 7 seconds, but is best to not be less otherwise the sound doesn't completely fade-out to nothing. &lt;br /&gt;
****Process this ''to-be-faded-out.aac'' file using the fade-out script below.&lt;br /&gt;
*****Open the resulting ''faded-out.aac'' file using another MP3DirectCut instance, select all the audio, copy and paste into the end of the main/original AAC file that is still open in MP3DirectCut. Thus, you've now replaced the original ending audio with the new faded-out audio.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Making these small cuts, processing the fades, then copying &amp;amp; pasting back in, is the best way to minimise negatively impacting the majority of the audio with lossy transcoding.&lt;br /&gt;
&lt;br /&gt;
To note: both scripts will output aac files with a 320kbps bitrate. This can be changed if necessary by altering the ''-b:a'' number.&lt;br /&gt;
&lt;br /&gt;
====AAC Fade-In====&lt;br /&gt;
&lt;br /&gt;
Copy and paste the below text into a text file and rename it '''aac-fade-in.cmd'''&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;:: Name:     aac-fade-in.cmd&lt;br /&gt;
:: Purpose:  Configures ffmpeg to amend the volume to a fade-in - **LOSSY**&lt;br /&gt;
:: Usage:    drag and drop aac file onto this script&lt;br /&gt;
:: Author:   jaybeee @ themixingbowl.org&lt;br /&gt;
:: Revision: Feb 2021 - v0.1&lt;br /&gt;
&lt;br /&gt;
@ECHO OFF&lt;br /&gt;
&lt;br /&gt;
SETLOCAL ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION&lt;br /&gt;
&lt;br /&gt;
:: variables begin with v&lt;br /&gt;
&lt;br /&gt;
:: set name of this script without file extension&lt;br /&gt;
SET vMe=%~n0&lt;br /&gt;
&lt;br /&gt;
:: set name of the parent directory where this script resides&lt;br /&gt;
SET vParent=%~dp0&lt;br /&gt;
&lt;br /&gt;
:: set ffmpeg path location if not already in WINDOWS PATH ** CHANGE ME **&lt;br /&gt;
::SET vffmpeg=&amp;quot;C:\PATH\TO\FFMPEG.EXE&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: Ask the user to enter the duration of the fade-in in seconds&lt;br /&gt;
echo ** Enter duration of fade-in in ss.mmm format when prompted **&lt;br /&gt;
SET /p vSss=&amp;quot;Fade-in duration (ss.mmm): &amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: call ffmpeg to fade in the first d seconds starting at ss&lt;br /&gt;
:: we then have to lossy transcode the audio&lt;br /&gt;
MKDIR aac&lt;br /&gt;
FOR %%f IN (%*) DO ffmpeg -i %%f -af afade=t=in:ss=0:d=%vSss% -b:a 320k &amp;quot;aac\faded-in-%%~nf.aac&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: Finish&lt;br /&gt;
ECHO Finished aac fade-in&lt;br /&gt;
&lt;br /&gt;
:: pause can be used to view the extraction details&lt;br /&gt;
PAUSE&lt;br /&gt;
&lt;br /&gt;
:END&lt;br /&gt;
ENDLOCAL&lt;br /&gt;
ECHO ON&lt;br /&gt;
@EXIT /B 0&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====AAC Fade-Out====&lt;br /&gt;
&lt;br /&gt;
Copy and paste the below text into a text file and rename it '''aac-fade-out.cmd'''&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;:: Name:     aac-fade-out.cmd&lt;br /&gt;
:: Purpose:  Configures ffmpeg to amend the volume to a fade-out - **LOSSY**&lt;br /&gt;
:: Usage:    drag and drop aac file onto this script&lt;br /&gt;
:: Author:   jaybeee @ themixingbowl.org&lt;br /&gt;
:: Revision: Feb 2021 - v0.1&lt;br /&gt;
&lt;br /&gt;
@ECHO OFF&lt;br /&gt;
&lt;br /&gt;
SETLOCAL ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION&lt;br /&gt;
&lt;br /&gt;
:: variables begin with v&lt;br /&gt;
&lt;br /&gt;
:: set name of this script without file extension&lt;br /&gt;
SET vMe=%~n0&lt;br /&gt;
&lt;br /&gt;
:: set name of the parent directory where this script resides&lt;br /&gt;
SET vParent=%~dp0&lt;br /&gt;
&lt;br /&gt;
:: set ffmpeg path location if not already in WINDOWS PATH ** CHANGE ME **&lt;br /&gt;
::SET vffmpeg=&amp;quot;C:\PATH\TO\FFMPEG.EXE&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: Ask the user to enter the duration of the fade-in in seconds&lt;br /&gt;
echo ** Enter duration of fade-in in ss.mmm format when prompted **&lt;br /&gt;
SET /p vEss=&amp;quot;Fade-out duration Time (ss.mmm): &amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: call ffmpeg to fade-out the first d seconds starting at ss&lt;br /&gt;
:: we then have to lossy transcode the audio&lt;br /&gt;
MKDIR aac&lt;br /&gt;
FOR %%f IN (%*) DO ffmpeg -i %%f -af afade=t=out:st=0:d=%vEss% -b:a 320k &amp;quot;aac\faded-out-%%~nf.aac&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: Finish&lt;br /&gt;
ECHO Finished aac fade-out&lt;br /&gt;
&lt;br /&gt;
:: pause can be used to view the extraction details&lt;br /&gt;
PAUSE&lt;br /&gt;
&lt;br /&gt;
:END&lt;br /&gt;
ENDLOCAL&lt;br /&gt;
ECHO ON&lt;br /&gt;
@EXIT /B 0&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Extract Opus from webm===&lt;br /&gt;
&lt;br /&gt;
Copy and paste the below text into a text file and rename it '''webm2opus.cmd'''&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;:: Name:     webm2opus.cmd&lt;br /&gt;
:: Purpose:  Configures ffmpeg to extract opus from webm&lt;br /&gt;
:: Author:   jaybeee @ themixingbowl.org&lt;br /&gt;
:: Revision: March 2022 - v0.2&lt;br /&gt;
&lt;br /&gt;
@ECHO OFF&lt;br /&gt;
&lt;br /&gt;
SETLOCAL ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION&lt;br /&gt;
&lt;br /&gt;
:: variables begin with v&lt;br /&gt;
&lt;br /&gt;
:: set name of this script without file extension&lt;br /&gt;
SET vMe=%~n0&lt;br /&gt;
&lt;br /&gt;
:: set name of the parent directory where this script resides&lt;br /&gt;
SET vParent=%~dp0&lt;br /&gt;
&lt;br /&gt;
:: set location of ffmpeg ** CHANGE ME **&lt;br /&gt;
::SET vffmpeg=&amp;quot;C:\PATH\TO\FFMPEG.exe&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: call ffmpeg to extract opus file(s) from webm file(s) that have been dropped onto it save in opus directory&lt;br /&gt;
MKDIR opus&lt;br /&gt;
FOR %%f IN (%*) DO ffmpeg -i %%f -vn -acodec copy &amp;quot;opus\%%~nf.opus&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: Finish&lt;br /&gt;
ECHO Finished opus extraction&lt;br /&gt;
&lt;br /&gt;
:: pause can be used to view the extraction details&lt;br /&gt;
PAUSE&lt;br /&gt;
&lt;br /&gt;
:END&lt;br /&gt;
ENDLOCAL&lt;br /&gt;
ECHO ON&lt;br /&gt;
@EXIT /B 0&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[category:Audio Tools]]&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=CUETools&amp;diff=4712</id>
		<title>CUETools</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=CUETools&amp;diff=4712"/>
		<updated>2023-01-22T19:14:22Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: Created page with &amp;quot;'''CUETools''' converts between different audio Cue sheet styles. This includes the audio data which means it can split, join, add silence to fill gaps, or remove gaps whe...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''CUETools''' converts between different audio [[Cue sheet]] styles. This includes the audio data which means it can split, join, add silence to fill gaps, or remove gaps where necessary. WAV, FLAC, and WavPack are supported for input and output. Output can be optionally offset to compensate for burner write offset. See the ReadMe.txt file included with the binary for help with the options.&lt;br /&gt;
&lt;br /&gt;
===Download===&lt;br /&gt;
&lt;br /&gt;
http://cue.tools/wiki/CUETools&lt;br /&gt;
&lt;br /&gt;
[[category:Audio Tools]]&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=Cue_sheet&amp;diff=4711</id>
		<title>Cue sheet</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=Cue_sheet&amp;diff=4711"/>
		<updated>2023-01-22T19:14:01Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: /* Misc */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Cue sheets''' are used to provide index information for a large audio file. Cue sheets have the file extension &amp;quot;.cue&amp;quot;, and are simple plain text files. &lt;br /&gt;
&lt;br /&gt;
Cue sheets are especially useful for DJ mixes where the resulting audio file is one long [[mp3]]. With a tracklist a cue sheet can be created that will allow you to access the tracks very easily. Remember though: cue sheets only work with compatible software.&lt;br /&gt;
&lt;br /&gt;
= Playing Cue sheets =&lt;br /&gt;
&lt;br /&gt;
Cue sheets are only useful if you can play them! Here is a list of compatible software players:&lt;br /&gt;
&lt;br /&gt;
* [[Foobar2000]] has native support for cue sheets (Windows)&lt;br /&gt;
* [[Winamp]]&lt;br /&gt;
* [http://www.mplayerhq.hu/ MPlayer] (Windows/Linux)&lt;br /&gt;
* [https://mpesch3.de/1by1.html 1by1 player] (Windows)&lt;br /&gt;
* [http://mediamonkey.com MediaMonkey] with [http://trixmoto.net/mm/scripts.php?id=3 CueReader] (Windows)&lt;br /&gt;
* [https://amarok.kde.org/ Amarok] (Linux)&lt;br /&gt;
&lt;br /&gt;
== Winamp Plugins ==&lt;br /&gt;
* [https://winampheritage.com/plugin/cue-player/143011 Cue Player] Plugin for Winamp (Windows)&lt;br /&gt;
* [http://brianvictor.tripod.com/mp3cue.htm#download mp3cue] Plugin for Winamp with XMMS (Linux)&lt;br /&gt;
&lt;br /&gt;
For the plugins all you have to do is have the cue and the mp3 file in the same folder and ideally with the same filename: &lt;br /&gt;
* for most players just drag the cue sheet inside the main or playlist window, and it works just fine&lt;br /&gt;
* for the '''mp3cue''' plugin it's different - here you drag the mp3 file inside the Winamp window and the cue will open in a separate window.&lt;br /&gt;
&lt;br /&gt;
All plugins will show up the track name, and at the end of each track it will keep on playing without any gaps at the end of song, coz it will keep on going smoothly throughout the whole mix, coz you gotta remember its playing one mp3.&lt;br /&gt;
&lt;br /&gt;
== MediaMonkey Scripts ==&lt;br /&gt;
* [https://www.riklewis.com/mediamonkey/scripts.php?id=3 CueReader]&lt;br /&gt;
The cue file has to be in the same directory and have the same filename. If you are getting a warning message whenever you load a file, take a look at your Internet Explorer Security settings for Local Area Network. This didn't seem to change much for me, and found this from [http://www.mediamonkey.com/forum/viewtopic.php?f=2&amp;amp;t=6847&amp;amp;start=210&amp;amp;st=0&amp;amp;sk=t&amp;amp;sd=a MediaMonkey forums]: &lt;br /&gt;
&lt;br /&gt;
* Run regedit.exe&lt;br /&gt;
* Goto HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\0&lt;br /&gt;
* Modify key 1201 = 0&lt;br /&gt;
&lt;br /&gt;
This enables the above option in your My Computer zone, apparently.&lt;br /&gt;
&lt;br /&gt;
= Splitting Cue Sheets =&lt;br /&gt;
&lt;br /&gt;
You can split a long audio file into smaller audio files by using a cue splitter&lt;br /&gt;
* [http://www.medieval.it/content/view/28/70/ Medieval CUE Splitter]&lt;br /&gt;
* [[MP3DirectCut]]&lt;br /&gt;
&lt;br /&gt;
= Creating Cue sheets =&lt;br /&gt;
&lt;br /&gt;
To understand the make-up of a cue sheet please see the [http://wiki.hydrogenaudio.org/index.php?title=Cue_sheet Hydrogenaudio.org Cue Sheet wiki].&lt;br /&gt;
&lt;br /&gt;
Cue sheets are just text files with the file extension set as '''.cue'''. Thus, one of the easiest ways to create a cue sheet is to use a text editor like Notepad and create a template:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
REM GENRE Dubstep/IDM/Electronica&lt;br /&gt;
REM DATE 2008&lt;br /&gt;
REM COMMENT Excellent&lt;br /&gt;
TITLE &amp;quot;Electronic Explorations - 001 - Milanese&amp;quot;&lt;br /&gt;
FILE &amp;quot;ElectronicExplorations_001_Milanese.mp3&amp;quot; WAVE&lt;br /&gt;
  TRACK 01 AUDIO&lt;br /&gt;
    TITLE &amp;quot;Intro&amp;quot;&lt;br /&gt;
    PERFORMER &amp;quot;Electronic Explorations&amp;quot;&lt;br /&gt;
    INDEX 01 00:00:00&lt;br /&gt;
  TRACK 02 AUDIO&lt;br /&gt;
    TITLE &amp;quot;Sneak Up&amp;quot;&lt;br /&gt;
    PERFORMER &amp;quot;215 T.F.K.&amp;quot;&lt;br /&gt;
    INDEX 01 00:33:36&lt;br /&gt;
  TRACK 03 AUDIO&lt;br /&gt;
    TITLE &amp;quot;Three Drops (Original Mix)&amp;quot;&lt;br /&gt;
    PERFORMER &amp;quot;October&amp;quot;&lt;br /&gt;
    INDEX 01 04:02:39&lt;br /&gt;
  TRACK 04 AUDIO&lt;br /&gt;
    TITLE &amp;quot;Sissy Spacek (Ruff)&amp;quot;&lt;br /&gt;
    PERFORMER &amp;quot;Bong-Ra&amp;quot;&lt;br /&gt;
    INDEX 01 06:28:56&lt;br /&gt;
  TRACK 05 AUDIO&lt;br /&gt;
    TITLE &amp;quot;Miserere&amp;quot;&lt;br /&gt;
    PERFORMER &amp;quot;Quark Ruckspin and Planas&amp;quot;&lt;br /&gt;
    INDEX 01 10:40:37&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
All you have to do is then amend the '''FILE''' and '''TITLE''' at the top of the cue sheet as appropriate. Also, amend the individual '''TRACK''' '''TITLE''' and '''PERFORMER''' and '''INDEX''' values.&lt;br /&gt;
&lt;br /&gt;
== Guide To Making A Cue Sheet Work ==&lt;br /&gt;
&lt;br /&gt;
The following is a step-by-step guide to help the uninitiated make use of a cue sheet (on Windows):&lt;br /&gt;
&lt;br /&gt;
#On your Windows PC go to ''My Computer'' &amp;gt; ''Tools'' &amp;gt; ''Folder Options'' &amp;gt; ''View'' &amp;gt; untick ''Hide extensions for known file types''. &lt;br /&gt;
#:*This will allow you to view the entire filename (e.g. ''my-mix.cue'') and will make things easier in the following steps.&lt;br /&gt;
#If someone has detailed the contents of a cue sheet and you want to make a cue sheet from that then simply copy all the text and paste into a text file:&lt;br /&gt;
#:*Open up ''Notepad'', paste the text into it and '''save as''' ''filename.cue'' (remember to ensure the filename extension is '''.cue''').&lt;br /&gt;
#::*If you didn't do the above correctly, don't worry. Simply navigate to where you saved the cue sheet and edit the filename in Windows Exploring. Just replace the '''.txt''' with '''.cue'''.&lt;br /&gt;
#:::*Try to always name the cue sheet the same as the mp3 (with the exception of the extension). For example: ''my-mix.mp3'' and ''my-mix.cue''. This is because a lot of audio software players that support cue sheets also require the same filename for the audio file and cue sheet.&lt;br /&gt;
#It's very likely that cue sheets will not be associated with any program, especially not an audio software player. &lt;br /&gt;
##[[Foobar2000]] allows you to associate many audio file types within it's program:&lt;br /&gt;
##::*''File'' &amp;gt; ''Preferences'' &amp;gt; ''File Types''&lt;br /&gt;
##Another way to associate cue sheets with an audio software player that supports cue sheets is as follows:&lt;br /&gt;
##::*''right-click the cue sheet'' &amp;gt; ''Properties'' &amp;gt; ''Change...'' button &amp;gt; select the program you wish to use. Now whenever you double click the cue sheet it will load into the audio player.&lt;br /&gt;
&lt;br /&gt;
== Cue Sheet Creation Tools ==&lt;br /&gt;
&lt;br /&gt;
There are various tools that can create and edit cue sheets:&lt;br /&gt;
* [https://cuegenerator.net/ Cue Generator]&lt;br /&gt;
* [https://cuenation.com/tools/ CueNation Tools]&lt;br /&gt;
* [https://qed.qproject.org/ QeD: Liveset cue-sheet editor] - feature rich&lt;br /&gt;
* [https://cuemaster.org/ CueMaster - cues from CDDB/FreeDB entries]&lt;br /&gt;
* [http://www.milosoftware.com/en/index.php?body=cdwave.php CD Wave], instructions for creating cue sheets with [[CD Wave]]&lt;br /&gt;
Most cue sites with cue sheet generators also allow the upload of cues in this way building cue-sheet collections.&lt;br /&gt;
&lt;br /&gt;
= Finding Cue sheets =&lt;br /&gt;
&lt;br /&gt;
Sites that provide cue sheets for download (roughly in the order of popularity and stored content): &lt;br /&gt;
* [https://cuenation.com/ cuenation]&lt;br /&gt;
Actively maintained with many cue sheets for newest DJ sets (mainly Trance &amp;amp; Progressive).&lt;br /&gt;
&lt;br /&gt;
* [http://www.regeert.nl/cuesheet/ Cue Sheet Heaven] &lt;br /&gt;
The site contains 15200+ cues mainly for DJ sets before 2007.&lt;br /&gt;
&lt;br /&gt;
= Burning Cue sheets to an audio CD =&lt;br /&gt;
&lt;br /&gt;
* [[Foobar2000]]&lt;br /&gt;
* [[Cdrtfe]]&lt;br /&gt;
* [[Burrrn]]&lt;br /&gt;
* [http://www.imgburn.com/ ImgBurn]&lt;br /&gt;
&lt;br /&gt;
= Looking for tracklistings (as a precondition for preparing cues) =&lt;br /&gt;
&lt;br /&gt;
Sometimes you will find a few cues as well...&lt;br /&gt;
* [https://gnudb.org/search.php gnudb.org] (replaced FreeDB)&lt;br /&gt;
* [http://tracklistings.co.uk/ Tracklistings.co.uk]&lt;br /&gt;
* [https://www.1001tracklists.com/ 1001 Tracklists]&lt;br /&gt;
* [http://www.essentialmix.nu/ Essential Mix Tracklistings]&lt;br /&gt;
* [http://tranceaddict.com/forums3/forumdisplay.php?s=&amp;amp;forumid=6 TranceAddict tracklistings]&lt;br /&gt;
* And check for more on our [[Links]] page as well.&lt;br /&gt;
&lt;br /&gt;
= Misc =&lt;br /&gt;
[[CUETools]]&lt;br /&gt;
&lt;br /&gt;
Also check the Wikipedia entry for more info on the cue-sheet syntax and for some info about using cue-sheets with CD images [http://en.wikipedia.org/wiki/Cue_sheet_%28computing%29]!&lt;br /&gt;
&lt;br /&gt;
[[category:Audio Tools]]&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=Cue_sheet&amp;diff=4709</id>
		<title>Cue sheet</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=Cue_sheet&amp;diff=4709"/>
		<updated>2023-01-22T19:12:30Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: /* Finding Cue sheets */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Cue sheets''' are used to provide index information for a large audio file. Cue sheets have the file extension &amp;quot;.cue&amp;quot;, and are simple plain text files. &lt;br /&gt;
&lt;br /&gt;
Cue sheets are especially useful for DJ mixes where the resulting audio file is one long [[mp3]]. With a tracklist a cue sheet can be created that will allow you to access the tracks very easily. Remember though: cue sheets only work with compatible software.&lt;br /&gt;
&lt;br /&gt;
= Playing Cue sheets =&lt;br /&gt;
&lt;br /&gt;
Cue sheets are only useful if you can play them! Here is a list of compatible software players:&lt;br /&gt;
&lt;br /&gt;
* [[Foobar2000]] has native support for cue sheets (Windows)&lt;br /&gt;
* [[Winamp]]&lt;br /&gt;
* [http://www.mplayerhq.hu/ MPlayer] (Windows/Linux)&lt;br /&gt;
* [https://mpesch3.de/1by1.html 1by1 player] (Windows)&lt;br /&gt;
* [http://mediamonkey.com MediaMonkey] with [http://trixmoto.net/mm/scripts.php?id=3 CueReader] (Windows)&lt;br /&gt;
* [https://amarok.kde.org/ Amarok] (Linux)&lt;br /&gt;
&lt;br /&gt;
== Winamp Plugins ==&lt;br /&gt;
* [https://winampheritage.com/plugin/cue-player/143011 Cue Player] Plugin for Winamp (Windows)&lt;br /&gt;
* [http://brianvictor.tripod.com/mp3cue.htm#download mp3cue] Plugin for Winamp with XMMS (Linux)&lt;br /&gt;
&lt;br /&gt;
For the plugins all you have to do is have the cue and the mp3 file in the same folder and ideally with the same filename: &lt;br /&gt;
* for most players just drag the cue sheet inside the main or playlist window, and it works just fine&lt;br /&gt;
* for the '''mp3cue''' plugin it's different - here you drag the mp3 file inside the Winamp window and the cue will open in a separate window.&lt;br /&gt;
&lt;br /&gt;
All plugins will show up the track name, and at the end of each track it will keep on playing without any gaps at the end of song, coz it will keep on going smoothly throughout the whole mix, coz you gotta remember its playing one mp3.&lt;br /&gt;
&lt;br /&gt;
== MediaMonkey Scripts ==&lt;br /&gt;
* [https://www.riklewis.com/mediamonkey/scripts.php?id=3 CueReader]&lt;br /&gt;
The cue file has to be in the same directory and have the same filename. If you are getting a warning message whenever you load a file, take a look at your Internet Explorer Security settings for Local Area Network. This didn't seem to change much for me, and found this from [http://www.mediamonkey.com/forum/viewtopic.php?f=2&amp;amp;t=6847&amp;amp;start=210&amp;amp;st=0&amp;amp;sk=t&amp;amp;sd=a MediaMonkey forums]: &lt;br /&gt;
&lt;br /&gt;
* Run regedit.exe&lt;br /&gt;
* Goto HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\0&lt;br /&gt;
* Modify key 1201 = 0&lt;br /&gt;
&lt;br /&gt;
This enables the above option in your My Computer zone, apparently.&lt;br /&gt;
&lt;br /&gt;
= Splitting Cue Sheets =&lt;br /&gt;
&lt;br /&gt;
You can split a long audio file into smaller audio files by using a cue splitter&lt;br /&gt;
* [http://www.medieval.it/content/view/28/70/ Medieval CUE Splitter]&lt;br /&gt;
* [[MP3DirectCut]]&lt;br /&gt;
&lt;br /&gt;
= Creating Cue sheets =&lt;br /&gt;
&lt;br /&gt;
To understand the make-up of a cue sheet please see the [http://wiki.hydrogenaudio.org/index.php?title=Cue_sheet Hydrogenaudio.org Cue Sheet wiki].&lt;br /&gt;
&lt;br /&gt;
Cue sheets are just text files with the file extension set as '''.cue'''. Thus, one of the easiest ways to create a cue sheet is to use a text editor like Notepad and create a template:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
REM GENRE Dubstep/IDM/Electronica&lt;br /&gt;
REM DATE 2008&lt;br /&gt;
REM COMMENT Excellent&lt;br /&gt;
TITLE &amp;quot;Electronic Explorations - 001 - Milanese&amp;quot;&lt;br /&gt;
FILE &amp;quot;ElectronicExplorations_001_Milanese.mp3&amp;quot; WAVE&lt;br /&gt;
  TRACK 01 AUDIO&lt;br /&gt;
    TITLE &amp;quot;Intro&amp;quot;&lt;br /&gt;
    PERFORMER &amp;quot;Electronic Explorations&amp;quot;&lt;br /&gt;
    INDEX 01 00:00:00&lt;br /&gt;
  TRACK 02 AUDIO&lt;br /&gt;
    TITLE &amp;quot;Sneak Up&amp;quot;&lt;br /&gt;
    PERFORMER &amp;quot;215 T.F.K.&amp;quot;&lt;br /&gt;
    INDEX 01 00:33:36&lt;br /&gt;
  TRACK 03 AUDIO&lt;br /&gt;
    TITLE &amp;quot;Three Drops (Original Mix)&amp;quot;&lt;br /&gt;
    PERFORMER &amp;quot;October&amp;quot;&lt;br /&gt;
    INDEX 01 04:02:39&lt;br /&gt;
  TRACK 04 AUDIO&lt;br /&gt;
    TITLE &amp;quot;Sissy Spacek (Ruff)&amp;quot;&lt;br /&gt;
    PERFORMER &amp;quot;Bong-Ra&amp;quot;&lt;br /&gt;
    INDEX 01 06:28:56&lt;br /&gt;
  TRACK 05 AUDIO&lt;br /&gt;
    TITLE &amp;quot;Miserere&amp;quot;&lt;br /&gt;
    PERFORMER &amp;quot;Quark Ruckspin and Planas&amp;quot;&lt;br /&gt;
    INDEX 01 10:40:37&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
All you have to do is then amend the '''FILE''' and '''TITLE''' at the top of the cue sheet as appropriate. Also, amend the individual '''TRACK''' '''TITLE''' and '''PERFORMER''' and '''INDEX''' values.&lt;br /&gt;
&lt;br /&gt;
== Guide To Making A Cue Sheet Work ==&lt;br /&gt;
&lt;br /&gt;
The following is a step-by-step guide to help the uninitiated make use of a cue sheet (on Windows):&lt;br /&gt;
&lt;br /&gt;
#On your Windows PC go to ''My Computer'' &amp;gt; ''Tools'' &amp;gt; ''Folder Options'' &amp;gt; ''View'' &amp;gt; untick ''Hide extensions for known file types''. &lt;br /&gt;
#:*This will allow you to view the entire filename (e.g. ''my-mix.cue'') and will make things easier in the following steps.&lt;br /&gt;
#If someone has detailed the contents of a cue sheet and you want to make a cue sheet from that then simply copy all the text and paste into a text file:&lt;br /&gt;
#:*Open up ''Notepad'', paste the text into it and '''save as''' ''filename.cue'' (remember to ensure the filename extension is '''.cue''').&lt;br /&gt;
#::*If you didn't do the above correctly, don't worry. Simply navigate to where you saved the cue sheet and edit the filename in Windows Exploring. Just replace the '''.txt''' with '''.cue'''.&lt;br /&gt;
#:::*Try to always name the cue sheet the same as the mp3 (with the exception of the extension). For example: ''my-mix.mp3'' and ''my-mix.cue''. This is because a lot of audio software players that support cue sheets also require the same filename for the audio file and cue sheet.&lt;br /&gt;
#It's very likely that cue sheets will not be associated with any program, especially not an audio software player. &lt;br /&gt;
##[[Foobar2000]] allows you to associate many audio file types within it's program:&lt;br /&gt;
##::*''File'' &amp;gt; ''Preferences'' &amp;gt; ''File Types''&lt;br /&gt;
##Another way to associate cue sheets with an audio software player that supports cue sheets is as follows:&lt;br /&gt;
##::*''right-click the cue sheet'' &amp;gt; ''Properties'' &amp;gt; ''Change...'' button &amp;gt; select the program you wish to use. Now whenever you double click the cue sheet it will load into the audio player.&lt;br /&gt;
&lt;br /&gt;
== Cue Sheet Creation Tools ==&lt;br /&gt;
&lt;br /&gt;
There are various tools that can create and edit cue sheets:&lt;br /&gt;
* [https://cuegenerator.net/ Cue Generator]&lt;br /&gt;
* [https://cuenation.com/tools/ CueNation Tools]&lt;br /&gt;
* [https://qed.qproject.org/ QeD: Liveset cue-sheet editor] - feature rich&lt;br /&gt;
* [https://cuemaster.org/ CueMaster - cues from CDDB/FreeDB entries]&lt;br /&gt;
* [http://www.milosoftware.com/en/index.php?body=cdwave.php CD Wave], instructions for creating cue sheets with [[CD Wave]]&lt;br /&gt;
Most cue sites with cue sheet generators also allow the upload of cues in this way building cue-sheet collections.&lt;br /&gt;
&lt;br /&gt;
= Finding Cue sheets =&lt;br /&gt;
&lt;br /&gt;
Sites that provide cue sheets for download (roughly in the order of popularity and stored content): &lt;br /&gt;
* [https://cuenation.com/ cuenation]&lt;br /&gt;
Actively maintained with many cue sheets for newest DJ sets (mainly Trance &amp;amp; Progressive).&lt;br /&gt;
&lt;br /&gt;
* [http://www.regeert.nl/cuesheet/ Cue Sheet Heaven] &lt;br /&gt;
The site contains 15200+ cues mainly for DJ sets before 2007.&lt;br /&gt;
&lt;br /&gt;
= Burning Cue sheets to an audio CD =&lt;br /&gt;
&lt;br /&gt;
* [[Foobar2000]]&lt;br /&gt;
* [[Cdrtfe]]&lt;br /&gt;
* [[Burrrn]]&lt;br /&gt;
* [http://www.imgburn.com/ ImgBurn]&lt;br /&gt;
&lt;br /&gt;
= Looking for tracklistings (as a precondition for preparing cues) =&lt;br /&gt;
&lt;br /&gt;
Sometimes you will find a few cues as well...&lt;br /&gt;
* [https://gnudb.org/search.php gnudb.org] (replaced FreeDB)&lt;br /&gt;
* [http://tracklistings.co.uk/ Tracklistings.co.uk]&lt;br /&gt;
* [https://www.1001tracklists.com/ 1001 Tracklists]&lt;br /&gt;
* [http://www.essentialmix.nu/ Essential Mix Tracklistings]&lt;br /&gt;
* [http://tranceaddict.com/forums3/forumdisplay.php?s=&amp;amp;forumid=6 TranceAddict tracklistings]&lt;br /&gt;
* And check for more on our [[Links]] page as well.&lt;br /&gt;
&lt;br /&gt;
= Misc =&lt;br /&gt;
[[CUE_Tools]]&lt;br /&gt;
&lt;br /&gt;
Also check the Wikipedia entry for more info on the cue-sheet syntax and for some info about using cue-sheets with CD images [http://en.wikipedia.org/wiki/Cue_sheet_%28computing%29]!&lt;br /&gt;
&lt;br /&gt;
[[category:Audio Tools]]&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=Cue_sheet&amp;diff=4708</id>
		<title>Cue sheet</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=Cue_sheet&amp;diff=4708"/>
		<updated>2023-01-22T19:11:20Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: /* Cue Sheet Creation Tools */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Cue sheets''' are used to provide index information for a large audio file. Cue sheets have the file extension &amp;quot;.cue&amp;quot;, and are simple plain text files. &lt;br /&gt;
&lt;br /&gt;
Cue sheets are especially useful for DJ mixes where the resulting audio file is one long [[mp3]]. With a tracklist a cue sheet can be created that will allow you to access the tracks very easily. Remember though: cue sheets only work with compatible software.&lt;br /&gt;
&lt;br /&gt;
= Playing Cue sheets =&lt;br /&gt;
&lt;br /&gt;
Cue sheets are only useful if you can play them! Here is a list of compatible software players:&lt;br /&gt;
&lt;br /&gt;
* [[Foobar2000]] has native support for cue sheets (Windows)&lt;br /&gt;
* [[Winamp]]&lt;br /&gt;
* [http://www.mplayerhq.hu/ MPlayer] (Windows/Linux)&lt;br /&gt;
* [https://mpesch3.de/1by1.html 1by1 player] (Windows)&lt;br /&gt;
* [http://mediamonkey.com MediaMonkey] with [http://trixmoto.net/mm/scripts.php?id=3 CueReader] (Windows)&lt;br /&gt;
* [https://amarok.kde.org/ Amarok] (Linux)&lt;br /&gt;
&lt;br /&gt;
== Winamp Plugins ==&lt;br /&gt;
* [https://winampheritage.com/plugin/cue-player/143011 Cue Player] Plugin for Winamp (Windows)&lt;br /&gt;
* [http://brianvictor.tripod.com/mp3cue.htm#download mp3cue] Plugin for Winamp with XMMS (Linux)&lt;br /&gt;
&lt;br /&gt;
For the plugins all you have to do is have the cue and the mp3 file in the same folder and ideally with the same filename: &lt;br /&gt;
* for most players just drag the cue sheet inside the main or playlist window, and it works just fine&lt;br /&gt;
* for the '''mp3cue''' plugin it's different - here you drag the mp3 file inside the Winamp window and the cue will open in a separate window.&lt;br /&gt;
&lt;br /&gt;
All plugins will show up the track name, and at the end of each track it will keep on playing without any gaps at the end of song, coz it will keep on going smoothly throughout the whole mix, coz you gotta remember its playing one mp3.&lt;br /&gt;
&lt;br /&gt;
== MediaMonkey Scripts ==&lt;br /&gt;
* [https://www.riklewis.com/mediamonkey/scripts.php?id=3 CueReader]&lt;br /&gt;
The cue file has to be in the same directory and have the same filename. If you are getting a warning message whenever you load a file, take a look at your Internet Explorer Security settings for Local Area Network. This didn't seem to change much for me, and found this from [http://www.mediamonkey.com/forum/viewtopic.php?f=2&amp;amp;t=6847&amp;amp;start=210&amp;amp;st=0&amp;amp;sk=t&amp;amp;sd=a MediaMonkey forums]: &lt;br /&gt;
&lt;br /&gt;
* Run regedit.exe&lt;br /&gt;
* Goto HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\0&lt;br /&gt;
* Modify key 1201 = 0&lt;br /&gt;
&lt;br /&gt;
This enables the above option in your My Computer zone, apparently.&lt;br /&gt;
&lt;br /&gt;
= Splitting Cue Sheets =&lt;br /&gt;
&lt;br /&gt;
You can split a long audio file into smaller audio files by using a cue splitter&lt;br /&gt;
* [http://www.medieval.it/content/view/28/70/ Medieval CUE Splitter]&lt;br /&gt;
* [[MP3DirectCut]]&lt;br /&gt;
&lt;br /&gt;
= Creating Cue sheets =&lt;br /&gt;
&lt;br /&gt;
To understand the make-up of a cue sheet please see the [http://wiki.hydrogenaudio.org/index.php?title=Cue_sheet Hydrogenaudio.org Cue Sheet wiki].&lt;br /&gt;
&lt;br /&gt;
Cue sheets are just text files with the file extension set as '''.cue'''. Thus, one of the easiest ways to create a cue sheet is to use a text editor like Notepad and create a template:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
REM GENRE Dubstep/IDM/Electronica&lt;br /&gt;
REM DATE 2008&lt;br /&gt;
REM COMMENT Excellent&lt;br /&gt;
TITLE &amp;quot;Electronic Explorations - 001 - Milanese&amp;quot;&lt;br /&gt;
FILE &amp;quot;ElectronicExplorations_001_Milanese.mp3&amp;quot; WAVE&lt;br /&gt;
  TRACK 01 AUDIO&lt;br /&gt;
    TITLE &amp;quot;Intro&amp;quot;&lt;br /&gt;
    PERFORMER &amp;quot;Electronic Explorations&amp;quot;&lt;br /&gt;
    INDEX 01 00:00:00&lt;br /&gt;
  TRACK 02 AUDIO&lt;br /&gt;
    TITLE &amp;quot;Sneak Up&amp;quot;&lt;br /&gt;
    PERFORMER &amp;quot;215 T.F.K.&amp;quot;&lt;br /&gt;
    INDEX 01 00:33:36&lt;br /&gt;
  TRACK 03 AUDIO&lt;br /&gt;
    TITLE &amp;quot;Three Drops (Original Mix)&amp;quot;&lt;br /&gt;
    PERFORMER &amp;quot;October&amp;quot;&lt;br /&gt;
    INDEX 01 04:02:39&lt;br /&gt;
  TRACK 04 AUDIO&lt;br /&gt;
    TITLE &amp;quot;Sissy Spacek (Ruff)&amp;quot;&lt;br /&gt;
    PERFORMER &amp;quot;Bong-Ra&amp;quot;&lt;br /&gt;
    INDEX 01 06:28:56&lt;br /&gt;
  TRACK 05 AUDIO&lt;br /&gt;
    TITLE &amp;quot;Miserere&amp;quot;&lt;br /&gt;
    PERFORMER &amp;quot;Quark Ruckspin and Planas&amp;quot;&lt;br /&gt;
    INDEX 01 10:40:37&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
All you have to do is then amend the '''FILE''' and '''TITLE''' at the top of the cue sheet as appropriate. Also, amend the individual '''TRACK''' '''TITLE''' and '''PERFORMER''' and '''INDEX''' values.&lt;br /&gt;
&lt;br /&gt;
== Guide To Making A Cue Sheet Work ==&lt;br /&gt;
&lt;br /&gt;
The following is a step-by-step guide to help the uninitiated make use of a cue sheet (on Windows):&lt;br /&gt;
&lt;br /&gt;
#On your Windows PC go to ''My Computer'' &amp;gt; ''Tools'' &amp;gt; ''Folder Options'' &amp;gt; ''View'' &amp;gt; untick ''Hide extensions for known file types''. &lt;br /&gt;
#:*This will allow you to view the entire filename (e.g. ''my-mix.cue'') and will make things easier in the following steps.&lt;br /&gt;
#If someone has detailed the contents of a cue sheet and you want to make a cue sheet from that then simply copy all the text and paste into a text file:&lt;br /&gt;
#:*Open up ''Notepad'', paste the text into it and '''save as''' ''filename.cue'' (remember to ensure the filename extension is '''.cue''').&lt;br /&gt;
#::*If you didn't do the above correctly, don't worry. Simply navigate to where you saved the cue sheet and edit the filename in Windows Exploring. Just replace the '''.txt''' with '''.cue'''.&lt;br /&gt;
#:::*Try to always name the cue sheet the same as the mp3 (with the exception of the extension). For example: ''my-mix.mp3'' and ''my-mix.cue''. This is because a lot of audio software players that support cue sheets also require the same filename for the audio file and cue sheet.&lt;br /&gt;
#It's very likely that cue sheets will not be associated with any program, especially not an audio software player. &lt;br /&gt;
##[[Foobar2000]] allows you to associate many audio file types within it's program:&lt;br /&gt;
##::*''File'' &amp;gt; ''Preferences'' &amp;gt; ''File Types''&lt;br /&gt;
##Another way to associate cue sheets with an audio software player that supports cue sheets is as follows:&lt;br /&gt;
##::*''right-click the cue sheet'' &amp;gt; ''Properties'' &amp;gt; ''Change...'' button &amp;gt; select the program you wish to use. Now whenever you double click the cue sheet it will load into the audio player.&lt;br /&gt;
&lt;br /&gt;
== Cue Sheet Creation Tools ==&lt;br /&gt;
&lt;br /&gt;
There are various tools that can create and edit cue sheets:&lt;br /&gt;
* [https://cuegenerator.net/ Cue Generator]&lt;br /&gt;
* [https://cuenation.com/tools/ CueNation Tools]&lt;br /&gt;
* [https://qed.qproject.org/ QeD: Liveset cue-sheet editor] - feature rich&lt;br /&gt;
* [https://cuemaster.org/ CueMaster - cues from CDDB/FreeDB entries]&lt;br /&gt;
* [http://www.milosoftware.com/en/index.php?body=cdwave.php CD Wave], instructions for creating cue sheets with [[CD Wave]]&lt;br /&gt;
Most cue sites with cue sheet generators also allow the upload of cues in this way building cue-sheet collections.&lt;br /&gt;
&lt;br /&gt;
= Finding Cue sheets =&lt;br /&gt;
&lt;br /&gt;
Here are some good websites to help ya search for cue sheets (roughly in the order of popularity and stored content): &lt;br /&gt;
* [https://cuenation.com/ cuenation]&lt;br /&gt;
Actively maintained with many cue sheets for newest DJ sets (mainly Trance &amp;amp; Progressive).&lt;br /&gt;
&lt;br /&gt;
* [http://www.regeert.nl/cuesheet/ Cue Sheet Heaven] &lt;br /&gt;
The site contains 15200+ cues mainly for DJ sets before 2007.&lt;br /&gt;
&lt;br /&gt;
= Burning Cue sheets to an audio CD =&lt;br /&gt;
&lt;br /&gt;
* [[Foobar2000]]&lt;br /&gt;
* [[Cdrtfe]]&lt;br /&gt;
* [[Burrrn]]&lt;br /&gt;
* [http://www.imgburn.com/ ImgBurn]&lt;br /&gt;
&lt;br /&gt;
= Looking for tracklistings (as a precondition for preparing cues) =&lt;br /&gt;
&lt;br /&gt;
Sometimes you will find a few cues as well...&lt;br /&gt;
* [https://gnudb.org/search.php gnudb.org] (replaced FreeDB)&lt;br /&gt;
* [http://tracklistings.co.uk/ Tracklistings.co.uk]&lt;br /&gt;
* [https://www.1001tracklists.com/ 1001 Tracklists]&lt;br /&gt;
* [http://www.essentialmix.nu/ Essential Mix Tracklistings]&lt;br /&gt;
* [http://tranceaddict.com/forums3/forumdisplay.php?s=&amp;amp;forumid=6 TranceAddict tracklistings]&lt;br /&gt;
* And check for more on our [[Links]] page as well.&lt;br /&gt;
&lt;br /&gt;
= Misc =&lt;br /&gt;
[[CUE_Tools]]&lt;br /&gt;
&lt;br /&gt;
Also check the Wikipedia entry for more info on the cue-sheet syntax and for some info about using cue-sheets with CD images [http://en.wikipedia.org/wiki/Cue_sheet_%28computing%29]!&lt;br /&gt;
&lt;br /&gt;
[[category:Audio Tools]]&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=Get_iplayer&amp;diff=4707</id>
		<title>Get iplayer</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=Get_iplayer&amp;diff=4707"/>
		<updated>2022-11-28T17:10:24Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: Updated the get_iplayer link in Download section to make it easier. Rolledback previous update as no need for multiple get_iplayer external links. Removed squarepenguin link as no longer available&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''get_iplayer''' is a free and Open Source program released under the GNU GPL that allows you to access content from the [[BBC]] iPlayer. It is primarily used to capture video (TV) and audio (Radio) broadcasts. You are able to capture these media files from both the archived watch/listen again iPlayer as well as live streams. The media files captured are the actual source files transmitted by the [[BBC]] iPlayer. &lt;br /&gt;
&lt;br /&gt;
Currently the BBC iplayer live streams are transmitted at 320kpbs. However, only BBC Radio 3 &amp;amp; BBC 6 Music does so with full frequency range. Thus, there is still an imposed 15-16kHz frequency cut-off for all other stations. The listen again iPlayer transmits at 128kbps.&lt;br /&gt;
&lt;br /&gt;
The reason for highlighting the use of the get_iplayer is that the quality is as good as we have ever been able to get. Even a 128kbps [[M4A]] ([[AAC]]) file sounds excellent and of comparable quality to the very best FM recording. And with the 320kbps broadcasts the audio is truly excellent. Therefore, this is the recommend way to record BBC content.  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Capturing &amp;amp; Preparing BBC Radio Shows==&lt;br /&gt;
&lt;br /&gt;
===Windows OS===&lt;br /&gt;
&lt;br /&gt;
====Required Programs====&lt;br /&gt;
&lt;br /&gt;
*'''get_iplayer'''&lt;br /&gt;
*[[MP3DirectCut]] (requires the [http://www.rarewares.org/aac-decoders.php libfaad2.dll] to be installed)&lt;br /&gt;
*[[MP4Box]]&lt;br /&gt;
*A good tagging program such as [[Foobar2000]] or [[MP3tag]]&lt;br /&gt;
&lt;br /&gt;
====Steps====&lt;br /&gt;
&lt;br /&gt;
# Run '''get_iplayer''' and use the appropriate commands to capture the content you want:&lt;br /&gt;
#* '''Live iPlayer Streams''' (these are broadcasts/transmissions that are going out live on the BBC station)&lt;br /&gt;
#** &amp;lt;big&amp;gt;&amp;lt;code&amp;gt;get_iplayer --type=liveradio --get 80131 --stop=02:10:10 --force --attempts=5 --raw --ffmpeg-liveradio-opts=&amp;quot;-bsf:a aac_adtstoasc&amp;quot;&amp;lt;/code&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
#*** The above command captures 2 hours 10 minutes and 10 seconds of the live transmission from the BBC Radio 1 station once the get_iplayer program has been sent the command. The &amp;lt;big&amp;gt;&amp;lt;code&amp;gt;--stop&amp;lt;/code&amp;gt;&amp;lt;/big&amp;gt; option is hh:mm:ss. This enables you to cleanly end a recording. Do not use the &amp;lt;big&amp;gt;&amp;lt;code&amp;gt;--start&amp;lt;/code&amp;gt;&amp;lt;/big&amp;gt; option with live stream recording. Multiple instances of get_iplayer can also be scheduled to run. And using a Windows scheduler allows you to set up weekly repeats, which will be described later.&lt;br /&gt;
#*** You will be left with a [[Transport Stream]] (.ts) file. You can extract the raw [[AAC]] audio from it using [[FFmpeg]] with the following command:&lt;br /&gt;
#**** &amp;lt;big&amp;gt;&amp;lt;code&amp;gt;ffmpeg -i input.ts -acodec copy output.aac&amp;lt;/code&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
#:* Or better yet, create a batch script to make the process easier. Create a folder called &amp;lt;big&amp;gt;&amp;lt;code&amp;gt;ts2aac2m4a&amp;lt;/code&amp;gt;&amp;lt;/big&amp;gt;. Copy the following into a file named &amp;lt;big&amp;gt;&amp;lt;code&amp;gt;ts2aac.cmd&amp;lt;/code&amp;gt;&amp;lt;/big&amp;gt; and place the file into the folder you have just created (you might need to first make the file a text file and then change the .txt to .cmd):&lt;br /&gt;
#:* &amp;lt;big&amp;gt;&amp;lt;code&amp;gt;@ECHO OFF &amp;lt;/big&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
#::&amp;lt;big&amp;gt;&amp;lt;code&amp;gt;MKDIR aac&amp;lt;/big&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
#::&amp;lt;big&amp;gt;&amp;lt;code&amp;gt;FOR %%f IN (&amp;quot;*.ts&amp;quot;) DO ffmpeg -i &amp;quot;%%f&amp;quot; -acodec copy &amp;quot;aac\%%~nf.aac&amp;quot;&amp;lt;/code&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
#:* To run the above file you will need to have ffmpeg.exe in your PATH or within the same folder as the batch script or you can use [http://wiki.themixingbowl.org/User:Jaybeee jaybeee's] batch scripts.&lt;br /&gt;
#* '''Listen Again iPlayer Stream'''&lt;br /&gt;
#** &amp;lt;big&amp;gt;&amp;lt;code&amp;gt;get_iplayer --type=radio --pid=b006wkfp&amp;lt;/code&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
#*** The above command captures the audio that relates to the program with the pid as defined above; make sure you change it to the programme you want.&lt;br /&gt;
# You will most likely need to '''edit the audio''' to remove unwanted parts from the start and end. You can [[lossless]]ly do this with [[MP3DirectCut]]. It is vital to use a lossless / non-destructive audio editor to preserve the audio quality; otherwise you will decode and then re-encode (aka [[transcode]]) and further compress the file. However, [[MP3DirectCut]] only works on [[AAC]] (and [[MP3]]) files and not the [[M4A]] format, so you will need to '''unpackage the [[M4A]] file''' using [[MP4Box]] to '''extract the raw [[AAC]] file'''.&lt;br /&gt;
#* Run [[MP4Box]] with the following commands:&lt;br /&gt;
#** &amp;lt;big&amp;gt;&amp;lt;code&amp;gt;mp4box -raw 1 input.m4a -out output.aac&amp;lt;/code&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
#* Or better yet, create a batch script to make the process easier. Create a folder called &amp;lt;big&amp;gt;&amp;lt;code&amp;gt;ts2aac2m4a&amp;lt;/code&amp;gt;&amp;lt;/big&amp;gt;. Copy the following into a file named &amp;lt;big&amp;gt;&amp;lt;code&amp;gt;m4a2aac.cmd&amp;lt;/code&amp;gt;&amp;lt;/big&amp;gt; and place the file into the folder you have just created (you might need to first make the file a text file and then change the .txt to .cmd):&lt;br /&gt;
#** &amp;lt;big&amp;gt;&amp;lt;code&amp;gt;@ECHO OFF &amp;lt;/big&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
#::&amp;lt;big&amp;gt;&amp;lt;code&amp;gt;MKDIR aac &amp;lt;/big&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
#::&amp;lt;big&amp;gt;&amp;lt;code&amp;gt;FOR %%f IN (&amp;quot;*.m4a&amp;quot;) DO mp4box -raw 1 &amp;quot;%%f&amp;quot; -out &amp;quot;aac\%%~nf.aac&amp;quot;&amp;lt;/code&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
#* So now all you have to do is place the captured .m4a file into the &amp;lt;big&amp;gt;&amp;lt;code&amp;gt;ts2aac2m4a&amp;lt;/code&amp;gt;&amp;lt;/big&amp;gt; folder, run the &amp;lt;big&amp;gt;&amp;lt;code&amp;gt;m4a2aac.cmd&amp;lt;/code&amp;gt;&amp;lt;/big&amp;gt; batch script and you will find the extracted [[AAC]] file in a sub-folder called &amp;lt;big&amp;gt;&amp;lt;code&amp;gt;\ts2aac2ma4\aac&amp;lt;/code&amp;gt;&amp;lt;/big&amp;gt;.&lt;br /&gt;
# Run [[MP3DirectCut]] and open the extracted [[AAC]] file and make the necessary edits. Make sure you save your changes.&lt;br /&gt;
# The [[AAC]] file must now be repackaged back into a [[M4A]] container to ensure correct playback and compatibility with media players (and to allow you to tag the file).&lt;br /&gt;
#* Run [[MP4Box]] with the following commands:&lt;br /&gt;
#** &amp;lt;big&amp;gt;&amp;lt;code&amp;gt;mp4box -add input.aac output.m4a -new&amp;lt;/code&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
#* Or better yet, create a batch script like above to make the process easier. Copy the following into a file named &amp;lt;big&amp;gt;&amp;lt;code&amp;gt;aac2m4a.cmd&amp;lt;/code&amp;gt;&amp;lt;/big&amp;gt; and save the file into the folder &amp;lt;big&amp;gt;&amp;lt;code&amp;gt;\ts2aac2m4a\aac&amp;lt;/code&amp;gt;&amp;lt;/big&amp;gt;:&lt;br /&gt;
#** &amp;lt;big&amp;gt;&amp;lt;code&amp;gt;@ECHO OFF&amp;lt;/big&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
#::&amp;lt;big&amp;gt;&amp;lt;code&amp;gt;MKDIR m4a&amp;lt;/big&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
#::&amp;lt;big&amp;gt;&amp;lt;code&amp;gt;FOR %%f IN (&amp;quot;*.aac&amp;quot;) do mp4box -add &amp;quot;%%f&amp;quot; &amp;quot;m4a\%%~nf.m4a&amp;quot; -new&amp;lt;/code&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
#* Run the &amp;lt;big&amp;gt;&amp;lt;code&amp;gt;aac2m4a.cmd&amp;lt;/code&amp;gt;&amp;lt;/big&amp;gt; batch script and you will find the repackaged [[M4A]] file in a sub-folder &amp;lt;big&amp;gt;&amp;lt;code&amp;gt;\ts2aac2m4a\aac\m4a&amp;lt;/code&amp;gt;&amp;lt;/big&amp;gt;.&lt;br /&gt;
# Using your preferred '''tagging tool''' (we recommend [[Foobar2000]] or [[MP3tag]]) add the appropriate tags.&lt;br /&gt;
#* Take pride in your uploads by tagging them correctly. It helps the grateful listeners organise their media files.&lt;br /&gt;
# Optional part: [[Replaygain]] the file. In [[Foobar2000]] you can do this by adding [[Replaygain]] tags or even permanently apply the [[Replaygain]] changes to the actual file, meaning all media players will play the file at this adjusted loudness.&lt;br /&gt;
# Upload to [[TMB]], sit back and have thousands download and admire your great work... or get a few thumbsup :-P&lt;br /&gt;
&lt;br /&gt;
==Troubleshooting==&lt;br /&gt;
* To re-mux without transcoding a .ts [[Transport Stream]] file to an [[M4A]] file use the following [[FFmpeg]] command: &lt;br /&gt;
** &amp;lt;big&amp;gt;&amp;lt;code&amp;gt;ffmpeg -i input.ts -acodec copy -acodec copy out.m4a&amp;lt;/code&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
* To re-mux without transcoding a .ts [[Transport Stream]] file to an [[AAC]] file use the following [[FFmpeg]] command: &lt;br /&gt;
** &amp;lt;big&amp;gt;&amp;lt;code&amp;gt;ffmpeg -i input.ts -acodec copy output.aac&amp;lt;/code&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
* When you forcibly kill a get_iplayer session when it is capturing content (leaving you with a file with the extension .ts), the above command is unlikely to work. This [[Transport Stream]] file will need to have it's bitstream filter fixed and then packaged to an [[M4A]] or [[MP4]] file in order to adequately use it. You can do this with [[FFmpeg]]:&lt;br /&gt;
** &amp;lt;big&amp;gt;&amp;lt;code&amp;gt;ffmpeg -i &amp;quot;input.ts&amp;quot; -c:a copy -c:a copy -bsf:a aac_adtstoasc &amp;quot;output.m4a&amp;quot;&amp;lt;/code&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
*** get_iplayer installs [[FFmpeg]] as part of it's own installation.&lt;br /&gt;
&lt;br /&gt;
==Download==&lt;br /&gt;
*[https://github.com/get-iplayer/get_iplayer Github get_iplayer official repository]&lt;br /&gt;
&lt;br /&gt;
==Further Reading==&lt;br /&gt;
*[http://www.bbc.co.uk/blogs/internet/entries/296ac283-54df-4c21-a38f-8cc1fa8731c8 Official BBC Audio Factory project info]&lt;br /&gt;
*[http://www.audiomisc.co.uk/BBC/AudioFactory/AudioFactory.html Audio Factory explained by an audiophile]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[category:Audio Tools]]&lt;br /&gt;
[[Category:Uploading Own Recordings]]&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=Get_iplayer&amp;diff=4706</id>
		<title>Get iplayer</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=Get_iplayer&amp;diff=4706"/>
		<updated>2022-11-28T17:07:40Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: Reverted edits by Slackline (talk) to last revision by Jaybeee&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''get_iplayer''' is a free and Open Source program released under the GNU GPL that allows you to access content from the [[BBC]] iPlayer. It is primarily used to capture video (TV) and audio (Radio) broadcasts. You are able to capture these media files from both the archived watch/listen again iPlayer as well as live streams. The media files captured are the actual source files transmitted by the [[BBC]] iPlayer. &lt;br /&gt;
&lt;br /&gt;
Currently the BBC iplayer live streams are transmitted at 320kpbs. However, only BBC Radio 3 &amp;amp; BBC 6 Music does so with full frequency range. Thus, there is still an imposed 15-16kHz frequency cut-off for all other stations. The listen again iPlayer transmits at 128kbps.&lt;br /&gt;
&lt;br /&gt;
The reason for highlighting the use of the get_iplayer is that the quality is as good as we have ever been able to get. Even a 128kbps [[M4A]] ([[AAC]]) file sounds excellent and of comparable quality to the very best FM recording. And with the 320kbps broadcasts the audio is truly excellent. Therefore, this is the recommend way to record BBC content.  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Capturing &amp;amp; Preparing BBC Radio Shows==&lt;br /&gt;
&lt;br /&gt;
===Windows OS===&lt;br /&gt;
&lt;br /&gt;
====Required Programs====&lt;br /&gt;
&lt;br /&gt;
*'''get_iplayer'''&lt;br /&gt;
*[[MP3DirectCut]] (requires the [http://www.rarewares.org/aac-decoders.php libfaad2.dll] to be installed)&lt;br /&gt;
*[[MP4Box]]&lt;br /&gt;
*A good tagging program such as [[Foobar2000]] or [[MP3tag]]&lt;br /&gt;
&lt;br /&gt;
====Steps====&lt;br /&gt;
&lt;br /&gt;
# Run '''get_iplayer''' and use the appropriate commands to capture the content you want:&lt;br /&gt;
#* '''Live iPlayer Streams''' (these are broadcasts/transmissions that are going out live on the BBC station)&lt;br /&gt;
#** &amp;lt;big&amp;gt;&amp;lt;code&amp;gt;get_iplayer --type=liveradio --get 80131 --stop=02:10:10 --force --attempts=5 --raw --ffmpeg-liveradio-opts=&amp;quot;-bsf:a aac_adtstoasc&amp;quot;&amp;lt;/code&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
#*** The above command captures 2 hours 10 minutes and 10 seconds of the live transmission from the BBC Radio 1 station once the get_iplayer program has been sent the command. The &amp;lt;big&amp;gt;&amp;lt;code&amp;gt;--stop&amp;lt;/code&amp;gt;&amp;lt;/big&amp;gt; option is hh:mm:ss. This enables you to cleanly end a recording. Do not use the &amp;lt;big&amp;gt;&amp;lt;code&amp;gt;--start&amp;lt;/code&amp;gt;&amp;lt;/big&amp;gt; option with live stream recording. Multiple instances of get_iplayer can also be scheduled to run. And using a Windows scheduler allows you to set up weekly repeats, which will be described later.&lt;br /&gt;
#*** You will be left with a [[Transport Stream]] (.ts) file. You can extract the raw [[AAC]] audio from it using [[FFmpeg]] with the following command:&lt;br /&gt;
#**** &amp;lt;big&amp;gt;&amp;lt;code&amp;gt;ffmpeg -i input.ts -acodec copy output.aac&amp;lt;/code&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
#:* Or better yet, create a batch script to make the process easier. Create a folder called &amp;lt;big&amp;gt;&amp;lt;code&amp;gt;ts2aac2m4a&amp;lt;/code&amp;gt;&amp;lt;/big&amp;gt;. Copy the following into a file named &amp;lt;big&amp;gt;&amp;lt;code&amp;gt;ts2aac.cmd&amp;lt;/code&amp;gt;&amp;lt;/big&amp;gt; and place the file into the folder you have just created (you might need to first make the file a text file and then change the .txt to .cmd):&lt;br /&gt;
#:* &amp;lt;big&amp;gt;&amp;lt;code&amp;gt;@ECHO OFF &amp;lt;/big&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
#::&amp;lt;big&amp;gt;&amp;lt;code&amp;gt;MKDIR aac&amp;lt;/big&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
#::&amp;lt;big&amp;gt;&amp;lt;code&amp;gt;FOR %%f IN (&amp;quot;*.ts&amp;quot;) DO ffmpeg -i &amp;quot;%%f&amp;quot; -acodec copy &amp;quot;aac\%%~nf.aac&amp;quot;&amp;lt;/code&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
#:* To run the above file you will need to have ffmpeg.exe in your PATH or within the same folder as the batch script or you can use [http://wiki.themixingbowl.org/User:Jaybeee jaybeee's] batch scripts.&lt;br /&gt;
#* '''Listen Again iPlayer Stream'''&lt;br /&gt;
#** &amp;lt;big&amp;gt;&amp;lt;code&amp;gt;get_iplayer --type=radio --pid=b006wkfp&amp;lt;/code&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
#*** The above command captures the audio that relates to the program with the pid as defined above; make sure you change it to the programme you want.&lt;br /&gt;
# You will most likely need to '''edit the audio''' to remove unwanted parts from the start and end. You can [[lossless]]ly do this with [[MP3DirectCut]]. It is vital to use a lossless / non-destructive audio editor to preserve the audio quality; otherwise you will decode and then re-encode (aka [[transcode]]) and further compress the file. However, [[MP3DirectCut]] only works on [[AAC]] (and [[MP3]]) files and not the [[M4A]] format, so you will need to '''unpackage the [[M4A]] file''' using [[MP4Box]] to '''extract the raw [[AAC]] file'''.&lt;br /&gt;
#* Run [[MP4Box]] with the following commands:&lt;br /&gt;
#** &amp;lt;big&amp;gt;&amp;lt;code&amp;gt;mp4box -raw 1 input.m4a -out output.aac&amp;lt;/code&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
#* Or better yet, create a batch script to make the process easier. Create a folder called &amp;lt;big&amp;gt;&amp;lt;code&amp;gt;ts2aac2m4a&amp;lt;/code&amp;gt;&amp;lt;/big&amp;gt;. Copy the following into a file named &amp;lt;big&amp;gt;&amp;lt;code&amp;gt;m4a2aac.cmd&amp;lt;/code&amp;gt;&amp;lt;/big&amp;gt; and place the file into the folder you have just created (you might need to first make the file a text file and then change the .txt to .cmd):&lt;br /&gt;
#** &amp;lt;big&amp;gt;&amp;lt;code&amp;gt;@ECHO OFF &amp;lt;/big&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
#::&amp;lt;big&amp;gt;&amp;lt;code&amp;gt;MKDIR aac &amp;lt;/big&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
#::&amp;lt;big&amp;gt;&amp;lt;code&amp;gt;FOR %%f IN (&amp;quot;*.m4a&amp;quot;) DO mp4box -raw 1 &amp;quot;%%f&amp;quot; -out &amp;quot;aac\%%~nf.aac&amp;quot;&amp;lt;/code&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
#* So now all you have to do is place the captured .m4a file into the &amp;lt;big&amp;gt;&amp;lt;code&amp;gt;ts2aac2m4a&amp;lt;/code&amp;gt;&amp;lt;/big&amp;gt; folder, run the &amp;lt;big&amp;gt;&amp;lt;code&amp;gt;m4a2aac.cmd&amp;lt;/code&amp;gt;&amp;lt;/big&amp;gt; batch script and you will find the extracted [[AAC]] file in a sub-folder called &amp;lt;big&amp;gt;&amp;lt;code&amp;gt;\ts2aac2ma4\aac&amp;lt;/code&amp;gt;&amp;lt;/big&amp;gt;.&lt;br /&gt;
# Run [[MP3DirectCut]] and open the extracted [[AAC]] file and make the necessary edits. Make sure you save your changes.&lt;br /&gt;
# The [[AAC]] file must now be repackaged back into a [[M4A]] container to ensure correct playback and compatibility with media players (and to allow you to tag the file).&lt;br /&gt;
#* Run [[MP4Box]] with the following commands:&lt;br /&gt;
#** &amp;lt;big&amp;gt;&amp;lt;code&amp;gt;mp4box -add input.aac output.m4a -new&amp;lt;/code&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
#* Or better yet, create a batch script like above to make the process easier. Copy the following into a file named &amp;lt;big&amp;gt;&amp;lt;code&amp;gt;aac2m4a.cmd&amp;lt;/code&amp;gt;&amp;lt;/big&amp;gt; and save the file into the folder &amp;lt;big&amp;gt;&amp;lt;code&amp;gt;\ts2aac2m4a\aac&amp;lt;/code&amp;gt;&amp;lt;/big&amp;gt;:&lt;br /&gt;
#** &amp;lt;big&amp;gt;&amp;lt;code&amp;gt;@ECHO OFF&amp;lt;/big&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
#::&amp;lt;big&amp;gt;&amp;lt;code&amp;gt;MKDIR m4a&amp;lt;/big&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
#::&amp;lt;big&amp;gt;&amp;lt;code&amp;gt;FOR %%f IN (&amp;quot;*.aac&amp;quot;) do mp4box -add &amp;quot;%%f&amp;quot; &amp;quot;m4a\%%~nf.m4a&amp;quot; -new&amp;lt;/code&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
#* Run the &amp;lt;big&amp;gt;&amp;lt;code&amp;gt;aac2m4a.cmd&amp;lt;/code&amp;gt;&amp;lt;/big&amp;gt; batch script and you will find the repackaged [[M4A]] file in a sub-folder &amp;lt;big&amp;gt;&amp;lt;code&amp;gt;\ts2aac2m4a\aac\m4a&amp;lt;/code&amp;gt;&amp;lt;/big&amp;gt;.&lt;br /&gt;
# Using your preferred '''tagging tool''' (we recommend [[Foobar2000]] or [[MP3tag]]) add the appropriate tags.&lt;br /&gt;
#* Take pride in your uploads by tagging them correctly. It helps the grateful listeners organise their media files.&lt;br /&gt;
# Optional part: [[Replaygain]] the file. In [[Foobar2000]] you can do this by adding [[Replaygain]] tags or even permanently apply the [[Replaygain]] changes to the actual file, meaning all media players will play the file at this adjusted loudness.&lt;br /&gt;
# Upload to [[TMB]], sit back and have thousands download and admire your great work... or get a few thumbsup :-P&lt;br /&gt;
&lt;br /&gt;
==Troubleshooting==&lt;br /&gt;
* To re-mux without transcoding a .ts [[Transport Stream]] file to an [[M4A]] file use the following [[FFmpeg]] command: &lt;br /&gt;
** &amp;lt;big&amp;gt;&amp;lt;code&amp;gt;ffmpeg -i input.ts -acodec copy -acodec copy out.m4a&amp;lt;/code&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
* To re-mux without transcoding a .ts [[Transport Stream]] file to an [[AAC]] file use the following [[FFmpeg]] command: &lt;br /&gt;
** &amp;lt;big&amp;gt;&amp;lt;code&amp;gt;ffmpeg -i input.ts -acodec copy output.aac&amp;lt;/code&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
* When you forcibly kill a get_iplayer session when it is capturing content (leaving you with a file with the extension .ts), the above command is unlikely to work. This [[Transport Stream]] file will need to have it's bitstream filter fixed and then packaged to an [[M4A]] or [[MP4]] file in order to adequately use it. You can do this with [[FFmpeg]]:&lt;br /&gt;
** &amp;lt;big&amp;gt;&amp;lt;code&amp;gt;ffmpeg -i &amp;quot;input.ts&amp;quot; -c:a copy -c:a copy -bsf:a aac_adtstoasc &amp;quot;output.m4a&amp;quot;&amp;lt;/code&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
*** get_iplayer installs [[FFmpeg]] as part of it's own installation.&lt;br /&gt;
&lt;br /&gt;
==Download==&lt;br /&gt;
*[https://github.com/get-iplayer/ Github get_iplayer official repository]&lt;br /&gt;
*[https://squarepenguin.co.uk/ Squarepenguin website] - a nicely designed website that mirrors the Github site&lt;br /&gt;
&lt;br /&gt;
==Further Reading==&lt;br /&gt;
*[http://www.bbc.co.uk/blogs/internet/entries/296ac283-54df-4c21-a38f-8cc1fa8731c8 Official BBC Audio Factory project info]&lt;br /&gt;
*[http://www.audiomisc.co.uk/BBC/AudioFactory/AudioFactory.html Audio Factory explained by an audiophile]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[category:Audio Tools]]&lt;br /&gt;
[[Category:Uploading Own Recordings]]&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=MP3packer&amp;diff=4704</id>
		<title>MP3packer</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=MP3packer&amp;diff=4704"/>
		<updated>2022-10-18T11:00:42Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: tidy up&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=MP3packer=&lt;br /&gt;
'''MP3packer''' (written by Omion over at [https://hydrogenaudio.io/ HydrogenAudio]) attempts to save space by storing frame data in the smallest possible frame. Usually [[MP3]]s are already stored in the most efficient way possible. However, for high-bitrate [[CBR]] files, e.g. 320kbps (created via [[LAME]] '-b 320' aka '--preset insane' for example) there can be a lot of wasted space. So, the original idea of MP3packer was created to reduce the size of high bitrate [[CBR]] files, turning them into [[VBR]] files. However, MP3packer can also turn [[VBR]] files into [[CBR]].&lt;br /&gt;
&lt;br /&gt;
==Download==&lt;br /&gt;
The [http://wiki.themixingbowl.org/MP3packer#Download_2 WinMP3Packer download] below contains MP3packer&lt;br /&gt;
&lt;br /&gt;
==Features==&lt;br /&gt;
* Usually makes 320kbps files 2-10% smaller LOSSLESSLY&lt;br /&gt;
* Corrects errors of the [[MP3]] bitstream (sync errors / buffer errors)&lt;br /&gt;
* Squeezes out all the padding it can from any [[MP3]] (Will not produce a larger file, unless you use the '-b' switch)&lt;br /&gt;
* Writes valid [[LAME]]/Xing header for proper [[VBR]] seeking and gapless playback&lt;br /&gt;
* Provides the ability to losslessly turn VBR files into larger CBR files to humor players which can't handle VBR &lt;br /&gt;
* Strip headers from the start and/or end of the files&lt;br /&gt;
* GPL, so anybody can tweak it as long as it stays GPL&lt;br /&gt;
* Works on [[MP2]] files also&lt;br /&gt;
* Includes a brute-force compression optimization option to further compress files&lt;br /&gt;
* Supports Unicode file names and paths&lt;br /&gt;
* Supports encoding an entire directory of files&lt;br /&gt;
* Multi-core support&lt;br /&gt;
* 64-bit support (precompiled Windows executable builds for 32 and 64 bit available) &lt;br /&gt;
&lt;br /&gt;
==A few caveats==&lt;br /&gt;
* It's only been tested it on Win32. It ''should'' work just fine on any UNIXish OS with an OCaml port.&lt;br /&gt;
* The program will always output an [[MP3]] that doesn't use CRCs (Cyclical Redundancy Checking), even if the input file uses CRC. This is primarily laziness on the author's part, but nobody really needs them, and it saves 600 bits per second.&lt;br /&gt;
* Reduction in size, as mentioned in the [http://wiki.themixingbowl.org/MP3packer#Features MP3packer features] can be very small: do not expect miracles&lt;br /&gt;
* There is a limitation in that it cannot repack Freeformat MP3s&lt;br /&gt;
&lt;br /&gt;
==MP3packer Optimization Solutions==&lt;br /&gt;
&lt;br /&gt;
* [[MP3optimized]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=WinMP3Packer=&lt;br /&gt;
'''WinMP3Packer''' is a frontend for the [[MP3packer]] program written by Chris Close (psyllium) also over at [https://hydrogenaud.io/index.php/topic,40780 HydrogenAudio]. You'll need the .NET Framework (2.0) installed to use this GUI.&lt;br /&gt;
&lt;br /&gt;
==Download==&lt;br /&gt;
Download the latest version from:&lt;br /&gt;
* [https://jaybeee.themixingbowl.org/winmp3packer/WinMP3Packer-1.0.18-alpha-2.04.7z WinMP3Packer-1.0.18-alpha-2.04.7z] &amp;lt;small&amp;gt;(packaged with mp3packer v2.04)&amp;lt;/small&amp;gt;&lt;br /&gt;
* [https://jaybeee.themixingbowl.org/winmp3packer/WinMP3Packer-1.0.18-alpha.zip WinMP3Packer-1.0.18-alpha.zip] &amp;lt;small&amp;gt;(packaged with mp3packer v1.20)&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Features==&lt;br /&gt;
* see [http://wiki.themixingbowl.org/MP3packer#Features MP3packer features]&lt;br /&gt;
* Allows for batch processing: multiple files and folders may be selected&lt;br /&gt;
* Allows for processing whole folders. Will also recurse into the sub-folders and process the files in there&lt;br /&gt;
* When processing whole folders, the option 'Recreate sub-folders' will put the output files into the same sort of directory structure as the input files&lt;br /&gt;
* Easy update to the latest version of MP3packer by simply overwriting the ''mp3packer.exe'' in the ''WinMP3Packer'' folder with the latest ''mp3packer.exe'' version &lt;br /&gt;
&lt;br /&gt;
[[Image:WinMP3Packer-screenshot.png]]&lt;br /&gt;
&lt;br /&gt;
[[category:Audio Tools]]&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=MP3packer&amp;diff=4703</id>
		<title>MP3packer</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=MP3packer&amp;diff=4703"/>
		<updated>2022-10-18T10:51:00Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: mp3packer download not available at original ha.io url, so stricken&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=MP3packer=&lt;br /&gt;
'''MP3packer''' (written by Omion over at [http://www.hydrogenaudio.org/ HydrogenAudio.org]) attempts to save space by storing frame data in the smallest possible frame. Usually [[MP3]]s are already stored in the most efficient way possible. However, for high-bitrate [[CBR]] files, e.g. 320kbps (created via [[LAME]] '-b 320' aka '--preset insane' for example) there can be a lot of wasted space. So, the original idea of MP3packer was created to reduce the size of high bitrate [[CBR]] files, turning them into [[VBR]] files. However, MP3packer can also turn [[VBR]] files into [[CBR]].&lt;br /&gt;
&lt;br /&gt;
==Download==&lt;br /&gt;
&amp;lt;s&amp;gt;Download the latest version from:&amp;lt;/s&amp;gt;&lt;br /&gt;
* https://hydrogenaud.io/index.php/topic,32379&lt;br /&gt;
&lt;br /&gt;
==Features==&lt;br /&gt;
* Usually makes 320kbps files 2-10% smaller LOSSLESSLY&lt;br /&gt;
* Corrects errors of the [[MP3]] bitstream (sync errors / buffer errors)&lt;br /&gt;
* Squeezes out all the padding it can from any [[MP3]] (Will not produce a larger file, unless you use the '-b' switch)&lt;br /&gt;
* Writes valid [[LAME]]/Xing header for proper [[VBR]] seeking and gapless playback&lt;br /&gt;
* Provides the ability to losslessly turn VBR files into larger CBR files to humor players which can't handle VBR &lt;br /&gt;
* Strip headers from the start and/or end of the files&lt;br /&gt;
* GPL, so anybody can tweak it as long as it stays GPL&lt;br /&gt;
* Works on [[MP2]] files also&lt;br /&gt;
* Includes a brute-force compression optimization option to further compress files&lt;br /&gt;
* Supports Unicode file names and paths&lt;br /&gt;
* Supports encoding an entire directory of files&lt;br /&gt;
* Multi-core support&lt;br /&gt;
* 64-bit support (precompiled Windows executable builds for 32 and 64 bit available) &lt;br /&gt;
&lt;br /&gt;
==A few caveats==&lt;br /&gt;
* It's only been tested it on Win32. It ''should'' work just fine on any UNIXish OS with an OCaml port.&lt;br /&gt;
* The program will always output an [[MP3]] that doesn't use CRCs (Cyclical Redundancy Checking), even if the input file uses CRC. This is primarily laziness on the author's part, but nobody really needs them, and it saves 600 bits per second.&lt;br /&gt;
* Reduction in size, as mentioned in the [http://wiki.themixingbowl.org/MP3packer#Features MP3packer features] can be very small: do not expect miracles&lt;br /&gt;
* There is a limitation in that it cannot repack Freeformat MP3s&lt;br /&gt;
&lt;br /&gt;
==MP3packer Optimization Solutions==&lt;br /&gt;
&lt;br /&gt;
* [[MP3optimized]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=WinMP3Packer=&lt;br /&gt;
'''WinMP3Packer''' is a frontend for the [[MP3packer]] program written by Chris Close (psyllium) also over at [http://www.hydrogenaudio.org/ HydrogenAudio.org]. You'll need the .NET Framework (2.0) installed to use this GUI.&lt;br /&gt;
&lt;br /&gt;
==Download==&lt;br /&gt;
Download the latest version from:&lt;br /&gt;
* [https://jaybeee.themixingbowl.org/winmp3packer/WinMP3Packer-1.0.18-alpha-2.04.7z WinMP3Packer-1.0.18-alpha-2.04.7z] &amp;lt;small&amp;gt;(packaged with mp3packer v2.04)&amp;lt;/small&amp;gt;&lt;br /&gt;
* [https://jaybeee.themixingbowl.org/winmp3packer/WinMP3Packer-1.0.18-alpha.zip WinMP3Packer-1.0.18-alpha.zip] &amp;lt;small&amp;gt;(packaged with mp3packer v1.20)&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Features==&lt;br /&gt;
* see [http://wiki.themixingbowl.org/MP3packer#Features MP3packer features]&lt;br /&gt;
* Allows for batch processing: multiple files and folders may be selected&lt;br /&gt;
* Allows for processing whole folders. Will also recurse into the sub-folders and process the files in there&lt;br /&gt;
* When processing whole folders, the option 'Recreate sub-folders' will put the output files into the same sort of directory structure as the input files&lt;br /&gt;
* Easy update to the latest version of MP3packer by simply overwriting the ''mp3packer.exe'' in the ''WinMP3Packer'' folder with the latest ''mp3packer.exe'' version &lt;br /&gt;
&lt;br /&gt;
[[Image:WinMP3Packer-screenshot.png]]&lt;br /&gt;
&lt;br /&gt;
[[category:Audio Tools]]&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=FFmpeg&amp;diff=4702</id>
		<title>FFmpeg</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=FFmpeg&amp;diff=4702"/>
		<updated>2022-08-20T18:28:59Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: ffmpeg direct dl link for windows added&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''FFmpeg''' is the leading multimedia framework, able to decode, encode, transcode, mux, remux, demux, stream, filter and play pretty much anything that humans and machines have created. It supports the most obscure ancient formats up to the cutting edge. No matter if they were designed by some standards committee, the community or a corporation.&lt;br /&gt;
&lt;br /&gt;
*https://www.ffmpeg.org/&lt;br /&gt;
*https://ffmpeg.org/download.html &amp;gt; [https://www.gyan.dev/ffmpeg/builds/ffmpeg-git-full.7z ffmpeg full Windows build direct download]&lt;br /&gt;
&lt;br /&gt;
==Audio Editing Scripts==&lt;br /&gt;
&lt;br /&gt;
The instructions and scripts have been written in and tested on the Windows operating system. &lt;br /&gt;
&lt;br /&gt;
===AAC Fades===&lt;br /&gt;
&lt;br /&gt;
Unfortunately, the [[AAC]] format cannot have fades applied to it in a [[Lossless|lossless]] way. Therefore, when applying a fade-in or a fade-out to AAC files the audio will be [[Lossy|lossy]] [[transcoding|transcoded]]. Luckily, lossy transcoding AAC files is far [https://bernholdtech.blogspot.com/2013/03/Nine-different-audio-encoders-100-pass-recompression-test.html less destructive] than other lossy formats such as [[MP3]]s. However, it is still highly recommended to only apply fades to an AAC file that has been cut out of the main AAC file, which can then be merged back with the main AAC file once the fades have been applied. This will minimise the lossy transcoding and keep it to the fade-in and fade-out sections. &lt;br /&gt;
&lt;br /&gt;
====Use-case Scenario====&lt;br /&gt;
&lt;br /&gt;
*Complete all edits of your AAC file in [[MP3DirectCut]] and leave it in there. &lt;br /&gt;
**'''Fade-in''':&lt;br /&gt;
***Cut out the fade-in section: start of file for ''d'' seconds. For example: if you want the fade-in to be 5 seconds long, then cut out the first 5 seconds. It doesn't have to be exactly 5 seconds, but must not be less otherwise the sound might &amp;quot;jump up&amp;quot; when merged back into the main file.&lt;br /&gt;
****Process this ''to-be-faded-in.aac'' file using the fade-in script below.&lt;br /&gt;
*****Open the resulting ''faded-in.aac'' file using another MP3DirectCut instance, select all the audio, copy and paste into the start of the main/original AAC file that is still open in MP3DirectCut. Thus, you've now replaced the original starting audio with the new faded-in audio.&lt;br /&gt;
**'''Fade-out''':&lt;br /&gt;
***Cut out the fade-out section: end of file for ''d'' seconds. For example: if you want the fade-out to be 7 seconds long, then cut out the last 7 seconds. It doesn't have to be exactly 7 seconds, but is best to not be less otherwise the sound doesn't completely fade-out to nothing. &lt;br /&gt;
****Process this ''to-be-faded-out.aac'' file using the fade-out script below.&lt;br /&gt;
*****Open the resulting ''faded-out.aac'' file using another MP3DirectCut instance, select all the audio, copy and paste into the end of the main/original AAC file that is still open in MP3DirectCut. Thus, you've now replaced the original ending audio with the new faded-out audio.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Making these small cuts, processing the fades, then copying &amp;amp; pasting back in, is the best way to minimise negatively impacting the majority of the audio with lossy transcoding.&lt;br /&gt;
&lt;br /&gt;
To note: both scripts will output aac files with a 320kbps bitrate. This can be changed if necessary by altering the ''-b:a'' number.&lt;br /&gt;
&lt;br /&gt;
====AAC Fade-In====&lt;br /&gt;
&lt;br /&gt;
Copy and paste the below text into a text file and rename it '''aac-fade-in.cmd'''&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;:: Name:     aac-fade-in.cmd&lt;br /&gt;
:: Purpose:  Configures ffmpeg to amend the volume to a fade-in - **LOSSY**&lt;br /&gt;
:: Usage:    drag and drop aac file onto this script&lt;br /&gt;
:: Author:   jaybeee @ themixingbowl.org&lt;br /&gt;
:: Revision: Feb 2021 - v0.1&lt;br /&gt;
&lt;br /&gt;
@ECHO OFF&lt;br /&gt;
&lt;br /&gt;
SETLOCAL ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION&lt;br /&gt;
&lt;br /&gt;
:: variables begin with v&lt;br /&gt;
&lt;br /&gt;
:: set name of this script without file extension&lt;br /&gt;
SET vMe=%~n0&lt;br /&gt;
&lt;br /&gt;
:: set name of the parent directory where this script resides&lt;br /&gt;
SET vParent=%~dp0&lt;br /&gt;
&lt;br /&gt;
:: set ffmpeg path location if not already in WINDOWS PATH ** CHANGE ME **&lt;br /&gt;
::SET vffmpeg=&amp;quot;C:\PATH\TO\FFMPEG.EXE&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: Ask the user to enter the duration of the fade-in in seconds&lt;br /&gt;
echo ** Enter duration of fade-in in ss.mmm format when prompted **&lt;br /&gt;
SET /p vSss=&amp;quot;Fade-in duration (ss.mmm): &amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: call ffmpeg to fade in the first d seconds starting at ss&lt;br /&gt;
:: we then have to lossy transcode the audio&lt;br /&gt;
MKDIR aac&lt;br /&gt;
FOR %%f IN (%*) DO ffmpeg -i %%f -af afade=t=in:ss=0:d=%vSss% -b:a 320k &amp;quot;aac\fade-in-%%~nf.aac&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: Finish&lt;br /&gt;
ECHO Finished aac fade-in&lt;br /&gt;
&lt;br /&gt;
:: pause can be used to view the extraction details&lt;br /&gt;
PAUSE&lt;br /&gt;
&lt;br /&gt;
:END&lt;br /&gt;
ENDLOCAL&lt;br /&gt;
ECHO ON&lt;br /&gt;
@EXIT /B 0&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====AAC Fade-Out====&lt;br /&gt;
&lt;br /&gt;
Copy and paste the below text into a text file and rename it '''aac-fade-out.cmd'''&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;:: Name:     aac-fade-out.cmd&lt;br /&gt;
:: Purpose:  Configures ffmpeg to amend the volume to a fade-out - **LOSSY**&lt;br /&gt;
:: Usage:    drag and drop aac file onto this script&lt;br /&gt;
:: Author:   jaybeee @ themixingbowl.org&lt;br /&gt;
:: Revision: Feb 2021 - v0.1&lt;br /&gt;
&lt;br /&gt;
@ECHO OFF&lt;br /&gt;
&lt;br /&gt;
SETLOCAL ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION&lt;br /&gt;
&lt;br /&gt;
:: variables begin with v&lt;br /&gt;
&lt;br /&gt;
:: set name of this script without file extension&lt;br /&gt;
SET vMe=%~n0&lt;br /&gt;
&lt;br /&gt;
:: set name of the parent directory where this script resides&lt;br /&gt;
SET vParent=%~dp0&lt;br /&gt;
&lt;br /&gt;
:: set ffmpeg path location if not already in WINDOWS PATH ** CHANGE ME **&lt;br /&gt;
::SET vffmpeg=&amp;quot;C:\PATH\TO\FFMPEG.EXE&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: Ask the user to enter the duration of the fade-in in seconds&lt;br /&gt;
echo ** Enter duration of fade-in in ss.mmm format when prompted **&lt;br /&gt;
SET /p vEss=&amp;quot;Fade-out duration Time (ss.mmm): &amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: call ffmpeg to fade-out the first d seconds starting at ss&lt;br /&gt;
:: we then have to lossy transcode the audio&lt;br /&gt;
MKDIR aac&lt;br /&gt;
FOR %%f IN (%*) DO ffmpeg -i %%f -af afade=t=out:st=0:d=%vEss% -b:a 320k &amp;quot;aac\fade-out-%%~nf.aac&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: Finish&lt;br /&gt;
ECHO Finished aac fade-out&lt;br /&gt;
&lt;br /&gt;
:: pause can be used to view the extraction details&lt;br /&gt;
PAUSE&lt;br /&gt;
&lt;br /&gt;
:END&lt;br /&gt;
ENDLOCAL&lt;br /&gt;
ECHO ON&lt;br /&gt;
@EXIT /B 0&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Extract Opus from webm===&lt;br /&gt;
&lt;br /&gt;
Copy and paste the below text into a text file and rename it '''webm2opus.cmd'''&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;:: Name:     webm2opus.cmd&lt;br /&gt;
:: Purpose:  Configures ffmpeg to extract opus from webm&lt;br /&gt;
:: Author:   jaybeee @ themixingbowl.org&lt;br /&gt;
:: Revision: March 2022 - v0.2&lt;br /&gt;
&lt;br /&gt;
@ECHO OFF&lt;br /&gt;
&lt;br /&gt;
SETLOCAL ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION&lt;br /&gt;
&lt;br /&gt;
:: variables begin with v&lt;br /&gt;
&lt;br /&gt;
:: set name of this script without file extension&lt;br /&gt;
SET vMe=%~n0&lt;br /&gt;
&lt;br /&gt;
:: set name of the parent directory where this script resides&lt;br /&gt;
SET vParent=%~dp0&lt;br /&gt;
&lt;br /&gt;
:: set location of ffmpeg ** CHANGE ME **&lt;br /&gt;
::SET vffmpeg=&amp;quot;C:\PATH\TO\FFMPEG.exe&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: call ffmpeg to extract opus file(s) from webm file(s) that have been dropped onto it save in opus directory&lt;br /&gt;
MKDIR opus&lt;br /&gt;
FOR %%f IN (%*) DO ffmpeg -i %%f -vn -acodec copy &amp;quot;opus\%%~nf.opus&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: Finish&lt;br /&gt;
ECHO Finished opus extraction&lt;br /&gt;
&lt;br /&gt;
:: pause can be used to view the extraction details&lt;br /&gt;
PAUSE&lt;br /&gt;
&lt;br /&gt;
:END&lt;br /&gt;
ENDLOCAL&lt;br /&gt;
ECHO ON&lt;br /&gt;
@EXIT /B 0&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[category:Audio Tools]]&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=FFmpeg&amp;diff=4701</id>
		<title>FFmpeg</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=FFmpeg&amp;diff=4701"/>
		<updated>2022-05-26T18:36:23Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: /* Audio Editing Scripts */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''FFmpeg''' is the leading multimedia framework, able to decode, encode, transcode, mux, remux, demux, stream, filter and play pretty much anything that humans and machines have created. It supports the most obscure ancient formats up to the cutting edge. No matter if they were designed by some standards committee, the community or a corporation.&lt;br /&gt;
&lt;br /&gt;
*https://www.ffmpeg.org/&lt;br /&gt;
*https://ffmpeg.org/download.html&lt;br /&gt;
&lt;br /&gt;
==Audio Editing Scripts==&lt;br /&gt;
&lt;br /&gt;
The instructions and scripts have been written in and tested on the Windows operating system. &lt;br /&gt;
&lt;br /&gt;
===AAC Fades===&lt;br /&gt;
&lt;br /&gt;
Unfortunately, the [[AAC]] format cannot have fades applied to it in a [[Lossless|lossless]] way. Therefore, when applying a fade-in or a fade-out to AAC files the audio will be [[Lossy|lossy]] [[transcoding|transcoded]]. Luckily, lossy transcoding AAC files is far [https://bernholdtech.blogspot.com/2013/03/Nine-different-audio-encoders-100-pass-recompression-test.html less destructive] than other lossy formats such as [[MP3]]s. However, it is still highly recommended to only apply fades to an AAC file that has been cut out of the main AAC file, which can then be merged back with the main AAC file once the fades have been applied. This will minimise the lossy transcoding and keep it to the fade-in and fade-out sections. &lt;br /&gt;
&lt;br /&gt;
====Use-case Scenario====&lt;br /&gt;
&lt;br /&gt;
*Complete all edits of your AAC file in [[MP3DirectCut]] and leave it in there. &lt;br /&gt;
**'''Fade-in''':&lt;br /&gt;
***Cut out the fade-in section: start of file for ''d'' seconds. For example: if you want the fade-in to be 5 seconds long, then cut out the first 5 seconds. It doesn't have to be exactly 5 seconds, but must not be less otherwise the sound might &amp;quot;jump up&amp;quot; when merged back into the main file.&lt;br /&gt;
****Process this ''to-be-faded-in.aac'' file using the fade-in script below.&lt;br /&gt;
*****Open the resulting ''faded-in.aac'' file using another MP3DirectCut instance, select all the audio, copy and paste into the start of the main/original AAC file that is still open in MP3DirectCut. Thus, you've now replaced the original starting audio with the new faded-in audio.&lt;br /&gt;
**'''Fade-out''':&lt;br /&gt;
***Cut out the fade-out section: end of file for ''d'' seconds. For example: if you want the fade-out to be 7 seconds long, then cut out the last 7 seconds. It doesn't have to be exactly 7 seconds, but is best to not be less otherwise the sound doesn't completely fade-out to nothing. &lt;br /&gt;
****Process this ''to-be-faded-out.aac'' file using the fade-out script below.&lt;br /&gt;
*****Open the resulting ''faded-out.aac'' file using another MP3DirectCut instance, select all the audio, copy and paste into the end of the main/original AAC file that is still open in MP3DirectCut. Thus, you've now replaced the original ending audio with the new faded-out audio.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Making these small cuts, processing the fades, then copying &amp;amp; pasting back in, is the best way to minimise negatively impacting the majority of the audio with lossy transcoding.&lt;br /&gt;
&lt;br /&gt;
To note: both scripts will output aac files with a 320kbps bitrate. This can be changed if necessary by altering the ''-b:a'' number.&lt;br /&gt;
&lt;br /&gt;
====AAC Fade-In====&lt;br /&gt;
&lt;br /&gt;
Copy and paste the below text into a text file and rename it '''aac-fade-in.cmd'''&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;:: Name:     aac-fade-in.cmd&lt;br /&gt;
:: Purpose:  Configures ffmpeg to amend the volume to a fade-in - **LOSSY**&lt;br /&gt;
:: Usage:    drag and drop aac file onto this script&lt;br /&gt;
:: Author:   jaybeee @ themixingbowl.org&lt;br /&gt;
:: Revision: Feb 2021 - v0.1&lt;br /&gt;
&lt;br /&gt;
@ECHO OFF&lt;br /&gt;
&lt;br /&gt;
SETLOCAL ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION&lt;br /&gt;
&lt;br /&gt;
:: variables begin with v&lt;br /&gt;
&lt;br /&gt;
:: set name of this script without file extension&lt;br /&gt;
SET vMe=%~n0&lt;br /&gt;
&lt;br /&gt;
:: set name of the parent directory where this script resides&lt;br /&gt;
SET vParent=%~dp0&lt;br /&gt;
&lt;br /&gt;
:: set ffmpeg path location if not already in WINDOWS PATH ** CHANGE ME **&lt;br /&gt;
::SET vffmpeg=&amp;quot;C:\PATH\TO\FFMPEG.EXE&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: Ask the user to enter the duration of the fade-in in seconds&lt;br /&gt;
echo ** Enter duration of fade-in in ss.mmm format when prompted **&lt;br /&gt;
SET /p vSss=&amp;quot;Fade-in duration (ss.mmm): &amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: call ffmpeg to fade in the first d seconds starting at ss&lt;br /&gt;
:: we then have to lossy transcode the audio&lt;br /&gt;
MKDIR aac&lt;br /&gt;
FOR %%f IN (%*) DO ffmpeg -i %%f -af afade=t=in:ss=0:d=%vSss% -b:a 320k &amp;quot;aac\fade-in-%%~nf.aac&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: Finish&lt;br /&gt;
ECHO Finished aac fade-in&lt;br /&gt;
&lt;br /&gt;
:: pause can be used to view the extraction details&lt;br /&gt;
PAUSE&lt;br /&gt;
&lt;br /&gt;
:END&lt;br /&gt;
ENDLOCAL&lt;br /&gt;
ECHO ON&lt;br /&gt;
@EXIT /B 0&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====AAC Fade-Out====&lt;br /&gt;
&lt;br /&gt;
Copy and paste the below text into a text file and rename it '''aac-fade-out.cmd'''&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;:: Name:     aac-fade-out.cmd&lt;br /&gt;
:: Purpose:  Configures ffmpeg to amend the volume to a fade-out - **LOSSY**&lt;br /&gt;
:: Usage:    drag and drop aac file onto this script&lt;br /&gt;
:: Author:   jaybeee @ themixingbowl.org&lt;br /&gt;
:: Revision: Feb 2021 - v0.1&lt;br /&gt;
&lt;br /&gt;
@ECHO OFF&lt;br /&gt;
&lt;br /&gt;
SETLOCAL ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION&lt;br /&gt;
&lt;br /&gt;
:: variables begin with v&lt;br /&gt;
&lt;br /&gt;
:: set name of this script without file extension&lt;br /&gt;
SET vMe=%~n0&lt;br /&gt;
&lt;br /&gt;
:: set name of the parent directory where this script resides&lt;br /&gt;
SET vParent=%~dp0&lt;br /&gt;
&lt;br /&gt;
:: set ffmpeg path location if not already in WINDOWS PATH ** CHANGE ME **&lt;br /&gt;
::SET vffmpeg=&amp;quot;C:\PATH\TO\FFMPEG.EXE&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: Ask the user to enter the duration of the fade-in in seconds&lt;br /&gt;
echo ** Enter duration of fade-in in ss.mmm format when prompted **&lt;br /&gt;
SET /p vEss=&amp;quot;Fade-out duration Time (ss.mmm): &amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: call ffmpeg to fade-out the first d seconds starting at ss&lt;br /&gt;
:: we then have to lossy transcode the audio&lt;br /&gt;
MKDIR aac&lt;br /&gt;
FOR %%f IN (%*) DO ffmpeg -i %%f -af afade=t=out:st=0:d=%vEss% -b:a 320k &amp;quot;aac\fade-out-%%~nf.aac&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: Finish&lt;br /&gt;
ECHO Finished aac fade-out&lt;br /&gt;
&lt;br /&gt;
:: pause can be used to view the extraction details&lt;br /&gt;
PAUSE&lt;br /&gt;
&lt;br /&gt;
:END&lt;br /&gt;
ENDLOCAL&lt;br /&gt;
ECHO ON&lt;br /&gt;
@EXIT /B 0&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Extract Opus from webm===&lt;br /&gt;
&lt;br /&gt;
Copy and paste the below text into a text file and rename it '''webm2opus.cmd'''&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;:: Name:     webm2opus.cmd&lt;br /&gt;
:: Purpose:  Configures ffmpeg to extract opus from webm&lt;br /&gt;
:: Author:   jaybeee @ themixingbowl.org&lt;br /&gt;
:: Revision: March 2022 - v0.2&lt;br /&gt;
&lt;br /&gt;
@ECHO OFF&lt;br /&gt;
&lt;br /&gt;
SETLOCAL ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION&lt;br /&gt;
&lt;br /&gt;
:: variables begin with v&lt;br /&gt;
&lt;br /&gt;
:: set name of this script without file extension&lt;br /&gt;
SET vMe=%~n0&lt;br /&gt;
&lt;br /&gt;
:: set name of the parent directory where this script resides&lt;br /&gt;
SET vParent=%~dp0&lt;br /&gt;
&lt;br /&gt;
:: set location of ffmpeg ** CHANGE ME **&lt;br /&gt;
::SET vffmpeg=&amp;quot;C:\PATH\TO\FFMPEG.exe&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: call ffmpeg to extract opus file(s) from webm file(s) that have been dropped onto it save in opus directory&lt;br /&gt;
MKDIR opus&lt;br /&gt;
FOR %%f IN (%*) DO ffmpeg -i %%f -vn -acodec copy &amp;quot;opus\%%~nf.opus&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: Finish&lt;br /&gt;
ECHO Finished opus extraction&lt;br /&gt;
&lt;br /&gt;
:: pause can be used to view the extraction details&lt;br /&gt;
PAUSE&lt;br /&gt;
&lt;br /&gt;
:END&lt;br /&gt;
ENDLOCAL&lt;br /&gt;
ECHO ON&lt;br /&gt;
@EXIT /B 0&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[category:Audio Tools]]&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=FFmpeg&amp;diff=4700</id>
		<title>FFmpeg</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=FFmpeg&amp;diff=4700"/>
		<updated>2022-05-26T12:56:58Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: /* Audio Editing Scripts */ added webm2opus.cmd script&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''FFmpeg''' is the leading multimedia framework, able to decode, encode, transcode, mux, remux, demux, stream, filter and play pretty much anything that humans and machines have created. It supports the most obscure ancient formats up to the cutting edge. No matter if they were designed by some standards committee, the community or a corporation.&lt;br /&gt;
&lt;br /&gt;
*https://www.ffmpeg.org/&lt;br /&gt;
*https://ffmpeg.org/download.html&lt;br /&gt;
&lt;br /&gt;
==Audio Editing Scripts==&lt;br /&gt;
&lt;br /&gt;
The instructions and scripts have been written in and tested on the Windows operating system. &lt;br /&gt;
&lt;br /&gt;
===AAC Fades===&lt;br /&gt;
&lt;br /&gt;
Unfortunately, the [[AAC]] format cannot have fades applied to it in a [[Lossless|lossless]] way. Therefore, when applying a fade-in or a fade-out to AAC files the audio will be [[Lossy|lossy]] [[transcoding|transcoded]]. Luckily, lossy transcoding AAC files is far [https://bernholdtech.blogspot.com/2013/03/Nine-different-audio-encoders-100-pass-recompression-test.html less destructive] than other lossy formats such as [[MP3]]s. However, it is still highly recommended to only apply fades to an AAC file that has been cut out of the main AAC file, which can then be merged back with the main AAC file once the fades have been applied. This will minimise the lossy transcoding and keep it to the fade-in and fade-out sections. &lt;br /&gt;
&lt;br /&gt;
====Use-case Scenario====&lt;br /&gt;
&lt;br /&gt;
*Complete all edits of your AAC file in [[MP3DirectCut]] and leave it in there. &lt;br /&gt;
**'''Fade-in''':&lt;br /&gt;
***Cut out the fade-in section: start of file for ''d'' seconds. For example: if you want the fade-in to be 5 seconds long, then cut out the first 5 seconds. It doesn't have to be exactly 5 seconds, but must not be less otherwise the sound might &amp;quot;jump up&amp;quot; when merged back into the main file.&lt;br /&gt;
****Process this ''to-be-faded-in.aac'' file using the fade-in script below.&lt;br /&gt;
*****Open the resulting ''faded-in.aac'' file using another MP3DirectCut instance, select all the audio, copy and paste into the start of the main/original AAC file that is still open in MP3DirectCut. Thus, you've now replaced the original starting audio with the new faded-in audio.&lt;br /&gt;
**'''Fade-out''':&lt;br /&gt;
***Cut out the fade-out section: end of file for ''d'' seconds. For example: if you want the fade-out to be 7 seconds long, then cut out the last 7 seconds. It doesn't have to be exactly 7 seconds, but is best to not be less otherwise the sound doesn't completely fade-out to nothing. &lt;br /&gt;
****Process this ''to-be-faded-out.aac'' file using the fade-out script below.&lt;br /&gt;
*****Open the resulting ''faded-out.aac'' file using another MP3DirectCut instance, select all the audio, copy and paste into the end of the main/original AAC file that is still open in MP3DirectCut. Thus, you've now replaced the original ending audio with the new faded-out audio.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Making these small cuts, processing the fades, then copying &amp;amp; pasting back in, is the best way to minimise negatively impacting the majority of the audio with lossy transcoding.&lt;br /&gt;
&lt;br /&gt;
To note: both scripts will output aac files with a 320kbps bitrate. This can be changed if necessary by altering the ''-b:a'' number.&lt;br /&gt;
&lt;br /&gt;
===AAC Fade-In===&lt;br /&gt;
&lt;br /&gt;
Copy and paste the below text into a text file and rename it '''aac-fade-in.cmd'''&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;:: Name:     aac-fade-in.cmd&lt;br /&gt;
:: Purpose:  Configures ffmpeg to amend the volume to a fade-in - **LOSSY**&lt;br /&gt;
:: Usage:    drag and drop aac file onto this script&lt;br /&gt;
:: Author:   jaybeee @ themixingbowl.org&lt;br /&gt;
:: Revision: Feb 2021 - v0.1&lt;br /&gt;
&lt;br /&gt;
@ECHO OFF&lt;br /&gt;
&lt;br /&gt;
SETLOCAL ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION&lt;br /&gt;
&lt;br /&gt;
:: variables begin with v&lt;br /&gt;
&lt;br /&gt;
:: set name of this script without file extension&lt;br /&gt;
SET vMe=%~n0&lt;br /&gt;
&lt;br /&gt;
:: set name of the parent directory where this script resides&lt;br /&gt;
SET vParent=%~dp0&lt;br /&gt;
&lt;br /&gt;
:: set ffmpeg path location if not already in WINDOWS PATH ** CHANGE ME **&lt;br /&gt;
::SET vffmpeg=&amp;quot;C:\PATH\TO\FFMPEG.EXE&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: Ask the user to enter the duration of the fade-in in seconds&lt;br /&gt;
echo ** Enter duration of fade-in in ss.mmm format when prompted **&lt;br /&gt;
SET /p vSss=&amp;quot;Fade-in duration (ss.mmm): &amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: call ffmpeg to fade in the first d seconds starting at ss&lt;br /&gt;
:: we then have to lossy transcode the audio&lt;br /&gt;
MKDIR aac&lt;br /&gt;
FOR %%f IN (%*) DO ffmpeg -i %%f -af afade=t=in:ss=0:d=%vSss% -b:a 320k &amp;quot;aac\fade-in-%%~nf.aac&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: Finish&lt;br /&gt;
ECHO Finished aac fade-in&lt;br /&gt;
&lt;br /&gt;
:: pause can be used to view the extraction details&lt;br /&gt;
PAUSE&lt;br /&gt;
&lt;br /&gt;
:END&lt;br /&gt;
ENDLOCAL&lt;br /&gt;
ECHO ON&lt;br /&gt;
@EXIT /B 0&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===AAC Fade-Out===&lt;br /&gt;
&lt;br /&gt;
Copy and paste the below text into a text file and rename it '''aac-fade-out.cmd'''&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;:: Name:     aac-fade-out.cmd&lt;br /&gt;
:: Purpose:  Configures ffmpeg to amend the volume to a fade-out - **LOSSY**&lt;br /&gt;
:: Usage:    drag and drop aac file onto this script&lt;br /&gt;
:: Author:   jaybeee @ themixingbowl.org&lt;br /&gt;
:: Revision: Feb 2021 - v0.1&lt;br /&gt;
&lt;br /&gt;
@ECHO OFF&lt;br /&gt;
&lt;br /&gt;
SETLOCAL ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION&lt;br /&gt;
&lt;br /&gt;
:: variables begin with v&lt;br /&gt;
&lt;br /&gt;
:: set name of this script without file extension&lt;br /&gt;
SET vMe=%~n0&lt;br /&gt;
&lt;br /&gt;
:: set name of the parent directory where this script resides&lt;br /&gt;
SET vParent=%~dp0&lt;br /&gt;
&lt;br /&gt;
:: set ffmpeg path location if not already in WINDOWS PATH ** CHANGE ME **&lt;br /&gt;
::SET vffmpeg=&amp;quot;C:\PATH\TO\FFMPEG.EXE&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: Ask the user to enter the duration of the fade-in in seconds&lt;br /&gt;
echo ** Enter duration of fade-in in ss.mmm format when prompted **&lt;br /&gt;
SET /p vEss=&amp;quot;Fade-out duration Time (ss.mmm): &amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: call ffmpeg to fade-out the first d seconds starting at ss&lt;br /&gt;
:: we then have to lossy transcode the audio&lt;br /&gt;
MKDIR aac&lt;br /&gt;
FOR %%f IN (%*) DO ffmpeg -i %%f -af afade=t=out:st=0:d=%vEss% -b:a 320k &amp;quot;aac\fade-out-%%~nf.aac&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: Finish&lt;br /&gt;
ECHO Finished aac fade-out&lt;br /&gt;
&lt;br /&gt;
:: pause can be used to view the extraction details&lt;br /&gt;
PAUSE&lt;br /&gt;
&lt;br /&gt;
:END&lt;br /&gt;
ENDLOCAL&lt;br /&gt;
ECHO ON&lt;br /&gt;
@EXIT /B 0&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Extract Opus from webm===&lt;br /&gt;
&lt;br /&gt;
Copy and paste the below text into a text file and rename it '''webm2opus.cmd'''&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;:: Name:     webm2opus.cmd&lt;br /&gt;
:: Purpose:  Configures ffmpeg to extract opus from webm&lt;br /&gt;
:: Author:   jaybeee @ themixingbowl.org&lt;br /&gt;
:: Revision: March 2022 - v0.2&lt;br /&gt;
&lt;br /&gt;
@ECHO OFF&lt;br /&gt;
&lt;br /&gt;
SETLOCAL ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION&lt;br /&gt;
&lt;br /&gt;
:: variables begin with v&lt;br /&gt;
&lt;br /&gt;
:: set name of this script without file extension&lt;br /&gt;
SET vMe=%~n0&lt;br /&gt;
&lt;br /&gt;
:: set name of the parent directory where this script resides&lt;br /&gt;
SET vParent=%~dp0&lt;br /&gt;
&lt;br /&gt;
:: set location of ffmpeg ** CHANGE ME **&lt;br /&gt;
::SET vffmpeg=&amp;quot;C:\PATH\TO\FFMPEG.exe&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: call ffmpeg to extract opus file(s) from webm file(s) that have been dropped onto it save in opus directory&lt;br /&gt;
MKDIR opus&lt;br /&gt;
FOR %%f IN (%*) DO ffmpeg -i %%f -vn -acodec copy &amp;quot;opus\%%~nf.opus&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: Finish&lt;br /&gt;
ECHO Finished opus extraction&lt;br /&gt;
&lt;br /&gt;
:: pause can be used to view the extraction details&lt;br /&gt;
PAUSE&lt;br /&gt;
&lt;br /&gt;
:END&lt;br /&gt;
ENDLOCAL&lt;br /&gt;
ECHO ON&lt;br /&gt;
@EXIT /B 0&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[category:Audio Tools]]&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=FFmpeg&amp;diff=4699</id>
		<title>FFmpeg</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=FFmpeg&amp;diff=4699"/>
		<updated>2022-04-10T10:12:50Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: added link to lossy codec re-encoding test&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''FFmpeg''' is the leading multimedia framework, able to decode, encode, transcode, mux, remux, demux, stream, filter and play pretty much anything that humans and machines have created. It supports the most obscure ancient formats up to the cutting edge. No matter if they were designed by some standards committee, the community or a corporation.&lt;br /&gt;
&lt;br /&gt;
*https://www.ffmpeg.org/&lt;br /&gt;
*https://ffmpeg.org/download.html&lt;br /&gt;
&lt;br /&gt;
==Audio Editing Scripts==&lt;br /&gt;
&lt;br /&gt;
The instructions and scripts have been written in and tested on the Windows operating system. &lt;br /&gt;
&lt;br /&gt;
===AAC Fades===&lt;br /&gt;
&lt;br /&gt;
Unfortunately, the [[AAC]] format cannot have fades applied to it in a [[Lossless|lossless]] way. Therefore, when applying a fade-in or a fade-out to AAC files the audio will be [[Lossy|lossy]] [[transcoding|transcoded]]. Luckily, lossy transcoding AAC files is far [https://bernholdtech.blogspot.com/2013/03/Nine-different-audio-encoders-100-pass-recompression-test.html less destructive] than other lossy formats such as [[MP3]]s. However, it is still highly recommended to only apply fades to an AAC file that has been cut out of the main AAC file, which can then be merged back with the main AAC file once the fades have been applied. This will minimise the lossy transcoding and keep it to the fade-in and fade-out sections. &lt;br /&gt;
&lt;br /&gt;
====Use-case Scenario====&lt;br /&gt;
&lt;br /&gt;
*Complete all edits of your AAC file in [[MP3DirectCut]] and leave it in there. &lt;br /&gt;
**'''Fade-in''':&lt;br /&gt;
***Cut out the fade-in section: start of file for ''d'' seconds. For example: if you want the fade-in to be 5 seconds long, then cut out the first 5 seconds. It doesn't have to be exactly 5 seconds, but must not be less otherwise the sound might &amp;quot;jump up&amp;quot; when merged back into the main file.&lt;br /&gt;
****Process this ''to-be-faded-in.aac'' file using the fade-in script below.&lt;br /&gt;
*****Open the resulting ''faded-in.aac'' file using another MP3DirectCut instance, select all the audio, copy and paste into the start of the main/original AAC file that is still open in MP3DirectCut. Thus, you've now replaced the original starting audio with the new faded-in audio.&lt;br /&gt;
**'''Fade-out''':&lt;br /&gt;
***Cut out the fade-out section: end of file for ''d'' seconds. For example: if you want the fade-out to be 7 seconds long, then cut out the last 7 seconds. It doesn't have to be exactly 7 seconds, but is best to not be less otherwise the sound doesn't completely fade-out to nothing. &lt;br /&gt;
****Process this ''to-be-faded-out.aac'' file using the fade-out script below.&lt;br /&gt;
*****Open the resulting ''faded-out.aac'' file using another MP3DirectCut instance, select all the audio, copy and paste into the end of the main/original AAC file that is still open in MP3DirectCut. Thus, you've now replaced the original ending audio with the new faded-out audio.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Making these small cuts, processing the fades, then copying &amp;amp; pasting back in, is the best way to minimise negatively impacting the majority of the audio with lossy transcoding.&lt;br /&gt;
&lt;br /&gt;
To note: both scripts will output aac files with a 320kbps bitrate. This can be changed if necessary by altering the ''-b:a'' number.&lt;br /&gt;
&lt;br /&gt;
===AAC Fade-In===&lt;br /&gt;
&lt;br /&gt;
Copy and paste the below text into a text file and rename it '''aac-fade-in.cmd'''&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;:: Name:     aac-fade-in.cmd&lt;br /&gt;
:: Purpose:  Configures ffmpeg to amend the volume to a fade-in - **LOSSY**&lt;br /&gt;
:: Usage:    drag and drop aac file onto this script&lt;br /&gt;
:: Author:   jaybeee @ themixingbowl.org&lt;br /&gt;
:: Revision: Feb 2021 - v0.1&lt;br /&gt;
&lt;br /&gt;
@ECHO OFF&lt;br /&gt;
&lt;br /&gt;
SETLOCAL ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION&lt;br /&gt;
&lt;br /&gt;
:: variables begin with v&lt;br /&gt;
&lt;br /&gt;
:: set name of this script without file extension&lt;br /&gt;
SET vMe=%~n0&lt;br /&gt;
&lt;br /&gt;
:: set name of the parent directory where this script resides&lt;br /&gt;
SET vParent=%~dp0&lt;br /&gt;
&lt;br /&gt;
:: set ffmpeg path location if not already in WINDOWS PATH ** CHANGE ME **&lt;br /&gt;
::SET vffmpeg=&amp;quot;C:\PATH\TO\FFMPEG.EXE&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: Ask the user to enter the duration of the fade-in in seconds&lt;br /&gt;
echo ** Enter duration of fade-in in ss.mmm format when prompted **&lt;br /&gt;
SET /p vSss=&amp;quot;Fade-in duration (ss.mmm): &amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: call ffmpeg to fade in the first d seconds starting at ss&lt;br /&gt;
:: we then have to lossy transcode the audio&lt;br /&gt;
MKDIR aac&lt;br /&gt;
FOR %%f IN (%*) DO ffmpeg -i %%f -af afade=t=in:ss=0:d=%vSss% -b:a 320k &amp;quot;aac\fade-in-%%~nf.aac&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: Finish&lt;br /&gt;
ECHO Finished aac fade-in&lt;br /&gt;
&lt;br /&gt;
:: pause can be used to view the extraction details&lt;br /&gt;
PAUSE&lt;br /&gt;
&lt;br /&gt;
:END&lt;br /&gt;
ENDLOCAL&lt;br /&gt;
ECHO ON&lt;br /&gt;
@EXIT /B 0&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===AAC Fade-Out===&lt;br /&gt;
&lt;br /&gt;
Copy and paste the below text into a text file and rename it '''aac-fade-out.cmd'''&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;:: Name:     aac-fade-out.cmd&lt;br /&gt;
:: Purpose:  Configures ffmpeg to amend the volume to a fade-out - **LOSSY**&lt;br /&gt;
:: Usage:    drag and drop aac file onto this script&lt;br /&gt;
:: Author:   jaybeee @ themixingbowl.org&lt;br /&gt;
:: Revision: Feb 2021 - v0.1&lt;br /&gt;
&lt;br /&gt;
@ECHO OFF&lt;br /&gt;
&lt;br /&gt;
SETLOCAL ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION&lt;br /&gt;
&lt;br /&gt;
:: variables begin with v&lt;br /&gt;
&lt;br /&gt;
:: set name of this script without file extension&lt;br /&gt;
SET vMe=%~n0&lt;br /&gt;
&lt;br /&gt;
:: set name of the parent directory where this script resides&lt;br /&gt;
SET vParent=%~dp0&lt;br /&gt;
&lt;br /&gt;
:: set ffmpeg path location if not already in WINDOWS PATH ** CHANGE ME **&lt;br /&gt;
::SET vffmpeg=&amp;quot;C:\PATH\TO\FFMPEG.EXE&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: Ask the user to enter the duration of the fade-in in seconds&lt;br /&gt;
echo ** Enter duration of fade-in in ss.mmm format when prompted **&lt;br /&gt;
SET /p vEss=&amp;quot;Fade-out duration Time (ss.mmm): &amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: call ffmpeg to fade-out the first d seconds starting at ss&lt;br /&gt;
:: we then have to lossy transcode the audio&lt;br /&gt;
MKDIR aac&lt;br /&gt;
FOR %%f IN (%*) DO ffmpeg -i %%f -af afade=t=out:st=0:d=%vEss% -b:a 320k &amp;quot;aac\fade-out-%%~nf.aac&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:: Finish&lt;br /&gt;
ECHO Finished aac fade-out&lt;br /&gt;
&lt;br /&gt;
:: pause can be used to view the extraction details&lt;br /&gt;
PAUSE&lt;br /&gt;
&lt;br /&gt;
:END&lt;br /&gt;
ENDLOCAL&lt;br /&gt;
ECHO ON&lt;br /&gt;
@EXIT /B 0&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[category:Audio Tools]]&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=Digitising_cassette_tapes&amp;diff=4698</id>
		<title>Digitising cassette tapes</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=Digitising_cassette_tapes&amp;diff=4698"/>
		<updated>2021-12-18T14:45:14Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==What You Need==&lt;br /&gt;
&lt;br /&gt;
#A Hi-Fi separates [https://jaybeee.themixingbowl.org/images/technics_rs-bx501.jpg cassette tape deck] (a portable cassette player walkman will work, but with reduced audio quality)&lt;br /&gt;
# [https://jaybeee.themixingbowl.org/images/leads.jpg 3.5mm stereo to two phono plugs cable lead]: approx £5 in the UK (if you have a really good soundcard it will have two phono line-in sockets: so just get a standard interconnect cable)&lt;br /&gt;
#A soundcard that accepts line-in: most motherboards these days have this on board&lt;br /&gt;
#* Or maybe use a [[DAP]] like the iriver H1xx series that has [[Rockbox]] installed ¦-)&lt;br /&gt;
#To clean the tape heads and other parts use pure denatured alcohol (recommended) / isopropyl alcohol / good quality rubbing alcohol / surgical spirit or possibly a [https://jaybeee.themixingbowl.org/images/tdk_cleaner.jpg A cassette tape cleaner] and lint-free swabs / cotton wool buds / q-tips.  This will help to capture a better sound since the cassette tapes will likely be old and dirty.&lt;br /&gt;
#* For more information and help check out this [http://www.instructables.com/id/How-To-Clean-a-Cassette-Recorder/ Instructables | How To Clean a Cassette Recorder guide]&lt;br /&gt;
#A precision Philips demagnetised screwdriver to adjust the azimuth.  &lt;br /&gt;
#An audio capturing/editing software application.  I personally use [[Audacity]] as it's very easy to use, is free and open source, and has many plug-ins available (LADSPA / Nyquist / VST Plug-Ins).  There are other apps that will do the same job&lt;br /&gt;
#A [[lossless]] audio encoder like [[FLAC]] or [[WavPack]]: this is so that once you've got the audio in the state you're happy with, you can encode it to a lossless format for archival purposes.  You can then transcode it to [[lossy]] formats like MP3 etc for sharing&lt;br /&gt;
#A [[lossy]] audio encoder like [[LAME]] for [[MP3]]&lt;br /&gt;
&lt;br /&gt;
==What To Do== &lt;br /&gt;
===Capturing/Recording===&lt;br /&gt;
#Check the pinch rollers are ok. I had to replace mine in 2015 as the rubber had started to degrade after 20 years and this meant it was &amp;quot;chewing&amp;quot; up tapes!&lt;br /&gt;
#Fast forward and rewind the cassette tape before playing it. This will tighten up the tape inside and help prevent it being 'chewed-up' by the tape deck. &lt;br /&gt;
#Connect the left &amp;amp; right plugs of the [https://jaybeee.themixingbowl.org/images/leads.jpg 3.5mm stereo to two phono plugs cable lead] to the [https://jaybeee.themixingbowl.org/images/technics_rs-bx501.jpg cassette tape deck] and the single 3.5mm stereo plug to the line-in on the soundcard.&lt;br /&gt;
#Ensure the sound recording capabilities on your computer are enabled: (for windows) Control Panel &amp;gt; Hardware and Sound &amp;gt; Sound &amp;gt; Manage audio devices &amp;gt; Audio tab &amp;gt; Recording &amp;gt; Line In - Properties &amp;gt; Device usage: enable.&lt;br /&gt;
#Sample rate should be set to 44100Hz.  Sample format should be set to 16-bit.  Given the relative low quality of the analogue audio in the cassette tape, you'll be very unlikely to notice any improvement in sound quality with higher settings; CD is 44100Hz!  &lt;br /&gt;
#*The only time I'd recommend higher settings, such as 48000Hz/96000Hz and 24-bit, is when you have a very good soundcard and a good quality recorded tape and / or you will be doing lots of manipulating of the recording. Each transform, such as Noise Reduction, will produce quantization errors. Ideally the editing program dithers the transform (if working in 16-bit), which means more noise added. However, due to the high intrinsic noise of recordings from cassettes, this is unlikely to be distinguishable for the 'normal' amount of editing (see 9. &amp;amp; 10. below)&lt;br /&gt;
#Play the tape and '''adjust the azimuth''' screw using the precision Philips head screwdriver. [https://themixingbowl.org/post/view/749482 See here] for more information on what the azimuth is and how to adjust it. Very basically, there's a small screw on the left of the play head if the heads are on the bottom going up as you push play. If the play head is on the Top (going down as you push play) then the screw you want to turn is on the right. &lt;br /&gt;
#*Using small and slow turns of the screw in both directions, try to find out where the screw adjustment results in the clearest sound. &lt;br /&gt;
#**It's often best to find some audio with signing and lots of treble to really help identify the best position the screw needs to be in. Even a section with hiss can help as the clearer the hiss the better.&lt;br /&gt;
#*Make sure you adjust the azimuth on both sides of the tape before recording.&lt;br /&gt;
#*Only play tapes in one direction and '''do not''' use auto-reverse. This causes the head to change direction to allow playback in reverse, BUT it will slightly put it out of alignment and the resulting audio quality will be reduced. Solve this by adjusting the azimuth if the cassette tape was recorded using the auto-reverse functionality originally (see above).&lt;br /&gt;
#:'''The azimuth adjustment is vitally important. The sound quality gained from this simple and often minor adjustment is huge.'''&lt;br /&gt;
#Play the tape again and start recording: '''this is a test!''' because you'll need to fast forward to random parts of the tape to try and find the loudest section: use that as your basis to adjust the line in recording volume so that there is no clipping.  Ideally, you want to capture the audio at -5db.  In [[Audacity]] you can view the sound wave in db format, so that will show you what db level you are recording at.  It's always better to record at a slightly lower volume and then increase it after you've captured the audio.  And don't get worried about it looking like it's at a low volume; it will be fine.&lt;br /&gt;
#After you've sorted the line-in recording volume level, you can start to record the audio.&lt;br /&gt;
#Once the recording process has finished, you might want to go through the audio to edit out any parts that you do not require.  Namely the silence at the start and the end of the tape.  If suitable, you can fade in and fade out now whilst you have the audio in this 'raw' format.&lt;br /&gt;
#You might also like to remove any 'hiss' or reduce certain noises (tape hum).  [[Audacity]] has a 'Noise Removal' tool that is quite good.  Be warned though: it will often result in a slight loss of high-end audio that might make it sound worse than the original.  I don't normally perform this action unless there is a lot of hiss.  [[Adobe Audition]] has a very good Noise Removal tool, but the program is also quite expensive.&lt;br /&gt;
#Once you've completed manipulating the audio, you could process the file with [[WaveGain]].  This is based upon the [[Replaygain]] standard and will effectively apply gain (volume) adjustments directly by adjusting the scaling of the samples.  Unlike [[Replaygain]], this is not a lossless process and cannot be reversed.  It means the files are adjusted to -89db, which often results in a smaller file size too, as most people tend to record at too high a level.  If all music was the same relative volume, we'd never need to change the volume control on our equipment if we always wanted the same absolute volume. &lt;br /&gt;
#*If you have recorded the audio close to -89dB (i.e. the volume of the audio is not too far away from this level), then it may be better leaving it and not running [[WaveGain]] on it, instead using [[Replaygain]] on the final lossless files.&lt;br /&gt;
&lt;br /&gt;
===Encoding===&lt;br /&gt;
#Given the effort and time taken to capture and manipulate the audio, I'd highly recommend that the final file is encoded to a [[lossless]] format such as [[FLAC]] or [[WavPack]].  This means you are left with a perfect archival backup of the audio captured: it's smaller in file size than a wav file, and you are free to convert ([[transcode]]) to any of the [[lossy]] [[:Category:Audio Formats|Audio Formats]] you like whenever you like, such as [[AAC]], [[Opus]], [[MP3]] or [[Ogg Vorbis]] etc etc.&lt;br /&gt;
#For uploading at themixingbowl.org I'd recommend the file is encoded to [[MP3]] using the [[LAME]] encoder or to [[M4A]] ([[AAC]]).&lt;br /&gt;
#And don't forget to tag the file.  If you can add as much relevant info into the tags and in a logical way, then the downloaders will not need to change the [[tagging]] and thus can keep seeding for longer (ever!)&lt;br /&gt;
&lt;br /&gt;
==A Final Word==&lt;br /&gt;
If you really value your cassette tapes recordings then purchasing a high-end audio editor may yield better results than free audio applications.  You can also [https://duckduckgo.com/ search] the internet for perhaps a better, and maybe more detailed, technical information about cassette tape audio capturing.  This is just how [http://wiki.themixingbowl.org/User:Jaybeee jaybeee] does it with pleasing results from fairly cheap equipment and free software.&lt;br /&gt;
&lt;br /&gt;
[[Category:Uploading Own Recordings]]&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=MP3packer&amp;diff=4674</id>
		<title>MP3packer</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=MP3packer&amp;diff=4674"/>
		<updated>2021-10-23T17:05:41Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=MP3packer=&lt;br /&gt;
'''MP3packer''' (written by Omion over at [http://www.hydrogenaudio.org/ HydrogenAudio.org]) attempts to save space by storing frame data in the smallest possible frame. Usually [[MP3]]s are already stored in the most efficient way possible. However, for high-bitrate [[CBR]] files, e.g. 320kbps (created via [[LAME]] '-b 320' aka '--preset insane' for example) there can be a lot of wasted space. So, the original idea of MP3packer was created to reduce the size of high bitrate [[CBR]] files, turning them into [[VBR]] files. However, MP3packer can also turn [[VBR]] files into [[CBR]].&lt;br /&gt;
&lt;br /&gt;
==Download==&lt;br /&gt;
Download the latest version from:&lt;br /&gt;
* http://www.hydrogenaudio.org/forums/index.php?showtopic=32379&amp;amp;hl=mp3repacker&lt;br /&gt;
&lt;br /&gt;
==Features==&lt;br /&gt;
* Usually makes 320kbps files 2-10% smaller LOSSLESSLY&lt;br /&gt;
* Corrects errors of the [[MP3]] bitstream (sync errors / buffer errors)&lt;br /&gt;
* Squeezes out all the padding it can from any [[MP3]] (Will not produce a larger file, unless you use the '-b' switch)&lt;br /&gt;
* Writes valid [[LAME]]/Xing header for proper [[VBR]] seeking and gapless playback&lt;br /&gt;
* Provides the ability to losslessly turn VBR files into larger CBR files to humor players which can't handle VBR &lt;br /&gt;
* Strip headers from the start and/or end of the files&lt;br /&gt;
* GPL, so anybody can tweak it as long as it stays GPL&lt;br /&gt;
* Works on [[MP2]] files also&lt;br /&gt;
* Includes a brute-force compression optimization option to further compress files&lt;br /&gt;
* Supports Unicode file names and paths&lt;br /&gt;
* Supports encoding an entire directory of files&lt;br /&gt;
* Multi-core support&lt;br /&gt;
* 64-bit support (precompiled Windows executable builds for 32 and 64 bit available) &lt;br /&gt;
&lt;br /&gt;
==A few caveats==&lt;br /&gt;
* It's only been tested it on Win32. It ''should'' work just fine on any UNIXish OS with an OCaml port.&lt;br /&gt;
* The program will always output an [[MP3]] that doesn't use CRCs (Cyclical Redundancy Checking), even if the input file uses CRC. This is primarily laziness on the author's part, but nobody really needs them, and it saves 600 bits per second.&lt;br /&gt;
* Reduction in size, as mentioned in the [http://wiki.themixingbowl.org/MP3packer#Features MP3packer features] can be very small: do not expect miracles&lt;br /&gt;
* There is a limitation in that it cannot repack Freeformat MP3s&lt;br /&gt;
&lt;br /&gt;
==MP3packer Optimization Solutions==&lt;br /&gt;
&lt;br /&gt;
* [[MP3optimized]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=WinMP3Packer=&lt;br /&gt;
'''WinMP3Packer''' is a frontend for the [[MP3packer]] program written by Chris Close (psyllium) also over at [http://www.hydrogenaudio.org/ HydrogenAudio.org]. You'll need the .NET Framework (2.0) installed to use this GUI.&lt;br /&gt;
&lt;br /&gt;
==Download==&lt;br /&gt;
Download the latest version from:&lt;br /&gt;
* [https://jaybeee.themixingbowl.org/winmp3packer/WinMP3Packer-1.0.18-alpha-2.04.7z WinMP3Packer-1.0.18-alpha-2.04.7z] &amp;lt;small&amp;gt;(packaged with mp3packer v2.04)&amp;lt;/small&amp;gt;&lt;br /&gt;
* [https://jaybeee.themixingbowl.org/winmp3packer/WinMP3Packer-1.0.18-alpha.zip WinMP3Packer-1.0.18-alpha.zip] &amp;lt;small&amp;gt;(packaged with mp3packer v1.20)&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Features==&lt;br /&gt;
* see [http://wiki.themixingbowl.org/MP3packer#Features MP3packer features]&lt;br /&gt;
* Allows for batch processing: multiple files and folders may be selected&lt;br /&gt;
* Allows for processing whole folders. Will also recurse into the sub-folders and process the files in there&lt;br /&gt;
* When processing whole folders, the option 'Recreate sub-folders' will put the output files into the same sort of directory structure as the input files&lt;br /&gt;
* Easy update to the latest version of MP3packer by simply overwriting the ''mp3packer.exe'' in the ''WinMP3Packer'' folder with the latest ''mp3packer.exe'' version &lt;br /&gt;
&lt;br /&gt;
[[Image:WinMP3Packer-screenshot.png]]&lt;br /&gt;
&lt;br /&gt;
[[category:Audio Tools]]&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=One_In_The_Jungle&amp;diff=4673</id>
		<title>One In The Jungle</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=One_In_The_Jungle&amp;diff=4673"/>
		<updated>2021-10-20T17:58:27Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox Radio Show|name=One In The Jungle&lt;br /&gt;
|genre=Jungle, Drum &amp;amp; Bass&lt;br /&gt;
|host=MC Navigator + others&lt;br /&gt;
|time=1995-1998&lt;br /&gt;
|station=BBC Radio 1&lt;br /&gt;
|country=UK&lt;br /&gt;
|url=''too old skool for a website''}}&lt;br /&gt;
&lt;br /&gt;
[[IMAGE:One-in-the-jungle.jpg]]&lt;br /&gt;
&lt;br /&gt;
This was Radio 1's Friday night showcase which gave Jungle a platform on the station for the first time. It put DJ's and producers into  the limelight and broke down barriers which had been keeping the music underground for so long.&lt;br /&gt;
&lt;br /&gt;
The studio shows were pre-recorded and played out as live in the original Kool Fm style. The featured artists would choose the MC they wanted to front their mix.&lt;br /&gt;
&lt;br /&gt;
It began with an hour long pilot show from the week before the first show which went through the history of jungle and interviewed artists such as 'A Guy Called Gerald' and Roni Size.&lt;br /&gt;
&lt;br /&gt;
The first series was broadcast at 10pm on a Friday. The complete listing of these broadcasts remain a mystery although we are nearly there.&lt;br /&gt;
&lt;br /&gt;
==Tracklistings (Partial)==&lt;br /&gt;
&lt;br /&gt;
[http://jaybeee.themixingbowl.org/audio/one-in-the-jungle-tl.rtf Partial [[One In The Jungle]] Show Tracklistings]&lt;br /&gt;
&lt;br /&gt;
edit: Don't know how to edit that file, but more tracklistings can be found here: http://rolldabeats.com/forum/index.php?showtopic=46521&lt;br /&gt;
&lt;br /&gt;
==1995==&lt;br /&gt;
&lt;br /&gt;
For the first series, guests:&lt;br /&gt;
&lt;br /&gt;
1995-07-13 - Now That's What I Call Jungle - MC Navigator hosts a pre-recorded show featuring various people from the jungle scene talking about the scene, the history and their experiences. [https://soundcloud.com/keep_it_locked_tapes/mc-navigator-pilot-show-radio-1-one-in-the-jungle-988fm-13-07-95 soundcloud]&amp;lt;br&amp;gt;&lt;br /&gt;
1995-07-20 - Goldie [MC GQ] &amp;lt;br&amp;gt;&lt;br /&gt;
1995-07-27 - DJ Rap [MC Moose]  &amp;lt;br&amp;gt;&lt;br /&gt;
1995-08-03 - Roni Size [MC Dynamite]  &amp;lt;br&amp;gt;&lt;br /&gt;
1995-08-10 - Kenny Ken [MC GQ] &amp;lt;br&amp;gt;&lt;br /&gt;
1995-08-17 - Shy FX &amp;amp; DJ Ash [MC Dett] &amp;lt;br&amp;gt;&lt;br /&gt;
1995-08-24 - A Guy Called Gerald [MC Navigator]  &amp;lt;br&amp;gt;&lt;br /&gt;
1995-08-31 - Brockie [MC Dett] &amp;lt;br&amp;gt;&lt;br /&gt;
1995-12-27 - Best of One in the Jungle [MC Dett] (excerpts from above shows) &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==1996==&lt;br /&gt;
&lt;br /&gt;
For the second series, guests:&lt;br /&gt;
&lt;br /&gt;
1996-04-19 - Mowgli, Peshay &amp;amp; LTJ Bukem [MC Ash &amp;amp; Conrad] ''Dope @ Cafe Mex in Leeds'' &amp;lt;br&amp;gt;&lt;br /&gt;
1996-04-26 - DJ SS &amp;lt;br&amp;gt;&lt;br /&gt;
1996-05-03 - DJ Krust &amp;lt;br&amp;gt;&lt;br /&gt;
1996-05-10 - Dr S Gachet [MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-05-17 - A Guy Called Gerald &amp;lt;br&amp;gt;&lt;br /&gt;
1996-05-24 - Andy C &amp;lt;br&amp;gt;&lt;br /&gt;
1996-05-31 - Darren Jay [MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-06-07 - Roni Size [MC Dynamite &amp;amp; MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-06-14 - L Double [MC GQ &amp;amp; Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-06-21 - Mickey Finn [MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-06-28 - Kemistry &amp;amp; storm [MC Flux &amp;amp; MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-07-05 - Nicky Blackmarket [MC Stevie Hyper D] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-07-12 - DJ Rap [MC Dett] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-07-19 - Alex Reece [MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-07-26 - DJ SS [MC Warren G &amp;amp; MC Fearless]&amp;lt;br&amp;gt;&lt;br /&gt;
1996-08-02 - Mampi Swift [MC Navigator]&amp;lt;br&amp;gt;&lt;br /&gt;
1996-08-09 - Rob Playford &amp;amp; Rob Hague aka Omni Trio [MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-08-16 - Swan E [MC Moose] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-08-23 - Brockie [MC Dett]&amp;lt;br&amp;gt;&lt;br /&gt;
1996-08-26 - Alex Reece &amp;amp; A Guy Called Gerald ''Carnival Special'' [MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-08-30 - Kenny Ken [MC GQ] ''Live at Tribal Gathering'' &amp;lt;br&amp;gt;&lt;br /&gt;
1996-09-06 - DJ Dazee [MC Jakes] ''Recorded Live at Tribal Gathering'' &amp;lt;br&amp;gt;&lt;br /&gt;
1996-09-13 - Mampi Swift [MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-09-27 - Ellis Dee [MC Dett]&amp;lt;br&amp;gt;&lt;br /&gt;
1996-10-04 - Spring Heel Jack [MC Navigator]&amp;lt;br&amp;gt;&lt;br /&gt;
1996-10-11 - 4 Hero [MC Navigator]&amp;lt;br&amp;gt;&lt;br /&gt;
1996-10-18 - Shy FX [MC Navigator]&amp;lt;br&amp;gt;&lt;br /&gt;
1996-10-25 - DJ Die [MC Dynamite] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-11-01 - DJ Krust [MC Dynamite &amp;amp; MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-11-08 - L Double [MC Navigator]&amp;lt;br&amp;gt;&lt;br /&gt;
1996-11-15 - Zinc, Hype &amp;amp; Ron [MC Navigator &amp;amp; MC GQ] ''Perousia Records Night'' &amp;lt;br&amp;gt;&lt;br /&gt;
1996-11-22 - DJ Dazee [MC Jakes] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-11-29 - Nicky Black Market [MC Stevie Hyper D] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-12-06 - Dr S Gachet B2B Jack Smooth [MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-12-13 - Brockie B2B Mampi Swift [MC Dett] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-12-20 - DJ SS B2B Mental [MC Warren G &amp;amp; Power] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-12-27 - Jungle Blitz '96 &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==1997==&lt;br /&gt;
&lt;br /&gt;
For the third series, guests:&lt;br /&gt;
&lt;br /&gt;
1997-01-03 - Donovan Badboy Smith [MC Juiceman &amp;amp; MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-01-10 - DJ Kid [MC Dett] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-01-18 - Brian G &amp;lt;br&amp;gt;&lt;br /&gt;
1997-01-24 - DJ Kane [MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-01-31 - Mickey Finn [MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-02-07 - Ed Rush B2B Trace [MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-02-14 - Dom and Roland [MC 5ive-0] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-02-21 - Kemistry &amp;amp; Storm [MC 5ive-0] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-02-28 - Andy C [MC 5ive-0] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-03-07 - Aphrodite [MC 5ive-0] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-03-14 - A Guy Called Gerald [MC Normski &amp;amp; Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-03-21 - Alex Reece [MC Navigator] ''Listen Without Prejudice week'' &amp;lt;br&amp;gt;&lt;br /&gt;
1997-03-28 - Future Loop Foundation &amp;lt;br&amp;gt;&lt;br /&gt;
1997-04-04 - Darren Jay [MC Fearless] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-04-11 - DJ Pulse [MC Fearless] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-04-18 - DJ Zinc [MC Dett] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-04-25 - Roni Size B2B Krust [MC Dynamite] ''Full Cycle Live at The End'' &amp;lt;br&amp;gt;&lt;br /&gt;
1997-05-02 - Blame [MC Dett] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-05-09 - Bryan Gee [MC Moose] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-05-16 - Ray Keith [MC Moose &amp;amp; MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-05-23 - Randall &amp;amp; Doc Scott ''Live At Sankey's Soap &amp;quot;Guidance&amp;quot;'' &amp;lt;br&amp;gt;&lt;br /&gt;
1997-05-30 - Nicky Blackmarket [MC Stevie Hyper D] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-06-06 - Mampi Swift [MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-06-13 - DJ Force (Japan) [MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-06-20 - L Double [MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-06-27 - DJ Kane [MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-07-04 - Project 23 &amp;lt;br&amp;gt;&lt;br /&gt;
1997-07-11 - Tayla [MC Fearless] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-07-18 - DJ SS [MC Fearless] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-07-25 - Peshay [MC fearless] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-08-01 - Roni Size &amp;lt;br&amp;gt;&lt;br /&gt;
1997-08-08 - Slipmatt [MC Dett] (old Skool) &amp;lt;br&amp;gt;&lt;br /&gt;
1997-08-15 - ''no show due to [https://genome.ch.bbc.co.uk/30a43a194c59478da86d9bf3eb9fa332 India Five-0]'' &amp;lt;br&amp;gt;&lt;br /&gt;
1997-08-22 - Brockie [MC Dett] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-08-29 - Special K [MC Dett] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-09-05 - ?? ''Unknown'' &amp;lt;br&amp;gt;&lt;br /&gt;
1997-09-12 - Swan E [MC Moose] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-09-19 - DJ Krome [MC Moose] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-09-26 - Ascend (AKA Dead Dread) &amp;lt;br&amp;gt;&lt;br /&gt;
1997-10-03 - G Mac, DJ Kid &amp;amp; DJ SS [MC Navigator] Live at Manga in Edinburgh &amp;lt;br&amp;gt;&lt;br /&gt;
1997-10-10 - Mark Substance/Dazee/Kenny Ken [MC Jakes] Ruffneck Ting in Bristol &amp;lt;br&amp;gt;&lt;br /&gt;
1997-10-18 - Danny Breaks &amp;amp; Randall ''Live at Spider Club in Newcastle'' - '''note the move of program to 2am Saturday'''&amp;lt;br&amp;gt;&lt;br /&gt;
1997-10-25 - Skinny, Quantum &amp;amp; Hype Live at steppaz Convention &amp;lt;br&amp;gt;&lt;br /&gt;
1997-11-01 - DJ Lee &amp;amp; Doc Scott [MC Manik D &amp;amp; Justyce] ''Sound City 97: Live at Source, Zodiac Club in Oxford'' &amp;lt;br&amp;gt;&lt;br /&gt;
1997-11-08 - Dr S Gachet B2B Flynn &amp;amp; Flora &amp;lt;br&amp;gt;&lt;br /&gt;
1997-11-15 - Nicky Blackmarket &amp;amp; Footloose &amp;lt;br&amp;gt;&lt;br /&gt;
1997-11-22 - Jonny L &amp;amp; DJ Red &amp;lt;br&amp;gt;&lt;br /&gt;
1997-11-29 - Subject 13 / L Double &amp;lt;br&amp;gt;&lt;br /&gt;
1997-12-06 - Future Forces &amp;lt;br&amp;gt;&lt;br /&gt;
1997-12-13 - Bryan Gee &amp;lt;br&amp;gt;&lt;br /&gt;
1997-12-20 - Mampi Swift &amp;lt;br&amp;gt;&lt;br /&gt;
1997-12-27 - End Of Year Special &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==1998==&lt;br /&gt;
&lt;br /&gt;
For the fourth series, guests:&amp;lt;br&amp;gt;&lt;br /&gt;
1998-01-03 - ?? ''Unknown'' possibly Nicky Blackmarket&amp;lt;br&amp;gt;&lt;br /&gt;
1998-01-10 - ?? ''Unknown'' possibly Nicky Blackmarket&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
''1998-01-17 - 1st Fabio &amp;amp; Grooverider show according to [https://genome.ch.bbc.co.uk/f44e83f9e54c4d7bb3909fa46cad0c07 BBC Genome]''&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=One_In_The_Jungle&amp;diff=4672</id>
		<title>One In The Jungle</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=One_In_The_Jungle&amp;diff=4672"/>
		<updated>2021-10-20T17:51:20Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: updates and corrections along with date changes in late 1997 when time moved to 2am Saturday&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox Radio Show|name=One In The Jungle&lt;br /&gt;
|genre=Jungle, Drum &amp;amp; Bass&lt;br /&gt;
|host=MC Navigator + others&lt;br /&gt;
|time=1995-1998&lt;br /&gt;
|station=BBC Radio 1&lt;br /&gt;
|country=UK&lt;br /&gt;
|url=''too old skool for a website''}}&lt;br /&gt;
&lt;br /&gt;
[[IMAGE:One-in-the-jungle.jpg]]&lt;br /&gt;
&lt;br /&gt;
This was Radio 1's Friday night showcase which gave Jungle a platform on the station for the first time. It put DJ's and producers into  the limelight and broke down barriers which had been keeping the music underground for so long.&lt;br /&gt;
&lt;br /&gt;
The studio shows were pre-recorded and played out as live in the original Kool Fm style. The featured artists would choose the MC they wanted to front their mix.&lt;br /&gt;
&lt;br /&gt;
It began with an hour long pilot show from the week before the first show which went through the history of jungle and interviewed artists such as 'A Guy Called Gerald' and Roni Size.&lt;br /&gt;
&lt;br /&gt;
The first series was broadcast at 10pm on a Friday. The complete listing of these broadcasts remain a mystery although we are nearly there.&lt;br /&gt;
&lt;br /&gt;
==Tracklistings (Partial)==&lt;br /&gt;
&lt;br /&gt;
[http://jaybeee.themixingbowl.org/audio/one-in-the-jungle-tl.rtf Partial [[One In The Jungle]] Show Tracklistings]&lt;br /&gt;
&lt;br /&gt;
edit: Don't know how to edit that file, but more tracklistings can be found here: http://rolldabeats.com/forum/index.php?showtopic=46521&lt;br /&gt;
&lt;br /&gt;
==1995==&lt;br /&gt;
&lt;br /&gt;
For the first series, guests:&lt;br /&gt;
&lt;br /&gt;
1995-07-13 - Now That's What I Call Jungle - MC Navigator hosts a pre-recorded show featuring various people from the jungle scene talking about the scene, the history and their experiences. [https://soundcloud.com/keep_it_locked_tapes/mc-navigator-pilot-show-radio-1-one-in-the-jungle-988fm-13-07-95 soundcloud]&amp;lt;br&amp;gt;&lt;br /&gt;
1995-07-20 - Goldie [MC GQ] &amp;lt;br&amp;gt;&lt;br /&gt;
1995-07-27 - DJ Rap [MC Moose]  &amp;lt;br&amp;gt;&lt;br /&gt;
1995-08-03 - Roni Size [MC Dynamite]  &amp;lt;br&amp;gt;&lt;br /&gt;
1995-08-10 - Kenny Ken [MC GQ] &amp;lt;br&amp;gt;&lt;br /&gt;
1995-08-17 - Shy FX &amp;amp; DJ Ash [MC Dett] &amp;lt;br&amp;gt;&lt;br /&gt;
1995-08-24 - A Guy Called Gerald [MC Navigator]  &amp;lt;br&amp;gt;&lt;br /&gt;
1995-08-31 - Brockie [MC Dett] &amp;lt;br&amp;gt;&lt;br /&gt;
1995-12-27 - Best of One in the Jungle [MC Dett] (excerpts from above shows) &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==1996==&lt;br /&gt;
&lt;br /&gt;
For the second series, guests:&lt;br /&gt;
&lt;br /&gt;
1996-04-19 - Mowgli, Peshay &amp;amp; LTJ Bukem [MC Ash &amp;amp; Conrad] ''Dope @ Cafe Mex in Leeds'' &amp;lt;br&amp;gt;&lt;br /&gt;
1996-04-26 - DJ SS &amp;lt;br&amp;gt;&lt;br /&gt;
1996-05-03 - DJ Krust &amp;lt;br&amp;gt;&lt;br /&gt;
1996-05-10 - Dr S Gachet [MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-05-17 - A Guy Called Gerald &amp;lt;br&amp;gt;&lt;br /&gt;
1996-05-24 - Andy C &amp;lt;br&amp;gt;&lt;br /&gt;
1996-05-31 - Darren Jay [MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-06-07 - Roni Size [MC Dynamite &amp;amp; MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-06-14 - L Double [MC GQ &amp;amp; Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-06-21 - Mickey Finn [MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-06-28 - Kemistry &amp;amp; storm [MC Flux &amp;amp; MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-07-05 - Nicky Blackmarket [MC Stevie Hyper D] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-07-12 - DJ Rap [MC Dett] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-07-19 - Alex Reece [MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-07-26 - DJ SS [MC Warren G &amp;amp; MC Fearless]&amp;lt;br&amp;gt;&lt;br /&gt;
1996-08-02 - Mampi Swift [MC Navigator]&amp;lt;br&amp;gt;&lt;br /&gt;
1996-08-09 - Rob Playford &amp;amp; Rob Hague aka Omni Trio [MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-08-16 - Swan E [MC Moose] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-08-23 - Brockie [MC Dett]&amp;lt;br&amp;gt;&lt;br /&gt;
1996-08-26 - Alex Reece &amp;amp; A Guy Called Gerald ''Carnival Special'' [MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-08-30 - Kenny Ken [MC GQ] ''Live at Tribal Gathering'' &amp;lt;br&amp;gt;&lt;br /&gt;
1996-09-06 - DJ Dazee [MC Jakes] ''Recorded Live at Tribal Gathering'' &amp;lt;br&amp;gt;&lt;br /&gt;
1996-09-13 - Mampi Swift [MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-09-27 - Ellis Dee [MC Dett]&amp;lt;br&amp;gt;&lt;br /&gt;
1996-10-04 - Spring Heel Jack [MC Navigator]&amp;lt;br&amp;gt;&lt;br /&gt;
1996-10-11 - 4 Hero [MC Navigator]&amp;lt;br&amp;gt;&lt;br /&gt;
1996-10-18 - Shy FX [MC Navigator]&amp;lt;br&amp;gt;&lt;br /&gt;
1996-10-25 - DJ Die [MC Dynamite] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-11-01 - DJ Krust [MC Dynamite &amp;amp; MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-11-08 - L Double [MC Navigator]&amp;lt;br&amp;gt;&lt;br /&gt;
1996-11-15 - Zinc, Hype &amp;amp; Ron [MC Navigator &amp;amp; MC GQ] ''Perousia Records Night'' &amp;lt;br&amp;gt;&lt;br /&gt;
1996-11-22 - DJ Dazee [MC Jakes] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-11-29 - Nicky Black Market [MC Stevie Hyper D] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-12-06 - Dr S Gachet B2B Jack Smooth [MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-12-13 - Brockie B2B Mampi Swift [MC Dett] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-12-20 - DJ SS B2B Mental [MC Warren G &amp;amp; Power] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-12-27 - Jungle Blitz '96 &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==1997==&lt;br /&gt;
&lt;br /&gt;
For the third series, guests:&lt;br /&gt;
&lt;br /&gt;
1997-01-03 - Donovan Badboy Smith [MC Juiceman &amp;amp; MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-01-10 - DJ Kid [MC Dett] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-01-18 - Brian G &amp;lt;br&amp;gt;&lt;br /&gt;
1997-01-24 - DJ Kane [MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-01-31 - Mickey Finn [MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-02-07 - Ed Rush B2B Trace [MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-02-14 - Dom and Roland [MC 5ive-0] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-02-21 - Kemistry &amp;amp; Storm [MC 5ive-0] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-02-28 - Andy C [MC 5ive-0] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-03-07 - Aphrodite [MC 5ive-0] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-03-14 - A Guy Called Gerald [MC Normski &amp;amp; Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-03-21 - Alex Reece [MC Navigator] ''Listen Without Prejudice week'' &amp;lt;br&amp;gt;&lt;br /&gt;
1997-03-28 - Future Loop Foundation &amp;lt;br&amp;gt;&lt;br /&gt;
1997-04-04 - Darren Jay [MC Fearless] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-04-11 - DJ Pulse [MC Fearless] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-04-18 - DJ Zinc [MC Dett] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-04-25 - Roni Size B2B Krust [MC Dynamite] ''Full Cycle Live at The End'' &amp;lt;br&amp;gt;&lt;br /&gt;
1997-05-02 - Blame [MC Dett] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-05-09 - Bryan Gee [MC Moose] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-05-16 - Ray Keith [MC Moose &amp;amp; MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-05-23 - Randall &amp;amp; Doc Scott ''Live At Sankey's Soap &amp;quot;Guidance&amp;quot;'' &amp;lt;br&amp;gt;&lt;br /&gt;
1997-05-30 - Nicky Blackmarket [MC Stevie Hyper D] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-06-06 - Mampi Swift [MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-06-13 - DJ Force (Japan) [MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-06-20 - L Double [MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-06-27 - DJ Kane [MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-07-04 - Project 23 &amp;lt;br&amp;gt;&lt;br /&gt;
1997-07-11 - Tayla [MC Fearless] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-07-18 - DJ SS [MC Fearless] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-07-25 - Peshay [MC fearless] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-08-01 - Roni Size &amp;lt;br&amp;gt;&lt;br /&gt;
1997-08-08 - Slipmatt [MC Dett] (old Skool) &amp;lt;br&amp;gt;&lt;br /&gt;
1997-08-15 - ''no show due to [https://genome.ch.bbc.co.uk/30a43a194c59478da86d9bf3eb9fa332 India Five-0]'' &amp;lt;br&amp;gt;&lt;br /&gt;
1997-08-22 - Brockie [MC Dett] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-08-29 - Special K [MC Dett] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-09-05 - ?? ''Unknown'' &amp;lt;br&amp;gt;&lt;br /&gt;
1997-09-12 - Swan E [MC Moose] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-09-19 - DJ Krome [MC Moose] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-09-26 - Ascend (AKA Dead Dread) &amp;lt;br&amp;gt;&lt;br /&gt;
1997-10-03 - G Mac, DJ Kid &amp;amp; DJ SS [MC Navigator] Live at Manga in Edinburgh &amp;lt;br&amp;gt;&lt;br /&gt;
1997-10-10 - Mark Substance/Dazee/Kenny Ken [MC Jakes] Ruffneck Ting in Bristol &amp;lt;br&amp;gt;&lt;br /&gt;
1997-10-18 - Danny Breaks &amp;amp; Randall ''Live at Spider Club in Newcastle'' - '''note the move of program to 2am Saturday'''&amp;lt;br&amp;gt;&lt;br /&gt;
1997-10-25 - Skinny, Quantum &amp;amp; Hype Live at steppaz Convention &amp;lt;br&amp;gt;&lt;br /&gt;
1997-11-01 - DJ Lee &amp;amp; Doc Scott [MC Manik D &amp;amp; Justyce] ''Sound City 97: Live at Source, Zodiac Club in Oxford'' &amp;lt;br&amp;gt;&lt;br /&gt;
1997-11-08 - Dr S Gachet B2B Flynn &amp;amp; Flora &amp;lt;br&amp;gt;&lt;br /&gt;
1997-11-15 - Nicky Blackmarket &amp;amp; Footloose &amp;lt;br&amp;gt;&lt;br /&gt;
1997-11-22 - Jonny L &amp;amp; DJ Red &amp;lt;br&amp;gt;&lt;br /&gt;
1997-11-29 - Subject 13 / L Double &amp;lt;br&amp;gt;&lt;br /&gt;
1997-12-06 - Future Forces &amp;lt;br&amp;gt;&lt;br /&gt;
1997-12-13 - Bryan Gee &amp;lt;br&amp;gt;&lt;br /&gt;
1997-12-20 - Mampi Swift &amp;lt;br&amp;gt;&lt;br /&gt;
1997-12-27 - End Of Year Special &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==1998==&lt;br /&gt;
&lt;br /&gt;
For the fourth series, guests:&amp;lt;br&amp;gt;&lt;br /&gt;
1998-01-03 - Nicky Blackmarket&amp;lt;br&amp;gt;&lt;br /&gt;
1998-01-10 - ?? ''Unknown''&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
''1998-01-17 - 1st Fabio &amp;amp; Grooverider show according to [https://genome.ch.bbc.co.uk/f44e83f9e54c4d7bb3909fa46cad0c07 BBC Genome]''&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tmb.dj/index.php?title=One_In_The_Jungle&amp;diff=4671</id>
		<title>One In The Jungle</title>
		<link rel="alternate" type="text/html" href="https://wiki.tmb.dj/index.php?title=One_In_The_Jungle&amp;diff=4671"/>
		<updated>2021-10-20T17:45:10Z</updated>

		<summary type="html">&lt;p&gt;Jaybeee: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox Radio Show|name=One In The Jungle&lt;br /&gt;
|genre=Jungle, Drum &amp;amp; Bass&lt;br /&gt;
|host=MC Navigator + others&lt;br /&gt;
|time=1995-1998&lt;br /&gt;
|station=BBC Radio 1&lt;br /&gt;
|country=UK&lt;br /&gt;
|url=''too old skool for a website''}}&lt;br /&gt;
&lt;br /&gt;
[[IMAGE:One-in-the-jungle.jpg]]&lt;br /&gt;
&lt;br /&gt;
This was Radio 1's Friday night showcase which gave Jungle a platform on the station for the first time. It put DJ's and producers into  the limelight and broke down barriers which had been keeping the music underground for so long.&lt;br /&gt;
&lt;br /&gt;
The studio shows were pre-recorded and played out as live in the original Kool Fm style. The featured artists would choose the MC they wanted to front their mix.&lt;br /&gt;
&lt;br /&gt;
It began with an hour long pilot show from the week before the first show which went through the history of jungle and interviewed artists such as 'A Guy Called Gerald' and Roni Size.&lt;br /&gt;
&lt;br /&gt;
The first series was broadcast at 10pm on a Friday. The complete listing of these broadcasts remain a mystery although we are nearly there.&lt;br /&gt;
&lt;br /&gt;
==Tracklistings (Partial)==&lt;br /&gt;
&lt;br /&gt;
[http://jaybeee.themixingbowl.org/audio/one-in-the-jungle-tl.rtf Partial [[One In The Jungle]] Show Tracklistings]&lt;br /&gt;
&lt;br /&gt;
edit: Don't know how to edit that file, but more tracklistings can be found here: http://rolldabeats.com/forum/index.php?showtopic=46521&lt;br /&gt;
&lt;br /&gt;
==1995==&lt;br /&gt;
&lt;br /&gt;
For the first series, guests:&lt;br /&gt;
&lt;br /&gt;
1995-07-13 - Now That's What I Call Jungle - MC Navigator hosts a pre-recorded show featuring various people from the jungle scene talking about the scene, the history and their experiences. [https://soundcloud.com/keep_it_locked_tapes/mc-navigator-pilot-show-radio-1-one-in-the-jungle-988fm-13-07-95 soundcloud]&amp;lt;br&amp;gt;&lt;br /&gt;
1995-07-20 - Goldie [MC GQ] &amp;lt;br&amp;gt;&lt;br /&gt;
1995-07-27 - DJ Rap [MC Moose]  &amp;lt;br&amp;gt;&lt;br /&gt;
1995-08-03 - Roni Size [MC Dynamite]  &amp;lt;br&amp;gt;&lt;br /&gt;
1995-08-10 - Kenny Ken [MC GQ] &amp;lt;br&amp;gt;&lt;br /&gt;
1995-08-17 - Shy FX &amp;amp; DJ Ash [MC Dett] &amp;lt;br&amp;gt;&lt;br /&gt;
1995-08-24 - A Guy Called Gerald [MC Navigator]  &amp;lt;br&amp;gt;&lt;br /&gt;
1995-08-31 - Brockie [MC Dett] &amp;lt;br&amp;gt;&lt;br /&gt;
1995-12-27 - Best of One in the Jungle [MC Dett] (excerpts from above shows) &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==1996==&lt;br /&gt;
&lt;br /&gt;
For the second series, guests:&lt;br /&gt;
&lt;br /&gt;
1996-04-19 - Mowgli, Peshay &amp;amp; LTJ Bukem [MC Ash &amp;amp; Conrad] ''Dope @ Cafe Mex in Leeds'' &amp;lt;br&amp;gt;&lt;br /&gt;
1996-04-26 - DJ SS &amp;lt;br&amp;gt;&lt;br /&gt;
1996-05-03 - DJ Krust &amp;lt;br&amp;gt;&lt;br /&gt;
1996-05-10 - Dr S Gachet [MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-05-17 - A Guy Called Gerald &amp;lt;br&amp;gt;&lt;br /&gt;
1996-05-24 - Andy C &amp;lt;br&amp;gt;&lt;br /&gt;
1996-05-31 - Darren Jay [MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-06-07 - Roni Size [MC Dynamite &amp;amp; MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-06-14 - L Double [MC GQ &amp;amp; Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-06-21 - Mickey Finn [MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-06-28 - Kemistry &amp;amp; storm [MC Flux &amp;amp; MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-07-05 - Nicky Blackmarket [MC Stevie Hyper D] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-07-12 - DJ Rap [MC Dett] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-07-19 - Alex Reece [MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-07-26 - DJ SS [MC Warren G &amp;amp; MC Fearless]&amp;lt;br&amp;gt;&lt;br /&gt;
1996-08-02 - Mampi Swift [MC Navigator]&amp;lt;br&amp;gt;&lt;br /&gt;
1996-08-09 - Rob Playford &amp;amp; Rob Hague aka Omni Trio [MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-08-16 - Swan E [MC Moose] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-08-23 - Brockie [MC Dett]&amp;lt;br&amp;gt;&lt;br /&gt;
1996-08-26 - Alex Reece &amp;amp; A Guy Called Gerald ''Carnival Special'' [MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-08-30 - Kenny Ken [MC GQ] ''Live at Tribal Gathering'' &amp;lt;br&amp;gt;&lt;br /&gt;
1996-09-06 - DJ Dazee [MC Jakes] ''Recorded Live at Tribal Gathering'' &amp;lt;br&amp;gt;&lt;br /&gt;
1996-09-13 - Mampi Swift [MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-09-27 - Ellis Dee [MC Dett]&amp;lt;br&amp;gt;&lt;br /&gt;
1996-10-04 - Spring Heel Jack [MC Navigator]&amp;lt;br&amp;gt;&lt;br /&gt;
1996-10-11 - 4 Hero [MC Navigator]&amp;lt;br&amp;gt;&lt;br /&gt;
1996-10-18 - Shy FX [MC Navigator]&amp;lt;br&amp;gt;&lt;br /&gt;
1996-10-25 - DJ Die [MC Dynamite] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-11-01 - DJ Krust [MC Dynamite &amp;amp; MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-11-08 - L Double [MC Navigator]&amp;lt;br&amp;gt;&lt;br /&gt;
1996-11-15 - Zinc, Hype &amp;amp; Ron [MC Navigator &amp;amp; MC GQ] ''Perousia Records Night'' &amp;lt;br&amp;gt;&lt;br /&gt;
1996-11-22 - DJ Dazee [MC Jakes] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-11-29 - Nicky Black Market [MC Stevie Hyper D] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-12-06 - Dr S Gachet B2B Jack Smooth [MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-12-13 - Brockie B2B Mampi Swift [MC Dett] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-12-20 - DJ SS B2B Mental [MC Warren G &amp;amp; Power] &amp;lt;br&amp;gt;&lt;br /&gt;
1996-12-27 - Jungle Blitz '96 &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==1997==&lt;br /&gt;
&lt;br /&gt;
For the third series, guests:&lt;br /&gt;
&lt;br /&gt;
1997-01-03 - Donovan Badboy Smith [MC Juiceman &amp;amp; MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-01-10 - DJ Kid [MC Dett] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-01-18 - Brian G &amp;lt;br&amp;gt;&lt;br /&gt;
1997-01-24 - DJ Kane [MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-01-31 - Mickey Finn [MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-02-07 - Ed Rush B2B Trace [MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-02-14 - Dom and Roland [MC 5ive-0] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-02-21 - Kemistry &amp;amp; Storm [MC 5ive-0] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-02-28 - Andy C [MC 5ive-0] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-03-07 - Aphrodite [MC 5ive-0] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-03-14 - A Guy Called Gerald [MC Normski &amp;amp; Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-03-21 - Alex Reece [MC Navigator] ''Listen Without Prejudice week'' &amp;lt;br&amp;gt;&lt;br /&gt;
1997-03-28 - Future Loop Foundation &amp;lt;br&amp;gt;&lt;br /&gt;
1997-04-04 - Darren Jay [MC Fearless] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-04-11 - DJ Pulse [MC Fearless] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-04-18 - DJ Zinc [MC Dett] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-04-25 - Roni Size B2B Krust [MC Dynamite] ''Full Cycle Live at The End'' &amp;lt;br&amp;gt;&lt;br /&gt;
1997-05-02 - Blame [MC Dett] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-05-09 - Bryan Gee [MC Moose] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-05-16 - Ray Keith [MC Moose &amp;amp; MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-05-23 - Randall &amp;amp; Doc Scott ''Live At Sankey's Soap &amp;quot;Guidance&amp;quot;'' &amp;lt;br&amp;gt;&lt;br /&gt;
1997-05-30 - Nicky Blackmarket [MC Stevie Hyper D] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-06-06 - Mampi Swift [MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-06-13 - DJ Force (Japan) [MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-06-20 - L Double [MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-06-27 - DJ Kane [MC Navigator] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-07-04 - Project 23 &amp;lt;br&amp;gt;&lt;br /&gt;
1997-07-11 - Tayla [MC Fearless] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-07-18 - DJ SS [MC Fearless] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-07-25 - Peshay [MC fearless] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-08-01 - Roni Size &amp;lt;br&amp;gt;&lt;br /&gt;
1997-08-08 - Slipmatt [MC Dett] (old Skool) &amp;lt;br&amp;gt;&lt;br /&gt;
1997-08-15 - ''no show due to [https://genome.ch.bbc.co.uk/30a43a194c59478da86d9bf3eb9fa332 India Five-0]'' &amp;lt;br&amp;gt;&lt;br /&gt;
1997-08-22 - Brockie [MC Dett] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-08-29 - Special K [MC Dett] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-09-05 - ?? ''Unknown'' &amp;lt;br&amp;gt;&lt;br /&gt;
1997-09-12 - Swan E [MC Moose] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-09-19 - DJ Krome [MC Moose] &amp;lt;br&amp;gt;&lt;br /&gt;
1997-09-26 - Ascend (AKA Dead Dread) &amp;lt;br&amp;gt;&lt;br /&gt;
1997-10-03 - G Mac, DJ Kid &amp;amp; DJ SS [MC Navigator] Live at Manga in Edinburgh &amp;lt;br&amp;gt;&lt;br /&gt;
1997-10-10 - Mark Substance/Dazee/Kenny Ken [MC Jakes] Ruffneck Ting in Bristol &amp;lt;br&amp;gt;&lt;br /&gt;
1997-10-18 - Danny Breaks &amp;amp; Randall ''Live at Spider Club in Newcastle'' - '''note the move of program to 2am Saturday'''&amp;lt;br&amp;gt;&lt;br /&gt;
1997-10-25 - Skinny, Quantum &amp;amp; Hype Live at steppaz Convention &amp;lt;br&amp;gt;&lt;br /&gt;
1997-11-01 - DJ Lee &amp;amp; Doc Scott [MC Manik D &amp;amp; Justyce] ''Sound City 97: Live at Source, Zodiac Club in Oxford'' &amp;lt;br&amp;gt;&lt;br /&gt;
1997-11-08 - Dr S Gachet B2B Flynn &amp;amp; Flora &amp;lt;br&amp;gt;&lt;br /&gt;
1997-11-15 - Nicky Blackmarket &amp;amp; Footloose &amp;lt;br&amp;gt;&lt;br /&gt;
1997-11-22 - Jonny L &amp;amp; DJ Red &amp;lt;br&amp;gt;&lt;br /&gt;
1997-11-29 - Subject 13 / L Double &amp;lt;br&amp;gt;&lt;br /&gt;
1997-12-05 - Future Forces &amp;lt;br&amp;gt;&lt;br /&gt;
1997-12-12 - Bryan Gee &amp;lt;br&amp;gt;&lt;br /&gt;
1997-12-19 - Mampi Swift &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==1998==&lt;br /&gt;
&lt;br /&gt;
For the fourth series, guests:&lt;br /&gt;
&lt;br /&gt;
????-??-?? - Nicky Blackmarket&lt;/div&gt;</summary>
		<author><name>Jaybeee</name></author>
		
	</entry>
</feed>