Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
blender-addons-contrib
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
blender
blender-addons-contrib
Commits
1a2c5988
Commit
1a2c5988
authored
12 years ago
by
Campbell Barton
Browse files
Options
Downloads
Patches
Plain Diff
little render notify utility - gives a status popup when a render completes.
parent
83c254ad
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
render_notify.py
+83
-0
83 additions, 0 deletions
render_notify.py
with
83 additions
and
0 deletions
render_notify.py
0 → 100644
+
83
−
0
View file @
1a2c5988
# ***** BEGIN GPL LICENSE BLOCK *****
#
#
# 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, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# ***** END GPL LICENCE BLOCK *****
bl_info
=
{
"
name
"
:
"
Render Notify
"
,
"
author
"
:
"
Campbell Barton
"
,
"
version
"
:
(
0
,
0
,
1
),
"
blender
"
:
(
2
,
65
,
0
),
"
location
"
:
"
Uses desktop notify facilities
"
,
"
description
"
:
"
Notify when a rendered completes
"
,
"
warning
"
:
"
Currently only Linux/Unix supported (using
'
notify-send
'
)
"
,
"
wiki_url
"
:
"
http://wiki.blender.org/index.php/Extensions:2.6
"
"
/Py/Scripts/Render/Render_Notify
"
,
"
category
"
:
"
Render
"
}
# TODO. add Win/OSX support if possible.
import
bpy
import
time
from
bpy.app.handlers
import
persistent
from
datetime
import
timedelta
timer
=
[
0.0
]
def
clean_float
(
text
):
# strip trailing zeros: 0.000 -> 0.0
index
=
text
.
rfind
(
"
.
"
)
if
index
!=
-
1
:
index
+=
2
head
,
tail
=
text
[:
index
],
text
[
index
:]
tail
=
tail
.
rstrip
(
"
0
"
)
text
=
head
+
tail
return
text
@persistent
def
render_begin
(
scene
):
timer
[
0
]
=
time
.
time
()
@persistent
def
render_complete
(
scene
):
import
os
import
shlex
time_val
=
round
(
time
.
time
()
-
timer
[
0
],
2
)
time_str
=
clean_float
(
str
(
timedelta
(
seconds
=
time_val
)))
file_str
=
os
.
path
.
basename
(
bpy
.
data
.
filepath
)
msg
=
"
%s render complete in %s
"
%
(
file_str
,
time_str
)
os
.
system
(
"
notify-send --app-name=Blender --icon=blender %s
"
%
shlex
.
quote
(
msg
))
def
register
():
bpy
.
app
.
handlers
.
render_complete
.
append
(
render_complete
)
bpy
.
app
.
handlers
.
render_pre
.
append
(
render_begin
)
def
unregister
():
bpy
.
app
.
handlers
.
render_complete
.
remove
(
render_complete
)
bpy
.
app
.
handlers
.
render_pre
.
remove
(
render_begin
)
if
__name__
==
'
__main__
'
:
register
()
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment