~ubuntu-branches/ubuntu/saucy/gnash/saucy-proposed

« back to all changes in this revision

Viewing changes to desktop/gnash-thumbnailer.in

  • Committer: Package Import Robot
  • Author(s): Micah Gersten
  • Date: 2012-03-04 03:19:06 UTC
  • mfrom: (1.1.18) (3.1.24 sid)
  • Revision ID: package-import@ubuntu.com-20120304031906-p6q5rnb0xhgpof7o
Tags: 0.8.10-3ubuntu1
* Merge from Debian testing (FFe: LP: #940876), remaining changes:
  - Use mozilla-flashplugin as the alternative for now
  - Change xulrunner-dev build dep to firefox-dev
* Drop the plugin API porting patch, this has been fixed upstream
  - drop debian/patches*
* Drop the following change as we want Adobe's player to take priority
  if it's installed
  - Set alternative priority to 50 so that it matches Adobe Flash's priority

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
#
 
4
# gnash-thumbnailer :  script to produce thumbnails for SWF files
 
5
#
 
6
#   Copyright (C) 2011 Free Software Foundation, Inc.
 
7
#
 
8
# This program is free software; you can redistribute it and/or modify
 
9
# it under the terms of the GNU General Public License as published by
 
10
# the Free Software Foundation; either version 3 of the License, or
 
11
# (at your option) any later version.
 
12
#
 
13
# This program is distributed in the hope that it will be useful,
 
14
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
# GNU General Public License for more details.
 
17
#
 
18
# You should have received a copy of the GNU General Public License
 
19
# along with this program; if not, write to the Free Software
 
20
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
21
#
 
22
 
 
23
 
 
24
test -n "$2" || {
 
25
    echo "Usage: $0 <input> <output> [<pixels>]" >&2
 
26
    exit 1
 
27
}
 
28
 
 
29
in=$1 && shift
 
30
out=$1 && shift 
 
31
test -n "$1" && size=$1 && shift || size=128
 
32
 
 
33
player=@@BINDIR@@/dump-gnash
 
34
 
 
35
#echo ${in} ${out} ${size} 
 
36
 
 
37
# TODO: 
 
38
#  - security:
 
39
#    - forbid loads
 
40
#    - forbid using shared memory (LocalConnection)
 
41
#    - forbid writing SharedObjects
 
42
#    - reduce AS timeouts
 
43
#  - correctness:
 
44
#    - use size !
 
45
#
 
46
export GNASHRC=${GNASHRC}:@@SYSCONFDIR@@/gnashthumbnailrc
 
47
${player} --screenshot last --screenshot-file ${out} ${in} \
 
48
    --max-advances=100 --timeout=100 --width=${size} --height=${size} \
 
49
    -r1 \
 
50
    > /dev/null 2>&1