LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 09-19-2021, 09:41 AM   #1
andrewysk
Member
 
Registered: Mar 2020
Posts: 797

Rep: Reputation: Disabled
clipgrab downloaded successfully, but where my files goes ?


I have downloaded a video from youtube using clipgrab, it said successfully downloaded.. but when i want to look for it, it said file not found. What happened ? is there anywhere i can find log or live log on clipgrab activity log ?

The attached photo is the clipgrab that says downloaded successfully. I downloaded it to desktop, but i just can't find it in desktop folder.

Where is log or activity logged of clipgrab, at which point the downloaded file was removed or what happened.. why the downloaded file is gone ?

*If it is required, i am using manjaro kde , but this should be not relevant to what happned*.
Click image for larger version

Name:	qo9t43c.png
Views:	146
Size:	71.2 KB
ID:	37237
 
Old 09-19-2021, 07:26 PM   #2
computersavvy
Senior Member
 
Registered: Aug 2016
Posts: 3,345

Rep: Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484
Downloads usually are placed in the Downloads folder unless you have directed it elsewhere.
Try looking around a little bit because they are seldom placed directly on the desktop.
 
Old 09-19-2021, 07:47 PM   #3
enigma9o7
Senior Member
 
Registered: Jul 2018
Location: Silicon Valley
Distribution: Bodhi Linux
Posts: 1,388

Rep: Reputation: 560Reputation: 560Reputation: 560Reputation: 560Reputation: 560Reputation: 560
If you know the filename, try
Code:
find ~/ -name filename
 
Old 09-22-2021, 12:06 AM   #4
watchingu
Member
 
Registered: Oct 2017
Location: USA
Distribution: Arch Linux, Debian Stable, Debian Unstable
Posts: 73

Rep: Reputation: 17
Check the preferences under ClipGrab and see if there's an option to set a folder where files are downloaded to. Wow, I learned something today...ClipGrab. I'm a youtube-dl fan, but it's nice to know about another option.

Last edited by watchingu; 09-22-2021 at 12:08 AM.
 
1 members found this post helpful.
Old 12-06-2021, 09:42 AM   #5
andrewysk
Member
 
Registered: Mar 2020
Posts: 797

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by watchingu View Post
Check the preferences under ClipGrab and see if there's an option to set a folder where files are downloaded to. Wow, I learned something today...ClipGrab. I'm a youtube-dl fan, but it's nice to know about another option.
I hope you are having fun with clibgrab .. lol
Clibgrab is using youtube-dl cli command itself to download from youtube.
However, youtube have initiated an algorithm to throttle "youtube-dl cli" hence clipgrab also being affected.. Lately download youtube video is way way slower then watch it online in browser.
 
Old 12-06-2021, 09:43 AM   #6
andrewysk
Member
 
Registered: Mar 2020
Posts: 797

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by enigma9o7 View Post
If you know the filename, try
Code:
find ~/ -name filename
the file name is too long for me to type it out at find command.
Never mind already.
thx
 
Old 12-06-2021, 10:19 AM   #7
enigma9o7
Senior Member
 
Registered: Jul 2018
Location: Silicon Valley
Distribution: Bodhi Linux
Posts: 1,388

Rep: Reputation: 560Reputation: 560Reputation: 560Reputation: 560Reputation: 560Reputation: 560
Quote:
Originally Posted by andrewysk View Post
the file name is too long for me to type it out at find command.
Never mind already.
thx
Code:
find ~/ | grep part-of-filename-you-can-type
 
1 members found this post helpful.
Old 12-06-2021, 10:36 AM   #8
boughtonp
Senior Member
 
Registered: Feb 2007
Location: UK
Distribution: Debian
Posts: 3,616

Rep: Reputation: 2554Reputation: 2554Reputation: 2554Reputation: 2554Reputation: 2554Reputation: 2554Reputation: 2554Reputation: 2554Reputation: 2554Reputation: 2554Reputation: 2554
Quote:
Originally Posted by andrewysk View Post
However, youtube have initiated an algorithm to throttle "youtube-dl cli" hence clipgrab also being affected..
A workaround is to use yt-dlp.

It's not exactly the same, but running it as "yt-dlp --compat-options youtube-dl ..." should be the same as "youtube-dl ..." and thus might allow Clipgrab to continue doing whatever it does without the throttling.

 
1 members found this post helpful.
Old 12-06-2021, 01:58 PM   #9
andrewysk
Member
 
Registered: Mar 2020
Posts: 797

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by boughtonp View Post
A workaround is to use yt-dlp.

It's not exactly the same, but running it as "yt-dlp --compat-options youtube-dl ..." should be the same as "youtube-dl ..." and thus might allow Clipgrab to continue doing whatever it does without the throttling.

Thanks for telling.

I also have read that aria2 can make clibgrap overcome throttling.. downloaded it, but still learning how to use it.

BTW, I don't understand this that you said:
Since clibgrab is programmed to use youtube-dl to download .. how does it "switch" from default "youtube-dl" to "yt-dlp" ? I only heard about this cli now , from you. no idea how to make it work with clibgrab.
 
Old 12-06-2021, 03:49 PM   #10
enigma9o7
Senior Member
 
Registered: Jul 2018
Location: Silicon Valley
Distribution: Bodhi Linux
Posts: 1,388

Rep: Reputation: 560Reputation: 560Reputation: 560Reputation: 560Reputation: 560Reputation: 560
first get the real youtube-dl out of your path (uninstall it)

you could either simlink youtube-dl directly to yt-dlp, or create a "youtube-dl" script to use that compat option switch to be 100% sure it does it right and put it in your path.

i.e.
Code:
sudo ln -s /path/to/yt-dlp /usr/local/bin/youtube-dl
 
1 members found this post helpful.
Old 12-07-2021, 12:52 PM   #11
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
Quote:
Originally Posted by andrewysk View Post
the file name is too long for me to type it out at find command.
Quote:
Originally Posted by enigma9o7 View Post
Code:
find ~/ | grep part-of-filename-you-can-type
Ahem.
Code:
find ~/ -name '*part-of-filename-you-can-type*'
Maybe even use -iname.
 
1 members found this post helpful.
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
ClipGrab 3.8.10 opens Ephoto instead of target folder Snugbug Bodhi 2 05-02-2020 07:19 AM
[SOLVED] Cannot get ClipGrab appimages to work. linustalman Linux - Software 4 11-21-2018 02:27 PM
clipgrab installing on opensuse 12.3 - HowTo sayhello_to_the_world Linux - Newbie 0 06-22-2013 02:46 AM
How to run clipgrab? rjs1943 Linux - Newbie 1 09-17-2012 09:42 PM
LXer: ClipGrab - Download videos from online video sharing websites LXer Syndicated Linux News 0 01-20-2009 12:20 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 08:52 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration