Check-in [e8560b51b5]
Overview
Comment: | More examples for recording/streamripper configuration. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
e8560b51b5258e223d145e403eb52bbd |
User & Date: | mario on 2015-04-24 22:55:04 |
Other Links: | manifest | tags |
Context
2015-04-25
| ||
00:39 | Replace statusbar with plain gtk.Label, use glib.timeout_add for clearing it up implicitly. check-in: 805dbd5181 user: mario tags: trunk | |
2015-04-24
| ||
22:55 | More examples for recording/streamripper configuration. check-in: e8560b51b5 user: mario tags: trunk | |
21:54 | Add spacing for config dialog options (indented per plugin). Narrower labels, icons now show up. Undo newline-removal for Gtk3 tooltips (work with preformatted text instead). check-in: c02e9a3ec0 user: mario tags: trunk | |
Changes
Modified help/action_recording.page from [f946f040e0] to [68b00a5e32].
︙ | ︙ | |||
17 18 19 20 21 22 23 | window should appear, where streamripper shows its progress.</p> <p>You can <link xref="configuration">configure the recording tool</link> according to audio types again.</p> <section> <title>Streamripper</title> | | < < > | > > | > > > > > > > > > > > | > | > > > > | | | | | | | > > | > | < | > > | > > > > | > > > > > > | | | 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 | window should appear, where streamripper shows its progress.</p> <p>You can <link xref="configuration">configure the recording tool</link> according to audio types again.</p> <section> <title>Streamripper</title> <p>There's already a default entry for recording radio stations:</p> <table shade="rows" rules="rows cols"> <thead> <tr><td><p>Format</p></td> <td><p>Application</p></td></tr> </thead> <tr><td><p><var>audio/*</var></p></td> <td><p><cmd>xterm -e streamripper %srv</cmd></p></td></tr> </table> <p>Streamripper has a few more options of its own:</p> <steps> <item><p>To define an exact download directory:</p> <list> <item><p><cmd>xterm -e "streamripper -d ~/Music/ %srv"</cmd></p></item> </list> </item> <item><p>Use a specific filename pattern:</p> <list> <item><p><cmd>xterm -e "streamripper --xs2 -D '%S-%A-%T-%a.mp3' %srv"</cmd></p></item> </list> </item> <item><p>Just record a continuous stream, for 1 hour, without splitting individual songs from a radio station:</p> <list> <item><p><cmd>xterm -e "streamripper -A -s 3600 -d ~/Music/ %srv"</cmd></p></item> </list> </item> <item><p>Pretend to be an audio player (in case recording is blocked):</p> <list> <item><p><cmd>streamripper -u 'WinampMPEG/5.0' %srv</cmd></p></item> </list> </item> </steps> <p>Whenever you leave out the <cmd>xterm</cmd> prefix, it runs silently in the background.</p> <p>See the streamripper(1) man page or its <link href="http://streamripper.sourceforge.net/faq.php">FAQ</link> for more tips.</p> </section> <section> <title>fIcy/fPls</title> <p>As alternative to streamripper, check out <link href="http://freshcode.club/projects/ficy">fIcy/fPls</link> for recording ICEcast/SHOUTcast streaming servers.</p> <p>It can be configured just as easily with:</p> <steps> <item><p><cmd>xterm -e "fPls %pls"</cmd></p></item> </steps> </section> <section> <title>Graphical stream recording tools</title> <p>You can also try a streamripper GUI or graphical reimplementation:</p> <list> <item><p><link href="http://sourceforge.net/projects/stripper/">StreamRipStar</link> (Java), works best per drag and drop; set the DND format to PLS or M3U however.</p></item> <item><p><link href="http://launchpad.net/streamtastic">Streamtastic</link> (Java), only imports a text entry per drag and drop.</p></item> <item><p><link href="http://kstreamripper.sourceforge.net/">KStreamRipper</link>, though no current version in distros.</p></item> <item><p>VLC has built-in recording capabilities.</p></item> </list> <p>Which all simplify defining a custom download directory, or how radio streams are split (between advertisement breaks), and the naming scheme for resulting *.mp3 filenames of course.</p> </section> <section> <title>Youtube-DL</title> <p>The recording settings already have a specific entry for "video/youtube" URLs.</p> <p>To configure a custom download directory, use:</p> <steps> <item><p><cmd>xterm -e "cd /media/music ; youtube-dl %srv"</cmd></p></item> </steps> <p>The <cmd>cd</cmd> trick also works with streamripper, or other tools.</p> </section> <section> <title>Wget for MOD files</title> <p>To download audio files from The MOD Archive directly, you can also define a custom handler.</p> <steps> <item><p>Scroll/click on the ⎘ empty row in the recording application list.</p></item> <item><p>There create a new recording MIME type:</p> <list> <item><p><var>audio/mod+zip</var></p></item> </list> </item> <item><p>Specifiy a command like:</p> <list> <item><p><cmd>xterm -e wget %srv</cmd></p></item> <item><p><cmd>cd ~/Desktop ; wget %srv</cmd></p></item> <item><p><cmd>curl %srv</cmd></p></item> </list> </item> </steps> <p> All MOD file formats (IT, XM, S3M, etc.) are mapped to this generic type specifier. </p> </section> </page> |