Official Introduction from neo1691 - Community & Forums Related Discussions
Users browsing this thread: 2 Guest(s)
|
|||
shtols!! Hi!! That's the kind of welcome that really motivated me to write my own script. I used to download subtitle of tv shows using subliminal.
It's syntax was subliminal -l en -- video.mkv so I created a script to download the subtitiles for all the videos in the specified directory!! Although I could have used inotify for that. But nevertheless here it is!! #!/bin/sh # A script to use subliminal and download # subtitles in the directory passed as an # argument to the script if [ -z $1 ] then echo "usage fetchSubs.sh Path" fi for file in `ls *mkv` do subliminal -l en -- $file done Feel's good man!! |
|||
Messages In This Thread |
Official Introduction from neo1691 - by neo1691 - 25-08-2014, 06:31 AM
RE: Official Introduction from neo1691 - by z3bra - 25-08-2014, 06:45 AM
RE: Official Introduction from neo1691 - by neo1691 - 25-08-2014, 07:43 AM
RE: Official Introduction from neo1691 - by z3bra - 25-08-2014, 08:28 AM
RE: Official Introduction from neo1691 - by thetornainbow - 25-08-2014, 08:29 AM
RE: Official Introduction from neo1691 - by neo1691 - 25-08-2014, 10:26 AM
RE: Official Introduction from neo1691 - by shtols - 25-08-2014, 12:06 PM
RE: Official Introduction from neo1691 - by neo1691 - 25-08-2014, 02:07 PM
RE: Official Introduction from neo1691 - by xero - 26-08-2014, 12:58 AM
RE: Official Introduction from neo1691 - by neo1691 - 26-08-2014, 02:22 AM
|