This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: plat-mac videoreader.py auido format info
Type: Stage:
Components: macOS Versions: Python 2.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: ronaldoussoren Nosy List: ronaldoussoren, ryaowe
Priority: normal Keywords:

Created on 2007-01-04 16:18 by ryaowe, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg30917 - (view) Author: Ryan Owen (ryaowe) Date: 2007-01-04 16:18
videoreader.py in the plat-mac modules has a small bug that breaks reader.GetAudioFormat()

--- videoreader.py	Thu Jan 04 09:05:16 2007
+++ videoreader_fixed.py	Thu Jan 04 09:05:11 2007
@@ -13,7 +13,7 @@ from Carbon import Qdoffs
 from Carbon import QDOffscreen
 from Carbon import Res
 try:
-    import MediaDescr
+    from Carbon import MediaDescr
 except ImportError:
     def _audiodescr(data):
         return None
msg78805 - (view) Author: Ronald Oussoren (ronaldoussoren) * (Python committer) Date: 2009-01-02 14:48
Fixd in r68159
History
Date User Action Args
2022-04-11 14:56:21adminsetgithub: 44408
2009-01-02 14:48:34ronaldoussorensetstatus: open -> closed
resolution: fixed
messages: + msg78805
2007-01-04 16:18:40ryaowecreate