Diff
Differences From Artifact [24f167ca4e]:
- File action.py — part of check-in [5994cb76a9] at 2016-12-09 18:37:51 on branch trunk — Support for %% escaping. (user: mario, size: 28351) [annotate] [blame] [check-ins using]
To Artifact [476ab89429]:
- File action.py — part of check-in [10d20f4306] at 2016-12-10 17:54:09 on branch trunk — Add statusbar message when converting (user: mario, size: 28402) [annotate] [blame] [check-ins using]
295 296 297 298 299 300 301 302 303 304 305 306 307 308 | 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 | + | # Reuse tempoary files? if local_file and conf.reuse_m3u and os.path.exists(tmp_fn(row, dest)): log.STAT("reuse temporary filename") return [tmp_fn(row, dest)] # Retrieve from URL main.status("Converting " + url, timeout=0.95) (mime, cnt) = http_probe_get(url) # Leave streaming server as is if mime == "srv": cnt = "" return [url] |