ksk778 Posted January 28 Report Posted January 28 On 1/27/2025 at 9:51 PM, 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 Sign In or Sign Up And the lyrics can be found here: This is the hidden content, please Sign In or Sign Up Thank you in advance! Expand 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 Sign In or Sign Up 22 1
Tony da Ink Posted January 28 Report Posted January 28 On 1/27/2025 at 4:12 PM, BJtheDJ said: My GoTo programs for downloading from YouTube [Allavsoft] and [AnyVideo] are no longer working. Anybody got working suggestions ?? Expand I use clipgrab, its pretty good and free, u can download in different formats, works great !!! @BJtheDJ
rickane Posted January 28 Report Posted January 28 On 1/28/2025 at 2:22 PM, 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 Sign In or Sign Up Expand @ksk778This is exactly what I needed! It is perfect! Thank you! 4 1 1
craigey1 Posted January 28 Report Posted January 28 (edited) On 1/27/2025 at 4:12 PM, BJtheDJ said: My GoTo programs for downloading from YouTube [Allavsoft] and [AnyVideo] are no longer working. Anybody got working suggestions ?? Expand 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 Sign In or Sign Up 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 January 28 by _.:=iTake=:._ Added syntax highlighting 3 1 1
Superior Administrator _.:=iTake=:._ Posted January 28 Superior Administrator Report Posted January 28 @craigey1 you need to put shell commands like that in code.. 2
craigey1 Posted January 28 Report Posted January 28 (edited) Ok, happy to do that, but I can't edit my post. Edited January 28 by craigey1 typo
Superior Administrator _.:=iTake=:._ Posted January 28 Superior Administrator Report Posted January 28 On 1/28/2025 at 3:51 PM, craigey1 said: Expand not everyone is tech-savvy, most will not have the time to do what you said but thanks for sharing anyways... 1
craigey1 Posted January 28 Report Posted January 28 (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. Expand 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 January 28 by craigey1 extra info 1
Superior Administrator _.:=iTake=:._ Posted January 28 Superior Administrator Report Posted January 28 (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 Sign In or Sign Up Expand 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... Edited January 28 by _.:=iTake=:._ Retracted comments until further assessment 7 2
Gazza1 Posted January 28 Report Posted January 28 On 1/27/2025 at 4:12 PM, BJtheDJ said: My GoTo programs for downloading from YouTube [Allavsoft] and [AnyVideo] are no longer working. Anybody got working suggestions ?? Expand This is the hidden content, please Sign In or Sign Up limited number of downloads but works pretty well 4 1
drphunn Posted January 29 Report Posted January 29 On 1/29/2025 at 2:29 AM, sacot1 said: Whatever this is i can't access it??? Expand Pretty sure it was a joke about the spam and a request for link descriptions rolled into one
anzsdad1973 Posted January 29 Report Posted January 29 Hi, superstars! Thanks to many of you amazing people I have recently been able to locate some tracks I did not think I would ever be able to perform on my karaoke stage. I haven't been this excited to perform in quite some time, to be honest. That being said, there are a few tracks I would love to locate, so I am going to drop a list here. If anyone has a line on decent copies of these songs, my gratitude would be nearly boundless! By the way, this is my first post so if I overstep, have missed an obvious way to look these up myself, or if there is any additional info required, please let me know. And thanks again! Gowan (AKA Lawrence Gowan, AKA Larry Gowan) Moonlight Desires All The Lovers In The World When There's Time (For Love) Love Makes You Believe Out Of A Deeper Hunger Message From Heaven Leonard Cohen Democracy Marty Robbins Love Is Blue Don Henley Everything Is Different Now They're Not Here, They're Not Coming David Gilmour Murder Mark Knopfler What It Is Speedway At Nazareth Golden Heart Cat Stevens I've Got A Thing About Seeing My Grandson Grow Old 3
leenew Karaoke Posted January 29 Report Posted January 29 Hi, Does anyone have a good copy of Sunfly World Stars 124 - SFWS124 - Frank Sinatra? My copy has dodgy graphics. If you check "Let me try again", the graphics start going weird just after 2 minutes 46 seconds.... Other songs have problems too. Cheers! Lee.
Sharkie Posted January 29 Report Posted January 29 On 1/29/2025 at 9:10 AM, leenew Karaoke said: Hi, Does anyone have a good copy of Sunfly World Stars 124 - SFWS124 - Frank Sinatra? My copy has dodgy graphics. If you check "Let me try again", the graphics start going weird just after 2 minutes 46 seconds.... Other songs have problems too. Cheers! Lee. Expand Hi Lee Hopefully this is version of SFWS124 is better quality [320] This is the hidden content, please Sign In or Sign Up Enjoy 12
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now