Public bug reported:

I made simple python program that uses VideoWriter and VP8 codec for
output into webm format, but it doesn't create anything. If I try
different format ("THEO" and *.ogv for example), it works. Try this
simple python program:

import cv2
from numpy import *

a = zeros((768, 1024, 3), dtype=uint8)
b = ones((768, 1024, 3), dtype=uint8)
vw = cv2.VideoWriter("out.webm", cv2.cv.CV_FOURCC(*"VP80"), 24, (1024, 768), 1)

for x in xrange(256):
    vw.write(a)
    a = a + b

It finishes without error, but out.webm file doesn't exist.

** Affects: opencv (Ubuntu)
     Importance: Undecided
         Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1206876

Title:
  VP8 output with VideoWriter in python doesn't work

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/opencv/+bug/1206876/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to