[Pyxine-checkins] pyxine ChangeLog,1.4,1.5 README,1.2,1.3
Status: Pre-Alpha
Brought to you by:
dairiki
|
From: <da...@us...> - 2003-02-12 19:03:31
|
Update of /cvsroot/pyxine/pyxine
In directory sc8-pr-cvs1:/tmp/cvs-serv8427
Modified Files:
ChangeLog README
Log Message:
Instructions for playing an audio file were wrong.
Added some notes about the example players.
Index: ChangeLog
===================================================================
RCS file: /cvsroot/pyxine/pyxine/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- ChangeLog 12 Feb 2003 18:06:15 -0000 1.4
+++ ChangeLog 12 Feb 2003 19:03:27 -0000 1.5
@@ -1,5 +1,8 @@
2003-02-12 Geoffrey T. Dairiki <da...@da...>
+ * README: Instructions for playing an audio file were wrong.
+ Added some notes about the example players.
+
* pxlib/Geometry.cc (to_string): Add namespace to
std::ostringstream
Index: README
===================================================================
RCS file: /cvsroot/pyxine/pyxine/README,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- README 8 Feb 2003 04:17:02 -0000 1.2
+++ README 12 Feb 2003 19:03:28 -0000 1.3
@@ -38,12 +38,20 @@
>>> import pyxine
>>> xine = pyxine.Xine()
>>> stream = xine.stream_new()
- >>> stream.play("music.mp3")
+ >>> stream.open("music.mp3")
+ >>> stream.play()
To play a movie, it will probably take a little more work in order to
- properly initialize the video output driver.
+ properly initialize the video output driver. For now, have a look at
+ ``tkplayer.py`` and ``player.py`` in the ``examples`` subdirectory.
+
+ E.g., if you have the Tkinter package installed::
- FIXME
+ # python tkplayer.py some_movie.avi
+
+ might actually play a movie for you. (Hit 'p' to start playback.)
+
+ FIXME
ROADMAP
|