Skip to content

Instantly share code, notes, and snippets.

@vdcrim
Created February 8, 2014 03:40
Show Gist options
  • Save vdcrim/8876379 to your computer and use it in GitHub Desktop.
Save vdcrim/8876379 to your computer and use it in GitHub Desktop.
For AvsPmod posterior to v2.5.1 + ffms2 + utf8
import sys
sys_encoding = sys.getfilesystemencoding()
if sys_encoding != 'utf8':
text = avsp.GetSelectedText()
if text:
text = text.encode('utf8').decode(sys_encoding)
avsp.InsertText(text, pos=None)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment