osdir.com
mailing list archive

Subject: 0.4.0 CVS - msg#00167

List: video.videolan.vlc.general

Date: Prev Next Index Thread: Prev Next Index
I have some enterprise episodes here in what i think is DivX 4. I could view
them with 15-5 CVS, but not anymore with 0.4.0 CVS (this morning).
I simply used ./configure --with-dvdcss-tree=../libdvdcss, make to compile
on MacOS X.

Did I do something wrong? Or is this a serious bug.

DJ

B.T.W. Christophe. It would be nice if the open dialog would remember it's
last used path.
I will send you some lines for the MacOS X README.rtf in a couple of
minutes.
---------------------------------------------------------------------------
Universiteit Twente
---------------------------------------------------------------------------
Derk-Jan 'The DJ' Hartman
ICQnr: 10111559
Mail: mailto:d.hartman@xxxxxxxxxxxxxxxxxx
WWW: http://home.student.utwente.nl/d.hartman/
Goto: http://www.student.utwente.nl/~macsatcampus



--
This is the vlc mailing-list, see http://www.videolan.org/vlc/
To unsubscribe, please read http://www.videolan.org/lists.html
If you are in trouble, please contact <postmaster@xxxxxxxxxxxx>




Was this page helpful?
Yes No
Thread at a glance:

Previous Message by Date: click to view message preview

Re: Need help for VLC on OS X?

on 21-05-2002 21:10, Pierre-Olivier Latour at pol@xxxxxxxxxxxxxxxx wrote: > Hello, > > I'm an OS X developer (Carbon / Cocoa) with about 7 years of programming on > the Mac. > I'm very impressed with VLC: it can read MPG files QuickTime is not even > able to read, it use way less processing power for decoding MPG1, can read > DVD, DVD files, etc... Great work! :-) > > I was actually working on a Cocoa QuickTime player because the one provided > by Apple sucks (see enclosed application: it's not finished). So I might > help developing the Cocoa interface. However, I don't have any knowledge > using the terminal to compile and build app, and I don't want to learn ;). > If the OS X port use Project Builder / Interface Builder, I'll try to build > a cool interface for VLC. The best would be to create a separate library for > the VLC Core, that I would simply import into the project. > > Can you send me the source code + project files of the OS X port so I can > have a look? > > PS: Etant français moi meme, on peut parler français si ca aide. Oke, it might look it bit different, but actual developing on this is just as easy as on any other project. First download the latest revision. You do this from the Terminal application. Issue the following commands: cvs -d :pserver:anonymous@xxxxxxxxxxxxxxxxxxxx:/var/cvs/videolan login cvs -d :pserver:anonymous@xxxxxxxxxxxxxxxxxxxx:/var/cvs/videolan -z3 checkout libdvdcss cvs -d :pserver:anonymous@xxxxxxxxxxxxxxxxxxxx:/var/cvs/videolan -z3 checkout vlc Now you need to go into the libdvdcss dir type: cd libdvdcss Now build libdvdcss ./configure make Now open the Project Builder file. It is located in vlc/Extras/MacOSX You can now edit the files. Only those concerning the interface though. The core video system etc is not in this project. Once you are done editing return to the Terminal. Go inside the vlc dir (use cd command) Type: ./configure make This takes quite a while. When it is done, the vlc application will be in the vlc dir. If your changes are finished, mail the changes you made (preferably in the form of a patch) to the developers. DJ --------------------------------------------------------------------------- Universiteit Twente --------------------------------------------------------------------------- Derk-Jan 'The DJ' Hartman ICQnr: 10111559 Mail: mailto:hartman@xxxxxxx WWW: http://home.student.utwente.nl/d.hartman/ Goto: http://xamba.sourceforge.net -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/lists.html If you are in trouble, please contact <postmaster@xxxxxxxxxxxx>

Next Message by Date: click to view message preview

MacOS X Readme file and Openfile dialog patch.

I have attached an updated Readme file for MacOS X. It has install and removal info and I have also added some hints for resolving perfermance issues. Next is a patch that allows the application to remember the directory from which the last movie file was opened. I tend to have all my Movie files in one place and it is way outside my homedir. I think this is a usefull feature. See what you do with the stuff. I trust you know how to apply patches. diff -ruN --exclude=CVS vlc/plugins/macosx/intf_open.h vlc-mine/plugins/macosx/intf_open.h --- vlc/plugins/macosx/intf_open.h Tue May 7 00:59:46 2002 +++ vlc-mine/plugins/macosx/intf_open.h Thu May 23 09:59:15 2002 @@ -25,6 +25,7 @@ * Preamble **************************************************************************** */ #import <Cocoa/Cocoa.h> +#define preferences [NSUserDefaults standardUserDefaults] NSArray *GetEjectableMediaOfClass( const char *psz_class ); diff -ruN --exclude=CVS vlc/plugins/macosx/intf_open.m vlc-mine/plugins/macosx/intf_open.m --- vlc/plugins/macosx/intf_open.m Wed May 22 23:08:42 2002 +++ vlc-mine/plugins/macosx/intf_open.m Thu May 23 10:25:09 2002 @@ -221,14 +221,19 @@ - (IBAction)openFile:(id)sender { + NSString *openLocation = NSHomeDirectory(); NSOpenPanel *o_panel = [NSOpenPanel openPanel]; [o_panel setAllowsMultipleSelection: YES]; + + if ([preferences stringForKey:@"Last Location"]) { + openLocation = [preferences stringForKey:@"Last Location"] ; + } - if( [o_panel runModalForDirectory: NSHomeDirectory() - file: nil types: nil] == NSOKButton ) + if( [o_panel runModalForDirectory: openLocation file: nil types: nil] == NSOKButton ) { [[Intf_VLCWrapper instance] openFiles: [o_panel filenames]]; + [preferences setObject: [o_panel directory] forKey:@"Last Location"]; } } --------------------------------------------------------------------------- Universiteit Twente --------------------------------------------------------------------------- Derk-Jan 'The DJ' Hartman ICQnr: 10111559 Mail: mailto:d.hartman@xxxxxxxxxxxxxxxxxx WWW: http://home.student.utwente.nl/d.hartman/ Goto: http://www.student.utwente.nl/~macsatcampus README.MacOSX.rtf Description: Binary data vlc.patch Description: Binary data

Previous Message by Thread: click to view message preview

vlc 0.3.1 windows VoD streaming

Hi, We are trying to get vlc 0.3.1 working in VoD mode. We have hosted the sample vob file on an internal server. We can access the file using a normal browser from the client. However, when starting vlc from the command line no video stream appears. Command line: vlc http://10.37.1.16/test/p.vob We get the following messages in the log: intf: playlist initialized intf: added `http://10.37.1.16/test/p.vob' to playlist module: locking memcpy module `memcpymmxext' module: locking interface module `intfwin' intf: interface initialized intf: creating new input thread input: playlist item `http://10.37.1.16/test/p.vob' thread info: 392 (input) has been created ((unknown):0) input: access `http', demux `', name `10.37.1.16/test/p.vob' input: opening server=10.37.1.16 port=80 path=test/p.vob module: locking network module `ipv4' module: unlocking module `ipv4' http error: cannot send request (Bad file descriptor) input: closing `http/:10.37.1.16/test/p.vob' module error: requested access module `http' unavailable input error: no suitable access plug-in for `http/:10.37.1.16/test/p.vob' thread info: 392 has been joined ((unknown):0) Any idea what we are doing wrong ? Thanks, Michael -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/lists.html If you are in trouble, please contact <postmaster@xxxxxxxxxxxx>

Next Message by Thread: click to view message preview

Re: 0.4.0 CVS

on 23-05-2002 09:40, The DJ at d.hartman@xxxxxxxxxxxxxxxxxx wrote: > I have some enterprise episodes here in what i think is DivX 4. I could view > them with 15-5 CVS, but not anymore with 0.4.0 CVS (this morning). > I simply used ./configure --with-dvdcss-tree=../libdvdcss, make to compile > on MacOS X. Mmm, for some reason the ffmpeg plugin is not being included during the build process. DJ --------------------------------------------------------------------------- Universiteit Twente --------------------------------------------------------------------------- Derk-Jan 'The DJ' Hartman ICQnr: 10111559 Mail: mailto:hartman@xxxxxxx WWW: http://home.student.utwente.nl/d.hartman/ Goto: http://xamba.sourceforge.net -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/lists.html If you are in trouble, please contact <postmaster@xxxxxxxxxxxx>
Sign up for updates to this mailing list. email:
Loading Comments...
Home | News | Patents | Sitemap | FAQ | advertise

Advertising by