RadioShow/After the show

From syn2cat - HackerSpace.lu
(Difference between revisions)
Jump to: navigation, search
Line 1: Line 1:
 
== After the Show ==
 
== After the Show ==
Once the show is over make sure you have a Backup of the entire show so we can put it online on our [[LetzHack|LetzHack page]].
+
Once the show is over make sure you have a Backup of the entire show so we can put it online on the [http://podcast.ara.lu/blog/category/ara/letzhack/ radio ara podcast].
  
Keep in mind that commercial songs will have to be removed from the podcasts though!
+
No need to edit the show to remove commercial music as long as the podcast is hosted at radio Ara server.
  
 
=== Encoding===
 
=== Encoding===
Line 63: Line 63:
 
=== Importing ===
 
=== Importing ===
  
If you have shell access and the necessary amount of time (otherwise ask somebody else), upload the podcast.  
+
* Go to the admin page of radio ara podcast server. If you have a password, you have the url (ok it's wordpress).
 +
* Rename the mp3 file into YYYY-MM-DD-Letz-Hack.mp3
 +
* Set the mp3tags correctly
 +
** Title: LetzHack - short topic
 +
** Artist: Radio ARA
 +
** Album: DD.MM.YYYY with guest1, guest2 guest3
 +
** Genre: Broadcast Show
 +
** etc...
 +
* Upload the file into the media section
 +
* Create the webpage as follows
  
* Uploading files (if you have the above variables still set and your ~/.ssh/config is nicely set up AND you have writing access to radioshows) :  
+
Title: Lët’z Hack DD.M.YYYY – short topic
  
scp "${FileName}".{mp3,ogg} hackerspace.lu:/var/tmp/     # copy via tmp, else importer may work on unfinished file
+
::<ul>
ssh hackerspace.lu "mv /var/tmp/${FileName}.{mp3,ogg} /var/spool/radioshows/"
+
::<li><strong>topic 1</strong><br>
 +
::explanations on topic 1
 +
::with links to twitter profiles of participants and links to further infos
 +
::</li>
 +
::<li><strong>topic 2</strong><br>
 +
::explanations on topic 2
 +
::with links to twitter profiles of participants and links to further infos
 +
::</li>
 +
::</ul>
 +
::<p>Moderation: xxxxxxx <a href="https://twitter.com/@faq" target="_blank">@xxxxxxxxxxxx</a><br>
 +
::Guests: Gunstick <a href="https://twitter.com/GunstickUlm" target="_blank">@GunstickULM</a> &amp;&nbsp;
 +
::</p>
 +
::<p><strong>Playlist:</strong></p>
 +
::<ul>
 +
::<li><strong>artist 1</strong> – title 1</li>
 +
::<li><strong>artist 2</strong> – title 2</li>
 +
::<li><strong>artist 3</strong> – title 3</li>
 +
::
  
* Those two files will be automatically imported into the wiki during the next hour. You can then proceed with the following step.
+
* Link the file to the article in the "media URL" field
* You will find the imported files on [[Special:RecentChanges|the recent changes page]]
+
* Remove all categories and select only category Let'z Hack
* INFO: the importer script will usually populate the wiki metadata using the ogg and mp3 tags. They should look like this else they will not appear in [[LetzHack#Podcasts|our podcast feeds]]:
+
* click on publish
 
+
For the ogg file
+
<pre>
+
[[Is PodcastFile::true| ]]
+
[[Is FileType::ogg| ]]
+
[[Has Topic::<topic of the show>]]
+
</pre>
+
and for the mp3 file the same, just different file type
+
<pre>
+
[[Is PodcastFile::true| ]]
+
[[Is FileType::mp3| ]]
+
[[Has Topic::<topic of the show>]]
+
</pre>
+
 
+
* Add the podcast filenames and release date to the wiki page semantic info of the episode you've just worked on. Edit "with form" and fill out or use this syntax:
+
<pre>
+
|podcastrelease=2012/04/15 08:23:00 PM
+
|podcast=LetzHack_ep64_20120331_podcast.ogg‎
+
|podcastmp3=LetzHack_ep64_20120331_podcast.mp3
+
</pre>
+
(seriously, use the form, it has a clickable calendar).
+
 
+
* Finally, clear the cache for the Lët'z Hack page: '''[https://wiki.hackerspace.lu/w/index.php?title=LetzHack&action=purge Clear NOW]'''
+

Revision as of 22:20, 31 July 2015

After the Show

Once the show is over make sure you have a Backup of the entire show so we can put it online on the radio ara podcast.

No need to edit the show to remove commercial music as long as the podcast is hosted at radio Ara server.

Encoding

  • Cutting by Germain

If the show needs to be cut by Germain, encode it at 256 kb/s with CONSTANT BITRATE, as otherwise he cannot properly use his toolset which does not support VBR. The replay gain option calculates the volume for radio transmission (AFAIK). (The recording device in Studio 2 is set to limit the recording to -2.0 dB, so it would be a good idea to amplify the recording to 0dB.)

-$ lame --replaygain-accurate -h -b 256 --cbr in.wav LetzHack_epX_2012mmdd.mp3
  • Cutting yourself

Just use fancy audacity and edit as you like.

Remember: it's audacity, save often!

When done, normalize the audio:

  1. Effect->Normalize...
  2. [x] Remove any DC offset
  3. [x] Normalize maximum amplitude to
  4. -[0.0]dB
  5. [OK]

(this takes about 1 minute on a good PC)

When encoding for the podcast: use the artist, title and date flags! (is there a podcast genre now?--Tschew 08:02, 1 October 2009 (UTC))

Setting some variables will make the following steps just cut & paste into your bash prompt

InputFile=        # mp3 or wav file with the ready cut show
MyName=""         # who are you, not filling this will simply use your current user login
EpisodeNumber=    # put episode number here, e.g. 65
EpisodeTitle=""   # title of the show, e.g. "Events Review" (write " as \")
EpisodeDate=      # date of broadcast, e.g. 20120414

# calc intermediate values
EpisodeYear=${EpisodeDate:0:4}
EpisodeMonth=${EpisodeDate:4:2}
EpisodeDay=${EpisodeDate:6:2}
MyName=${MyName:-$(id -un)}
FileName="LetzHack_ep${EpisodeNumber}_${EpisodeDate}_podcast"
TitleTag="Lët'z Hack! episode ${EpisodeNumber} - ${EpisodeTitle}"

# create ogg (oggenc is included in vorbis-tools)
oggenc "$InputFile" -o "${FileName}".ogg -d ${EpisodeYear} -a syn2cat -t "${TitleTag}"

cat << EOF | vorbiscomment -w "${FileName}".ogg
ARTIST=syn2cat Hackerspace
ALBUM=LetzHack Radioshow
TITLE=${TitleTag}
COMPOSER=$MyName
DATE=${EpisodeYear}-${EpisodeMonth}-${EpisodeDay}
EOF

# create mp3
lame -V 7 -v -h --ty ${EpisodeYear} --ta syn2cat --tt "${TitleTag}" "$InputFile" "${FileName}".mp3

You can also use dir2ogg to convert mp3 files to ogg.

Importing

  • Go to the admin page of radio ara podcast server. If you have a password, you have the url (ok it's wordpress).
  • Rename the mp3 file into YYYY-MM-DD-Letz-Hack.mp3
  • Set the mp3tags correctly
    • Title: LetzHack - short topic
    • Artist: Radio ARA
    • Album: DD.MM.YYYY with guest1, guest2 guest3
    • Genre: Broadcast Show
    • etc...
  • Upload the file into the media section
  • Create the webpage as follows

Title: Lët’z Hack DD.M.YYYY – short topic

  • topic 1
  • explanations on topic 1
    with links to twitter profiles of participants and links to further infos
  • topic 2
  • explanations on topic 2
    with links to twitter profiles of participants and links to further infos

    Moderation: xxxxxxx <a href="https://twitter.com/@faq" target="_blank">@xxxxxxxxxxxx</a>

    Guests: Gunstick <a href="https://twitter.com/GunstickUlm" target="_blank">@GunstickULM</a> & 

    Playlist:

  • artist 1 – title 1
  • artist 2 – title 2
  • artist 3 – title 3
    • Link the file to the article in the "media URL" field
    • Remove all categories and select only category Let'z Hack
    • click on publish
    Personal tools
    Namespaces

    Variants
    Actions
    Navigation
    syn2cat
    Hackerspace
    Activities
    Initiatives
    Community
    Tools
    Tools