search for: theora_encoder

Displaying 8 results from an estimated 8 matches for "theora_encoder".

Did you mean: theora_encode
2011 Jan 21
1
theora_encode is adding vertical pixels
I am using theora_encode along with ffmpeg: ffmpeg -an -s 1920x1080 -r 24 -i bigbuckbunny.mp4 -vcodec rawvideo \ -pix_fmt yuv420p -f rawvideo - 2>/dev/null \ | ffmpeg -an -f rawvideo -s 1920x1080 -r 24 -i - -f yuv4mpegpipe - 2>/dev/null \ |* theora_encode /dev/stdin 2>/dev/null *| ffmpeg -y -f ogg -i - \ -f mp4 -i bigbuckbunny.mp4 -map 0:0 -map 1:1 -vcodec copy \ -acodec libvorbis -ab
2005 Jul 15
0
Tips for theora encoding?
...stream.yuv Any suggestions on how to improve this? In order to test I'm making available the LiVES video file (which is essentially a .tgz of the PNG images): http://lives.reimeika.ca/cvs/swath.lv1 To encode this you can download the LiVES theora encoder plugin: http://lives.reimeika.ca/cvs/theora_encoder.py and copy it into an empty directory (make sure it's executable). Move swath.lv1 into that same directory and run: ./theora_encoder.py -v -o swath.ogg -a 3 -t hi -L swath.lv1 This will create "swath.ogg". In order to see what the uncomporessed movie looks like you can run (in tha...
2005 Jul 15
0
Theora encoding tips
...stream.yuv Any suggestions on how to improve this? In order to test I'm making available the LiVES video file (which is essentially a .tgz of the PNG images): http://lives.reimeika.ca/cvs/swath.lv1 To encode this you can download the LiVES theora encoder plugin: http://lives.reimeika.ca/cvs/theora_encoder.py and copy it into an empty directory (make sure it's executable). Move swath.lv1 into that same directory and run: ./theora_encoder.py -v -o swath.ogg -a 3 -t hi -L swath.lv1 This will create "swath.ogg". In order to see what the uncomporessed movie looks like you can run (in tha...
2006 Dec 19
0
Choppy video with alpha7
Hello, I use my system for time-shifting local TV and I usually re-encode the capture card's MPEG2 into theora to create much smaller files. However since upgrading from alpha 5 to alpha 7 I can no longer do this. The problem seems that the bit rates are too high and the resulting files are unplayable (tried mplayer, vlc, and theora_play). I've built the alpha7 libtheora rpm (using the
2005 Aug 24
1
Testing libtheora-1.0alpha5
...stream.yuv Any suggestions on how to improve this? In order to test I'm making available the LiVES video file (which is essentially a .tgz of the PNG images): http://lives.reimeika.ca/cvs/swath.lv1 To encode this you can download the LiVES theora encoder plugin: http://lives.reimeika.ca/cvs/theora_encoder.py and copy it into an empty directory (make sure it's executable). Move swath.lv1 into that same directory and run: ./theora_encoder.py -v -o swath.ogg -a 3 -t hi -L swath.lv1 This will create "swath.ogg". In order to see what the uncomporessed movie looks like you can run (in tha...
2006 Aug 28
3
ogg movie out of png pics
Hi, I would like to create a movie out of a lot of png files. Using mencode I would do have something similar to mencoder "mf://*.png" -mf type=png:fps=5 -vf spp,scale -ovc lavc -o output.avi but I want to have an ogg format. I.e. an ogg movie How to do it? convert can convert the pngs to an mpg but not to an ogg! convert: unable to open module file
2007 Oct 13
1
Fwd: [sugar] video encoding
Hi, Is anyone able to help Mr Stoner? -Ivo ---------- Forwarded message ---------- From: Ed Stoner <ed@whsd.net> Date: Oct 9, 2007 5:32 PM Subject: [sugar] video encoding To: sugar@lists.laptop.org I would like to provide the functionality of a "video export" from within an activity I am working on. I'm starting with a png for each frame of the video and would like to do
2003 Mar 18
6
bitstream changes
ok now I see why we need another packet in the header. The first one is basically for ID purposes (theora_decode_header()). I've jammed my huffman trees in there but it sucks because I need them later on when I actually build the huffman tree structs (theora_decode_init, calls InitHuffmanSet()). At that point the original header packet is gone so I've been keeping it around in a buffer.