Open GoogleCodeExporter opened 8 years ago
No crash on OS X with 1.1.3, AVbin 5.
Original comment by Alex.Hol...@gmail.com
on 29 Mar 2009 at 8:43
Getting a traceback on linux with 1.2dev
Traceback (most recent call last):
File "videoseek.py", line 11, in <module>
playerVideo.seek(.5)
File "/home/pyalot/development/pyglet/pyglet/media/__init__.py", line 1046, in seek
self._audio_player.clear()
AttributeError: 'NoneType' object has no attribute 'clear'
Original comment by pyalot@gmail.com
on 15 Aug 2009 at 6:10
I'm pretty sure the bug described by pyalot is an unrelated issue (occurs on
OSX with 1.2dev, fixed in r2462).
Original comment by m.e.w.ol...@gmail.com
on 16 Aug 2009 at 4:09
Now when seeking no video is being played (black display). Commenting out the
seek,
the video plays.
Original comment by pyalot@gmail.com
on 17 Aug 2009 at 7:49
Attachments:
Original comment by benjamin...@gmail.com
on 20 Aug 2009 at 2:07
Addition, 5 years later
Description:
After calling .seek() on a video file (mpeg4) the application crashes with
SIGSEGV (Address boundary error).
Code:
fname = '/full_path/asdf.mp4'
offset = 74.0
video_src = pig.media.load(video_fname)
player = pig.media.Player()
player.queue(video_src)
player.seek(offset)
player.play()
Without the seek the video plays normally (although without sound, but it's not
important for this bug).
System:
Ubuntu 14.04 x86_64
Python 2.7.6
Pyglet 1.1.4 (via Ubuntu's synaptic distribution)
pyglet.options = {'audio': ('directsound', 'openal', 'alsa', 'silent'),
'debug_font': False,
'debug_gl': True,
'debug_gl_trace': False,
'debug_gl_trace_args': False,
'debug_graphics_batch': False,
'debug_lib': False,
'debug_media': False,
'debug_texture': False,
'debug_trace': False,
'debug_trace_args': False,
'debug_trace_depth': 1,
'debug_trace_flush': True,
'debug_win32': False,
'debug_x11': False,
'font': ('gdiplus', 'win32'),
'graphics_vbo': True,
'shadow_window': True,
'vsync': None,
'xsync': True}
Original comment by racami...@gmail.com
on 20 Oct 2014 at 2:03
Original issue reported on code.google.com by
benjamin...@gmail.com
on 29 Mar 2009 at 7:31