VideoHelp Forum
+ Reply to Thread
Results 1 to 13 of 13
Thread
  1. Hello Everyone

    I have problem that i wanna select any lines with xml and between " " like this " .xml" in one time
    because if i will do it in normal way which is select lines one by one to download the subtitled it will be very Difficult so i need other ways


    https://ibb.co/gQvrBR

    https://imgur.com/DosDlQS

    The file to try on it
    https://files.fm/u/cc8hvza4

    And if any could download any video or sound please tell me how and thank you
    Last edited by hackxing; 31st Dec 2017 at 13:38.
    Quote Quote  
  2. Maybe better way would be to look for text between: 'streamingUrl":"' and then '.xml"'
    I'm sure there are oop script languages you can do it with, not sure how Windows Batch Script would handle it. Better to use some more advanced language.
    You might start with Python and using YouTube tutorials, key words like , Python3, web scraping, web crawling - not sure exactly
    Quote Quote  
  3. Member Bernix's Avatar
    Join Date
    Apr 2016
    Location
    Europe
    Search Comp PM
    Don't know if that helps, but in Pspad you can search for xml and then select list. The problem with file you provided is without line break. So if you have ordinary html text it filters out each line with containing xml. Also it make html links visible. If you search for links, CTRL+F, then explanation mark and here you can search for url, for string between "" for Tags or what you want. If you choose list, it shows you all results in sub window.

    Bernix
    Quote Quote  
  4. CTRL+F, then explanation mark and here you can search for url, This is what i did but when i have 533 url it will be very Difficult to select lines one by one to download the subtitled
    Last edited by hackxing; 31st Dec 2017 at 13:45.
    Quote Quote  
  5. and in this website more than 6000 subtitled which is not in any other website so i need the faster way to download
    Quote Quote  
  6. Member Bernix's Avatar
    Join Date
    Apr 2016
    Location
    Europe
    Search Comp PM
    When you choose a LIST there you get all links in pretty readable file...

    Bernix
    Quote Quote  
  7. how i can choose a LIST there you get all links in pretty readable file...
    Quote Quote  
  8. this is the link from website

    https://api.aws.playco.com/api/v0.2/mediaCatalog/titles/series/51280936226

    i try to make list but i couldn't
    Quote Quote  
  9. any one
    Quote Quote  
  10. ??????
    Quote Quote  
  11. Member
    Join Date
    Aug 2010
    Location
    San Francisco, California
    Search PM
    You will need a regular expression with recursion to match the balanced curly braces that begin {"id" and have xml somewhere inside. Beyond my casual regex ability. Maybe a wizard will come along and help you.
    Quote Quote  
  12. I hope that
    Quote Quote  
  13. Maybe one of these works:

    With quotation marks:
    Code:
    "[^"]+?\.xml"
    Without quotation marks, if it's always a link:
    Code:
    http[^"]+?\.xml
    Without quotation marks, if the search engine supports regex with look behind and look ahead:
    Code:
    (?<=")[^"]+?\.xml(?=")
    https://regex101.com/r/pn6eCV/1
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!