mirror of
https://github.com/videolan/vlc.git
synced 2024-11-25 19:04:12 +08:00
8628860b53
. --overlay and --fulscreen options (only work with --vout sdl) . the vlc exits after the end of the stream, which prevents from having to kill it and relaunch it during a presentation, just script it like : for i in ~/mpeg/* ; do vlc --fullscreen --overlay --vout sdl $i ; done Yes, I know the --overlay stuff is fucking ugly. But *I* am not the one who redefines vout_sys_t in an interface-related source file. I won't change it until the vout/intf is finished being rewritten. Additional information: if "--overlay --fulscreen" doesn't center your picture, try with your screen geometry, eg: "--overlay --fullscreen --width 1024 --height 768"
49 lines
1.2 KiB
RPMSpec
49 lines
1.2 KiB
RPMSpec
Name: vlc
|
|
Version: 0.2.50
|
|
Release: 1
|
|
Copyright: GPL
|
|
Url: http://www.videolan.org/
|
|
Group: X11/Applications/Graphics
|
|
Source0: http://www.videolan.org/packages/0.2.50/vlc_0.2.50-1.tar.gz
|
|
Packager: Samuel Hocevar <sam@zoy.org>
|
|
|
|
Buildroot: /tmp/vlc-build
|
|
Summary: VideoLAN Client.
|
|
|
|
%changelog
|
|
* Tue Aug 8 2000 Samuel Hocevar <sam@via.ecp.fr>
|
|
Added framebuffer support
|
|
|
|
* Sun Jun 18 2000 Samuel Hocevar <sam@via.ecp.fr>
|
|
Took over the package
|
|
|
|
* Thu Jun 15 2000 Eric Doutreleau <Eric.Doutreleau@int-evry.fr>
|
|
Initial package
|
|
|
|
%description
|
|
a free network-aware MPEG and DVD player
|
|
VideoLAN is a free MPEG2 software solution.
|
|
.
|
|
The VideoLAN Client allows to play MPEG2 Transport Streams from the
|
|
network or from a file, as well as direct DVD playback.
|
|
|
|
%prep
|
|
%setup
|
|
|
|
%build
|
|
./configure --prefix=/usr --enable-mmx --enable-gnome --enable-fb
|
|
make
|
|
%install
|
|
mkdir -p $RPM_BUILD_ROOT/usr/lib
|
|
mkdir -p $RPM_BUILD_ROOT/usr/bin
|
|
make install prefix=$RPM_BUILD_ROOT/usr
|
|
|
|
%files
|
|
%attr(-, root, root) /usr/bin/vlc
|
|
%attr(-, root, root) /usr/share/videolan
|
|
%attr(-, root, root) /usr/lib/videolan
|
|
%attr(-, root, root) %doc ChangeLog AUTHORS COPYING INSTALL README doc
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|