Saturday, April 7th: Time Warp Mannheim, page 2

slash ProDanceCulture
on April 8th, 2018
/ post 72083


slash wrote:
not sure if you guys know, there's a half-ass method of ripping be-at.tv streams with livestreamer. i must state right away, if there is more than 1 "be-at.tv stream id" involved, livestreamer will most likely produce huge video file which will only play 5 minutes and will need fixing, BUT! it is still OK for mp3 converter feature.. basically, with livestreamer one can download lowest quality mp4 from be-at.tv which will contain only audio, but be still flv/mp4, so it needs to be converted to mp3 after... but in any case, this is command that i use:
worst is for quality, which basically cuts down on data transfer.. after download is complete, it can be converted to mp3 with something like this:
but that is ONLY in case you did "worst" quality, because then audio track is the only track and it becomes 0th track in 0th format.. if video download quality is ANYTHING but worst, then there will be video track along with audio track, and audio track becomes 1st, not 0th in the "list", so command changes by one digit:
but thanks to stupid ffmpeg thing and the streams that be-at.tv produces, mp3 converting process car report like millions of errors, which will significantly slow down the process of conversion, because all these error messages have to be sent to terminal (cmd.exe in this case), so it cab be avoided by telling ffmpeg to be quiet, in case of faulty multi-id stream this actually saves double or triple time... so gotta add "-loglevel 0" to the command. it will not show any progress, i think, but in any case, it's way faster...
hopefully this helps someone...
not sure if you guys know, there's a half-ass method of ripping be-at.tv streams with livestreamer. i must state right away, if there is more than 1 "be-at.tv stream id" involved, livestreamer will most likely produce huge video file which will only play 5 minutes and will need fixing, BUT! it is still OK for mp3 converter feature.. basically, with livestreamer one can download lowest quality mp4 from be-at.tv which will contain only audio, but be still flv/mp4, so it needs to be converted to mp3 after... but in any case, this is command that i use:
1 wrote:
livestreamer BEAT_URL worst -o FILENAME.mp4
livestreamer BEAT_URL worst -o FILENAME.mp4
worst is for quality, which basically cuts down on data transfer.. after download is complete, it can be converted to mp3 with something like this:
2 wrote:
for %%a in ("*.mp4") do ffmpeg -i "%%a" -map 0:0 -acodec libmp3lame -ac 2 -ab 192k "%%a.mp3"
for %%a in ("*.mp4") do ffmpeg -i "%%a" -map 0:0 -acodec libmp3lame -ac 2 -ab 192k "%%a.mp3"
but that is ONLY in case you did "worst" quality, because then audio track is the only track and it becomes 0th track in 0th format.. if video download quality is ANYTHING but worst, then there will be video track along with audio track, and audio track becomes 1st, not 0th in the "list", so command changes by one digit:
3 wrote:
for %%a in ("*.mp4") do ffmpeg -i "%%a" -map 0:1 -acodec libmp3lame -ac 2 -ab 192k "%%a.mp3"
for %%a in ("*.mp4") do ffmpeg -i "%%a" -map 0:1 -acodec libmp3lame -ac 2 -ab 192k "%%a.mp3"
but thanks to stupid ffmpeg thing and the streams that be-at.tv produces, mp3 converting process car report like millions of errors, which will significantly slow down the process of conversion, because all these error messages have to be sent to terminal (cmd.exe in this case), so it cab be avoided by telling ffmpeg to be quiet, in case of faulty multi-id stream this actually saves double or triple time... so gotta add "-loglevel 0" to the command. it will not show any progress, i think, but in any case, it's way faster...
final wrote:
for %%a in ("*.mp4") do ffmpeg -i "%%a" -loglevel 0 -map 0:0 -acodec libmp3lame -ac 2 -ab 192k "%%a.mp3"
for %%a in ("*.mp4") do ffmpeg -i "%%a" -loglevel 0 -map 0:0 -acodec libmp3lame -ac 2 -ab 192k "%%a.mp3"
hopefully this helps someone...
thanks Slash and thankyou everyone who uploaded the mixes for this (FC, Alex)!!!



Wow, didn't expect that much share of data about this event :) thanks.
Is that that useful to convert to MP3 ? Why not an -acodec copy to keep quality ?
Also, is there an 1Mb/s Arte stream ? They usually do a decent 2.5Mb/s, and, that time, audio was very nice : 192k aac @48k with 20khz cutoff.
No replay so far, and sometimes quality is better as live.
Thanks for log tip, slash.
Is that that useful to convert to MP3 ? Why not an -acodec copy to keep quality ?
Also, is there an 1Mb/s Arte stream ? They usually do a decent 2.5Mb/s, and, that time, audio was very nice : 192k aac @48k with 20khz cutoff.
No replay so far, and sometimes quality is better as live.
Thanks for log tip, slash.

slash ProDanceCulture
on April 9th, 2018
/ post 72089
ocal5 wrote:
Wow, didn't expect that much share of data about this event :) thanks.
Is that that useful to convert to MP3 ? Why not an -acodec copy to keep quality ?
Also, is there an 1Mb/s Arte stream ? They usually do a decent 2.5Mb/s, and, that time, audio was very nice : 192k aac @48k with 20khz cutoff.
No replay so far, and sometimes quality is better as live.
Thanks for log tip, slash.
Wow, didn't expect that much share of data about this event :) thanks.
Is that that useful to convert to MP3 ? Why not an -acodec copy to keep quality ?
Also, is there an 1Mb/s Arte stream ? They usually do a decent 2.5Mb/s, and, that time, audio was very nice : 192k aac @48k with 20khz cutoff.
No replay so far, and sometimes quality is better as live.
Thanks for log tip, slash.
it was about be-at.tv, they always do 192kbps audio. plus i don't think -acodec copy would do it, because we're converting to mp3, and video usually has audio as m4a or aac.


Indeed. Is that a scene rule or is someone using an MP3 only player nowadays ?

slash ProDanceCulture
on April 9th, 2018
/ post 72091
i don't know.... if none-mp3 formats are shared, usually someone shares mp3 later, so...

umpfta Uploader
on April 9th, 2018
/ post 72093
But please guys, NEVER do use livestreamer for ripping video from be-at.tv.
As you know slash, be-at.tv sometime is missing chunks in the best quality. If livestreamer would use a lower quality chunk in this case, or even would go to the next chunk, this could result in asychronous audio/video.
As you know slash, be-at.tv sometime is missing chunks in the best quality. If livestreamer would use a lower quality chunk in this case, or even would go to the next chunk, this could result in asychronous audio/video.

slash ProDanceCulture
on April 10th, 2018
/ post 72097
i've written above there, that is method can be erroneous, and with multiple "pieces" on be-at.tv, video file will end up huge but unreadable sometimes. that is why i've listed pretty much the method for sound-only download with livestreamer.
recently be-at.tv has been doing this maybe on purpose, but when i personally see that their broadcast starts with stream ID 5000 and ends with ID 5005 - i do not want to deal with that anymore... downloading multiple streams and putting them beat files together and then doing mp4s together and then converting to mp3... annoying..
ps. be-at..tv has audio and video together in every chunk, so there will not be asynchronous sound problems, in cases of missing chunks, there will be frozen video for a few seconds and missing audio...
recently be-at.tv has been doing this maybe on purpose, but when i personally see that their broadcast starts with stream ID 5000 and ends with ID 5005 - i do not want to deal with that anymore... downloading multiple streams and putting them beat files together and then doing mp4s together and then converting to mp3... annoying..
ps. be-at..tv has audio and video together in every chunk, so there will not be asynchronous sound problems, in cases of missing chunks, there will be frozen video for a few seconds and missing audio...
you cannot post in this forum.
click here to to create a user account to participate in our forum.
click here to to create a user account to participate in our forum.
Top 18 Torrents (last 5 days)» John Digweed - Transitions 1132 (Guest Fur Coat) - 08-May-2026 » CASS - Live at Club77, Sydney, Australia - 09-Apr-2026 » Phillosopher - Live at Downtempo Rooftop, Buenos Aires, Argentina - 21-Mar-2026 » Victor Calderone - Live @ Refuge - New York City - 15-Mar-2026 » Dave Seaman - Radio Therapy - May 2026 » Zankee Gulati - Live on The Decoy Paddle Steamer Boat by Bioma, Meanwhile Recordings Showcase, Perth, Australia - 17-Feb-2026 » Gai Barone - Patterns 699 - 06-May-2026 » Lisandro - Balance Selections 369 - 08-May-2026 » Super Flu - Love Letter - February 2026 » Hernan Cattaneo - Resident, Episode 783 - 09-May-2026 » Fede Frostl - Live at Kadinsky Sessions, Kadinsky Caffee, Amsterdam, Netherlands - 14-Feb-2026 » DJ Steven & Jassen Petrov - Live @ Z-Tronic Festival, Stara Zagora - 05-Sep-2025 » Victor Ramirez (AR) - Highly Recommended 05 on Stylo FM 101.1, Argentina - 27-Apr-2026 » Facundo Losardo - Live at La Biblioteca, Buenos Aires, Argentina - 02-Apr-2026 » Acim & Edu Schwartz - Progressive Tales 276 - 09-May-2026 » YOTTO - Odd One Out Radio 100 - April 2026 » Berni Turletti - Diamond 044 - 01-Apr-2026 » Natiivo & Agu Menghini - Somos Muchos on Radio Mas - 09-May-2026
Recent from the Forum (Be Social)» Those were the days » Ze Baldy and others » April 10th - 12th & April 17th - 19th Coachella Indio » IOD half dozen » Sven turn of the century » Our emails can now reach hotmail/live/outlook (group of mailers by Microsoft) » March 27th - 29th Ultra Music Festival Miami » testing out Gemini music creation tool Neon Ascension | spoiler alert:💩🪠 » March 24th - 27th Tomorrowland Winter Huez » March 26th - 29th Factory Town Miami
livestreamer BEAT_URL worst -o FILENAME.mp4
worst is for quality, which basically cuts down on data transfer.. after download is complete, it can be converted to mp3 with something like this:
for %%a in ("*.mp4") do ffmpeg -i "%%a" -map 0:0 -acodec libmp3lame -ac 2 -ab 192k "%%a.mp3"
but that is ONLY in case you did "worst" quality, because then audio track is the only track and it becomes 0th track in 0th format.. if video download quality is ANYTHING but worst, then there will be video track along with audio track, and audio track becomes 1st, not 0th in the "list", so command changes by one digit:
for %%a in ("*.mp4") do ffmpeg -i "%%a" -map 0:1 -acodec libmp3lame -ac 2 -ab 192k "%%a.mp3"
but thanks to stupid ffmpeg thing and the streams that be-at.tv produces, mp3 converting process car report like millions of errors, which will significantly slow down the process of conversion, because all these error messages have to be sent to terminal (cmd.exe in this case), so it cab be avoided by telling ffmpeg to be quiet, in case of faulty multi-id stream this actually saves double or triple time... so gotta add "-loglevel 0" to the command. it will not show any progress, i think, but in any case, it's way faster...
for %%a in ("*.mp4") do ffmpeg -i "%%a" -loglevel 0 -map 0:0 -acodec libmp3lame -ac 2 -ab 192k "%%a.mp3"
hopefully this helps someone...