You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
First of all I have to congratulate you for nice initiative of this project. I hope that your project grows more and more.
I Was testing the program and I found some mandatory dependencies
They are:
ffmpeg
chromium-browser
Let me explain why.
ffmpeg provides "ffprobe" and chromium-browser prevents this error:
tiago at Main-PC in ~/Music
↪ llamedl -u "https://www.youtube.com/watch?v=jFoMK49H0Oc"
Traceback (most recent call last):
File "/usr/local/bin/llamedl", line 11, in <module>
load_entry_point('LlameDL==0.1.0', 'console_scripts', 'llamedl')()
File "/usr/local/lib/python3.6/dist-packages/LlameDL-0.1.0-py3.6.egg/llamedl/LLameDL.py", line 73, in main
llamedl.main()
File "/usr/local/lib/python3.6/dist-packages/LlameDL-0.1.0-py3.6.egg/llamedl/LLameDL.py", line 33, in main
self.chrome = IChrome(bookmarks_path)
File "/usr/local/lib/python3.6/dist-packages/LlameDL-0.1.0-py3.6.egg/llamedl/ichrome.py", line 22, in __init__
self.bookmarks = bookmarks_path
File "/usr/local/lib/python3.6/dist-packages/LlameDL-0.1.0-py3.6.egg/llamedl/ichrome.py", line 34, in bookmarks
with open(bookmarks_path) as json_data:
FileNotFoundError: [Errno 2] No such file or directory: '/home/tiago/.config/chromium/Default/Bookmarks'
But it have some things to do. To generate the Bookmarks file we need to do a process. Follow this how to:
Install 'chromium-browser' on your Linux distribution
Open chromium-browser
Add a bookmark
With this, you'll generate the bookmark file
When I was typing this issue, I discovered something. If you do not want to include Chromium Browser as a dependency to your program on do that process above, just provide Bookmarks file at this location:
$HOME/.config/chromium/Default/
and the program should work fine.
Here is an example of Bookmarks file:
Hi,
First of all I have to congratulate you for nice initiative of this project. I hope that your project grows more and more.
I Was testing the program and I found some mandatory dependencies
They are:
ffmpeg
chromium-browser
Let me explain why.
ffmpeg provides "ffprobe" and chromium-browser prevents this error:
But it have some things to do. To generate the Bookmarks file we need to do a process. Follow this how to:
With this, you'll generate the bookmark file
When I was typing this issue, I discovered something. If you do not want to include Chromium Browser as a dependency to your program on do that process above, just provide Bookmarks file at this location:
and the program should work fine.
Here is an example of Bookmarks file:
Hope this helps. Thank you, and Keep Developing!!
The text was updated successfully, but these errors were encountered: