Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
63b74feb
Kaydet (Commit)
63b74feb
authored
Ock 02, 2009
tarafından
Ronald Oussoren
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix for issue 900949
üst
0238497e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
11 deletions
+12
-11
videoreader.py
Lib/plat-mac/videoreader.py
+9
-11
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/plat-mac/videoreader.py
Dosyayı görüntüle @
63b74feb
...
...
@@ -238,12 +238,12 @@ class _Reader:
width
=
self
.
videodescr
[
'width'
]
height
=
self
.
videodescr
[
'height'
]
start
=
0
rv
=
''
rv
=
[]
for
i
in
range
(
height
):
nextline
=
Qdoffs
.
GetPixMapBytes
(
self
.
pixmap
,
start
,
width
*
4
)
start
=
start
+
rowbytes
rv
=
rv
+
nextline
return
rv
rv
.
append
(
nextline
)
return
''
.
join
(
rv
)
def
reader
(
url
):
try
:
...
...
@@ -255,9 +255,9 @@ def reader(url):
def
_test
():
import
EasyDialogs
try
:
import
img
from
PIL
import
Image
except
ImportError
:
img
=
None
Image
=
None
import
MacOS
Qt
.
EnterMovies
()
path
=
EasyDialogs
.
AskFileForOpen
(
message
=
'Video to convert'
)
...
...
@@ -277,13 +277,11 @@ def _test():
fname
=
'frame
%04.4
d.jpg'
%
num
num
=
num
+
1
pname
=
os
.
path
.
join
(
dstdir
,
fname
)
if
not
img
:
print
'Not'
,
if
not
Image
:
print
'Not'
,
print
'Writing
%
s, size
%
dx
%
d,
%
d bytes'
%
(
fname
,
imgw
,
imgh
,
len
(
data
))
if
img
:
wrt
=
img
.
writer
(
imgfmt
,
pname
)
wrt
.
width
=
imgw
wrt
.
height
=
imgh
wrt
.
write
(
data
)
if
Image
:
img
=
Image
.
fromstring
(
"RGBA"
,
(
imgw
,
imgh
),
data
)
img
.
save
(
pname
,
'JPEG'
)
timestamp
,
data
=
rdr
.
ReadVideo
()
MacOS
.
SetCreatorAndType
(
pname
,
'ogle'
,
'JPEG'
)
if
num
>
20
:
...
...
Misc/NEWS
Dosyayı görüntüle @
63b74feb
...
...
@@ -227,6 +227,9 @@ Library
- Issue #1594: MacOS.GetCreatorAndType now always returns a big-endian result,
to be consistent with Apple tools.
- Issue #900949: plat-mac/videoreader.py no longer relies on a non-existing
module.
Tools/Demos
-----------
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment