mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-05 20:11:11 +08:00
11 lines
302 B
Python
11 lines
302 B
Python
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
|