1
0
mirror of https://github.com/l1ving/youtube-dl synced 2020-11-18 19:53:54 -08:00
2019-10-19 20:46:03 +02:00

13 lines
333 B
Python

from __future__ import unicode_literals
from .common import PostProcessor
class PrintFilePathPP(PostProcessor):
def __init__(self, downloader):
super(PrintFilePathPP, self).__init__(downloader)
def run(self, information):
self._downloader.to_stdout(information['filepath'])
return [], information