
download_tvsubtitles.net
Source (link to git-repo or to original if based on someone elses unmodified work): Add the source-code for this project on opencode.net
This is a service menu to download subtitles from tvsubtitles.net
just right click on a video file -> scripts -> download_subtitles.net, it will show you a list of subtitles select one and it will be downloaded and saved with the same name as the video (with a subtitle extension of course), so your player will detect automatically the subtitle
The search is done extracting the name season and episode from the filename. At the moment only supports those formats:
s01e01
1x01
I tried to contact tvsubtitles.net but got no feedback, hope this is ok for them
Install: copy the file to ~/.gnome2/nautilus-scripts
then:
chmod 755 ~/.gnome2/nautilus-scripts/download_tvsubtitles.net.py
(thanks ozky)
- Dependencies:
python
wget
zenity
You could also be interested in another script I made for opensubtitles.org:
http://gnome-look.org/content/show.php/download_opensubtitle?content=68085
12 years ago
* updated due to changes in tvsubtitles.net web
12 years ago
* updated due to changes in tvsubtitles.net web
vbsampath
11 years ago
Report
vbsampath
11 years ago
I could get the subtitles list but everytime it says that subtitle cannot be downloaded or something related to it ..
after some work around I think that error is something within these lines of code
link = url + "download-" + links[j][10:]
subName = origFileName[:-3] + "srt"
response = os.system("wget -O - \"" + link + "\" |zcat > " + subName )
if you can please make this working many would be benifited ..or else if you have perfectly working script then upload it here
Report
ozky
12 years ago
chmod 755 ~/.gnome2/nautilus-scripts/download_tvsubtitles.net.py
and then killall nautilus
now your script is working
this command is giving rights nautilus to run scripts and need to every time use this when install new script
script maker need to put this to install guide in this page
Report
ozky
12 years ago
copy file to nautilus script directory
Report
troseph
12 years ago
Report