ffmpeg-python/ffmpeg/_utils.py
2017-07-12 01:18:48 -06:00

14 lines
329 B
Python

from builtins import str
def escape_chars(text, chars):
"""Helper function to escape uncomfortable characters."""
text = str(text)
chars = list(set(chars))
if '\\' in chars:
chars.remove('\\')
chars.insert(0, '\\')
for ch in chars:
text = text.replace(ch, '\\' + ch)
return text