forked from vdcrim/AvsP-macros
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Insert Trims from bookmarks (single-line).py
47 lines (36 loc) · 1.5 KB
/
Insert Trims from bookmarks (single-line).py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# -*- coding: utf-8 -*-
"""
Insert a line of Trims, based on the video frame bookmarks, at the
current cursor position of the Avisynth script in the current tab.
Date: 2012-09-11
Latest version: https://github.com/vdcrim/avsp-macros
Doom9 Forum thread: http://forum.doom9.org/showthread.php?t=163653
Changelog:
- check if there's bookmarks
- let the user cancel if there's an odd number of bookmarks
- fix Python 2.6 compatibility
Copyright (C) 2011 Diego Fernández Gosende <[email protected]>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program. If not, see <http://www.gnu.org/licenses/gpl-2.0.html>.
"""
# run in thread
bm_list = avsp.GetBookmarkList()
if not bm_list:
avsp.MsgBox(_('There is not bookmarks'), _('Error'))
return
bm_list.sort()
trims = ''
for i, bm in enumerate(bm_list):
if i%2:
trims += 'Trim({0},{1})++'.format(bm_list[i - 1], bm)
if not i%2 and not avsp.MsgBox(_('Odd number of bookmarks'), _('Warning'), True):
return
avsp.InsertText(trims[:-2], pos=None)