Changeset 2244
- Timestamp:
- 2006-05-11 12:15:33 (3 years ago)
- Files:
-
- annoamp/trunk/annoamp.py (modified) (2 diffs)
- annoamp/trunk/anxplayer.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
annoamp/trunk/annoamp.py
r2243 r2244 269 269 #the volume property ranges from 0-4 270 270 player.playbin.props.volume = xml.get_widget("volume_scale").get_value()*4/100 271 print "setting volume to: ",player.playbin.props.volume272 271 273 272 def format_time(time): … … 325 324 326 325 def open_URL(widget): 327 webbrowser.open(player.tag_info_list[player.current].clip_info[player.pos].props.anchor_ href)326 webbrowser.open(player.tag_info_list[player.current].clip_info[player.pos].props.anchor_uri) 328 327 329 328 def get_history(): annoamp/trunk/anxplayer.py
r2243 r2244 16 16 #along with this program; if not, write to the Free Software 17 17 #Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 18 18 import pygst 19 pygst.require ("0.10") 19 20 import types 20 21 import gobject … … 203 204 204 205 result = fake.set_state (gst.STATE_PLAYING) 205 #else:206 # self.tag_info_list.append([])207 # self.on_file_added(filename, [])208 # return209 206 210 207 def play(self):