Jump to content

Pinned KARAOKE ENTHUSIAST CHAT


Recommended Posts

  • Premium VIP
Posted
On 1/24/2025 at 8:40 PM, mee7532 said:

 

Of the 4 search databases I use, it is only found on iCroons (which I think has some either missing or incorrect information here) There are 6 discs in the set, with the first one having 99 tracks. 

 

There are some very interesting tracks on here as well, most not found elsewhere, making me think it may be a homemade collection that found a listing on the archive section of iCroons. 

 

image.thumb.png.e18ec70fedf9e6c4879cdfda9ad0a539.png

image.thumb.png.c1ae671becf0ba1c2b5b9444d15c6bc7.png

image.thumb.png.df270c5eeb70d27cc931d55d3cc01c05.png

image.thumb.png.921d00c48113eefd93ebb3b0524d1c5b.png

image.thumb.png.fa087d3ee82b876fe5b898e90d14abbc.pngimage.thumb.png.1ea4a3865b3d42546971ec2ffb3a42f3.png

 

image.thumb.png.ba74428c26a1d0e47d4fb79b29f27d37.png

image.thumb.png.b77424bcc3f95684fbef577f44482ded.png

 

 

Mee..... I never even thought about Icroons. 

👍 💯

  • Like 1
Posted
12 hours ago, leenew Karaoke said:

Hi Billy,

It has gone.

Everytime I added more discs I checked the downloads folder and deleted tracks that appeared in my new discs.

Soon enough, all of the tracks were found to be duplictes of tracks on the new discs I had.

So it just got deleted.

Is there anything specific you were wanting?

 

Lee.

Thanks Lee. Nothing I was wanting. You obviously are doing an integral job!

  • Premium VIP
Posted
11 hours ago, BJtheDJ said:

My GoTo programs for downloading from YouTube [Allavsoft] and [AnyVideo] are

no longer working.

 

Anybody got working suggestions ?? 

I use MP3Studio YouTube Downloader 

This is the hidden content, please

 

So far the crack has worked with all the updates. 

  • Like 8
  • Thanks 2
  • Premium VIP
Posted
16 hours ago, rickane said:

Fist off, thank you everyone who has filled my requests, especially @Dndstudio& @ksk778! You both are extremely talented, and generous with your time!

 

I have one more request, and I don't think it will be an easy one. It's a very popular mashup between Green Day vs. Oasis vs. Travis vs. Eminem called "Boulevard of Broken Songs". The mp3 can be found here: 

This is the hidden content, please
 

 

And the lyrics can be found here: 

This is the hidden content, please

 

Thank you in advance! :)

 

This might not be exactly what you want,but it might work for you. It's the best I could do with resources I have available to me

 

KSK-02125 - Green Day, Oasis ft.Travis, Eminem  - Boulevard Of Broken Songs

 

This is the hidden content, please

  • Like 22
  • Winner 1
Posted
43 minutes ago, ksk778 said:

This might not be exactly what you want,but it might work for you. It's the best I could do with resources I have available to me

 

KSK-02125 - Green Day, Oasis ft.Travis, Eminem  - Boulevard Of Broken Songs

 

This is the hidden content, please

@ksk778This is exactly what I needed! It is perfect! Thank you!

  • Like 4
  • Thanks 1
  • Winner 1
Posted (edited)
23 hours ago, BJtheDJ said:

My GoTo programs for downloading from YouTube [Allavsoft] and [AnyVideo] are

no longer working.

 

Anybody got working suggestions ?? 

I use Yt-dlp - easy to use, open source, updated frequently & lot's of options for saving, works with lots of other sites (including iplayer).

 

This is the hidden content, please

 

A couple of examples:

extract audio

yt-dlp "yourvideosite.com?v=dfdfdfd" -x --audio-format mp3

 

extract best video to mp4

yt-dlp "yourvideosite.com?v=dfdfdfd" -f "bv*[ext=mp4]+ba[ext=m4a]/b[ext=mp4] / bv*+ba/b"

 

 

I also use it in a powershell terminal to loop through a text file containing a list of different video url's 

$links = get-content -path C:\apps\list.txt | Where-Object { $_.Trim() -ne '' }
foreach ($url in $links) {start-process -FilePath C:\Apps\yt-dlp.exe -ArgumentList "$url -f bestvideo[ext=mp4]+bestaudio[ext=m4a]/best[ext=mp4]/best" -wait}

 

Edited by _.:=iTake=:._
Added syntax highlighting
  • Like 3
  • Thanks 1
  • Informative 1
Posted (edited)
On 1/25/2025 at 9:52 AM, leenew Karaoke said:

Hi BJ,

All advice is welcome!

Yeah, you will find the full 2TB of files is in MP3+CDG format 🙂

I did explain way-back-when why I was doing it this way...

While I am working on these collections it is unavoidable.

 

Re-tagging/checking/swapping faulty .cdg files/ bulk editing etc. etc. I have to work with unzipped files.

Some of the programs I use won't deal with zips.

Also, I have found many errors simply by unzipping the files in the first place!

I guess once my work is done (!) I could zip everything back up, but in the meantime, everything is MP3+CDG and I will leave it up to people to decide whether they want to re-zip them if they take some files.

 

*Of course, you can't save space by zipping an MP3, it is just the .CDG that compresses, but as you say, these squash down by a fair bit.*

 

Lee.

 

Hi Lee and all,

 

I wrote some scripts a while back to help with zipping / unzipping of karaoke files.  I'll post them here in case they help someone.   Please note you need to have 7zip.exe installed.  Copy & paste the code into a bat file & run it inside the folder you want it to process - Important: it's recursive so will go through each subfolder.

 

I will suggest that if you don't understand the code, don't run it.   If you want to try it out, try it in a test folder.

 

This will put matching cdg & mp3 files into a zip. i.e.  my song.mp3 & mysong.cdg will be placed into a zip called mysong.zip

@ECHO OFF
REM zip cdg & matching mp3 to a zip file with the same name (deletes original file).
REM if no matching file found no action is taken & original file is left in place.

FOR /R %%F IN (*.cdg) DO IF EXIST "%%~dpnF.mp3" pushd "%%~dpF"&"C:\Program Files\7-Zip\7Z.exe" a "%%~nF.zip" "%%~nF.cdg" "%%~nF.mp3" -sdel&POPD
GOTO :eof

 

This one extracts the contents of the zip file in to the current folder.  It will go through each subfolder & extract the zip contents.

@ECHO OFF
REM this file extracts loops through all subfolders & extracts the zip files to their repective directories

SET 7z="C:\Program Files\7-Zip\7z.exe"
SETLOCAL
FOR /R %%f IN (*.zip) DO CALL :process "%%f"
goto :eof

:process
REM pushd
"C:\Program Files\7-Zip\7z.exe" e %1 -o"%~dp1"

 

Edited by craigey1
extra info
  • Informative 1
  • Senior Administrator
Posted (edited)
On 1/24/2025 at 7:16 PM, Ninieblhz said:

 

Here you find all the KV and other references. Just type the title or artist.

 

This is the hidden content, please
ogDYLHL.png

 

So you are a spammer, yet you were able to hide yourself with other karaoke enthusiasts, biding your time, waiting for 100% post approval then spamming us. 

 

It's under further review.... All spammers found in this chat/thread will be removed...

 

ogDYLHL.png

Edited by _.:=iTake=:._
Retracted comments until further assessment
  • Like 7
  • Thanks 2
Posted
On 1/27/2025 at 6:12 PM, BJtheDJ said:

My GoTo programs for downloading from YouTube [Allavsoft] and [AnyVideo] are

no longer working.

 

Anybody got working suggestions ?? 

This is the hidden content, please
 limited number of downloads but works pretty well

  • Like 4
  • Thanks 1

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...
×
GloTorrents Community Forum
Home
Activities
Sign In
Search
More
×