Advertisement
Guest User

Untitled

a guest
Nov 25th, 2015
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. // Example
  2. // URL: http://uptobox.com/6f871tvewr7z
  3. // Original Filename: Last.Man.Standing.US.S05E01.480p.HDTV.X264-mRs.mkv
  4. // Cleaned Filename: Last Man Standing US S05E01.mkv
  5.  
  6. var fullPath = link.getDownloadPath();
  7. var fullName = link.getName();
  8. var fileType = getPath(link.getDownloadPath()).getExtension();
  9. var extLength = fileType.length + 1;
  10. var fileName = fullName.substring(0, fullName.length - extLength);
  11. var cleanName = fileName.replace(/480p|HDTV|-mrs|x264/gi, '').replace(/\.|_/g, ' ');
  12.  
  13. link.setName(cleanName.trim() + "." + fileType);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement