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 20 Torrents (last 5 days)» Guy J - Live from Amsterdam Boat Party - June 2024 » Anthony Pappa - Live @ Connected (Boston, USA) - 11-Apr-2025 » Nick Warren - Live at Metropolitano Rosario - Part 1 - 08-Mar-2025 » Jamie Stevens - Balance Croatia 018 - April 2025 » Damian Lazarus - Midnight in a Perfect World (Guest Mix) - April 2025 » Eelke Kleijn - DAYS like NIGHTS 387 - Flash Club, Washington DC - April 2025 » Franky Wah - Live From Hackney Church - 08-Mar-2025 » Anton Mayday - Ko Panghan - 17-Apr-2025 » Tim Green - Balance Croatia 019 - April 2025 » Echo Daft - Plattenbank Exclusive Mix 070 - 06-Apr-2025 » Facundo Mohrr - Live @ Proyecto Aborigen (Tucuman, Argentina) - 20-Dec-2024 » Miss Monique - MiMo Radio Collection - Ep 001-030 [HQ] - April 2025 » CJ Art - Live @ Ozora Festival Pumpui Stage, Hungary - August 2024 » Miss Monique - MiMo Weekly Podcast - Ep 001-043 [HQ] - April 2025 » Monkey Safari - Live @ Firehouse, San Diego 1080p - 23-Feb-2025 » Francois Bresez & El Marco - Flow Sessions 117 - April 2025 » Dowden - Maple Leaf, Schirmchendrink - 07-Apr-2025 » Hop'n Honey - Afterhour Sounds Podcast Nr. 303 - April 2025 » Sean Keating - Electric Pines 2025 Submission Mix - 07-Apr-2025 » Christian Monique - Seventeen - 18-Apr-2025
Recent from the Forum (Be Social)» hey, lottery winners!!! post your testimonials!!! 1h 42m » April 11-13 & 18-20 Coachella Indio » seedbox no firefoxore other one it .. problem whit rss feed » April 5th: Time Warp Mannheim » March 28th - 30th Ultra Music Festival Miami » charlie tee bbc radio 1 shows » March 21st - 24th Tomorrowland Winter » first Apple Center in Egypt :) » February 21st & 22nd A State of Trance Rotterdam » February 21st - 23rd EDC Mexico City

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...