move shared libraries to veejay-core package
@@ -92,9 +92,6 @@ AM_PROG_AS
|
||||
|
||||
AC_CHECK_HEADERS([fenv.h stdint.h inttypes.h sys/types.h alloca.h])
|
||||
|
||||
dnl AX_PREFIXED_DEFINE([VEEJAY], [HAVE_STDINT_H])
|
||||
dnl AX_PREFIXED_DEFINE([VEEJAY], [HAVE_INTTYPES_H])
|
||||
|
||||
AC_CHECK_FUNCS([posix_memalign memalign fmax lround pow bzero gettimeofday memset mmap strndup strstr strncasecmp])
|
||||
AC_CHECK_FUNCS([sched_get_priority_max])
|
||||
AC_CHECK_FUNCS([select socket getpagesize memcpy])
|
||||
@@ -494,18 +491,18 @@ if test x"$with_extra_cflags" != "x"; then
|
||||
CXXFLAGS="$CXXFLAGS $with_extra_cflags"
|
||||
fi
|
||||
dnl Check for Veejay
|
||||
have_veejay=false
|
||||
PKG_CHECK_MODULES( VEEJAY, [veejay >= 1.5.50 ],
|
||||
have_veejaycore=false
|
||||
PKG_CHECK_MODULES( VEEJAYCORE, [veejaycore >= 1.5.65 ],
|
||||
[
|
||||
AC_SUBST(VEEJAY_CFLAGS)
|
||||
AC_SUBST(VEEJAY_LIBS)
|
||||
have_veejay=true
|
||||
AC_DEFINE(HAVE_VEEJAY,1, [Veejay 1.5.50 installed])]
|
||||
AC_SUBST(VEEJAYCORE_CFLAGS)
|
||||
AC_SUBST(VEEJAYCORE_LIBS)
|
||||
have_veejaycore=true
|
||||
AC_DEFINE(HAVE_VEEJAYCORE,1, [Veejay Core 1.5.65 installed])]
|
||||
,
|
||||
[have_veejay=false])
|
||||
[have_veejaycore=false])
|
||||
|
||||
if test x$have_veejay != xtrue ; then
|
||||
AC_MSG_ERROR([Cannot find veejay 1.5.50 or later])
|
||||
if test x$have_veejaycore != xtrue ; then
|
||||
AC_MSG_ERROR([Cannot find Veejay Core 1.5.65 or later])
|
||||
fi
|
||||
AC_CONFIG_FILES([
|
||||
Makefile
|
||||
@@ -536,7 +533,7 @@ AC_MSG_NOTICE([])
|
||||
|
||||
AC_MSG_NOTICE([ - FFmpeg/AV Swscaler : ${have_swscale} ])
|
||||
AC_MSG_NOTICE([ - FFmpeg/AV AVUtil : ${have_avutil} ])
|
||||
AC_MSG_NOTICE([ - Veejay : ${have_veejay} ])
|
||||
AC_MSG_NOTICE([ - Veejay Core : ${have_veejaycore} ])
|
||||
if test "$have_linux" = "true" ; then
|
||||
AC_MSG_NOTICE([ Platform: Linux])
|
||||
fi
|
||||
|
||||
@@ -10,7 +10,7 @@ if HAVE_GAVL
|
||||
lvd_scale0tilt_la_SOURCES = lvd_scale0tilt.c
|
||||
endif
|
||||
|
||||
INCLUDES=$(FFMPEG_CFLAGS) $(GAVL_CFLAGS) $(VEEJAY_CFLAGS) -I$(top_srcdir)/lvdcrop
|
||||
AM_CPPFLAGS=$(FFMPEG_CFLAGS) $(GAVL_CFLAGS) $(VEEJAYCORE_CFLAGS) -I$(top_srcdir)/lvdcrop
|
||||
AM_CFLAGS=-I@top_srcdir@/include $(OPTCFLAGS) -DSILENT
|
||||
AM_LDFLAGS=-module -avoid-version -lm -export-dynamic -lstdc++ -DDYNAMIC -rdynamic $(FFMPEG_LIBS) $(GAVL_LIBS)
|
||||
AM_LIBTOOLFLAGS = --tag=disable-static
|
||||
|
||||
@@ -18,7 +18,7 @@ LIVIDO_PLUGIN
|
||||
|
||||
#include <libavutil/cpu.h>
|
||||
#include <libswscale/swscale.h>
|
||||
#include <veejay/avcommon.h>
|
||||
#include <veejaycore/avcommon.h>
|
||||
typedef struct
|
||||
{
|
||||
struct SwsContext *sws;
|
||||
|
||||
@@ -10,7 +10,6 @@ LVDGMICMICRO_VERSION=1
|
||||
LVDGMICVERSION=$LVDGMICMAJOR_VERSION.$LVDGMICMINOR_VERSION.$LVDGMICMICRO_VERSION
|
||||
LVDGMICCODENAME="Livido GMIC filters - build $LVDGMICMINOR_VERSION $LVDGMICMICRO_VERSION"
|
||||
AC_CONFIG_HEADERS([config.h])
|
||||
dnl AX_CONFIG_PREFIXED_HEADER([veejay-config.h], [VEEJAY], [config.h])
|
||||
|
||||
AC_CANONICAL_HOST
|
||||
AC_CANONICAL_TARGET
|
||||
@@ -99,9 +98,6 @@ then
|
||||
AC_MSG_ERROR([gmic.h not found - please install gmic])
|
||||
fi
|
||||
|
||||
dnl AX_PREFIXED_DEFINE([VEEJAY], [HAVE_STDINT_H])
|
||||
dnl AX_PREFIXED_DEFINE([VEEJAY], [HAVE_INTTYPES_H])
|
||||
|
||||
AC_CHECK_FUNCS([posix_memalign memalign fmax lround pow bzero gettimeofday memset mmap strndup strstr strncasecmp])
|
||||
AC_CHECK_FUNCS([sched_get_priority_max])
|
||||
AC_CHECK_FUNCS([select socket getpagesize memcpy])
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
INCLUDES = $(CFLAGS)
|
||||
AM_CPPFLAGS = $(CFLAGS)
|
||||
LIBLVDGMIC = liblvdgmic.la
|
||||
noinst_LTLIBRARIES = $(LIBLVDGMIC)
|
||||
|
||||
|
||||
@@ -145,7 +145,7 @@ gmic_lightrelief_la_LIBADD = -L$(top_builddir)/liblvdgmic -llvdgmic
|
||||
#gmic_sketchbw_la_SOURCES = gmic_sketchbw.c
|
||||
#gmic_sketchbw_la_LIBADD = -L$(top_builddir)/liblvdgmic -llvdgmic
|
||||
|
||||
INCLUDES=$(FFMPEG_CFLAGS) -I$(top_srcdir)/liblvdgmic
|
||||
AM_CPPFLAGS=$(FFMPEG_CFLAGS) -I$(top_srcdir)/liblvdgmic
|
||||
AM_CFLAGS=-I@top_srcdir@/include $(OPTCFLAGS) -DSILENT
|
||||
AM_LDFLAGS=-module -avoid-version -lm -export-dynamic -lgmic -lstdc++ -DDYNAMIC -rdynamic
|
||||
AM_LIBTOOLFLAGS = --tag=disable-static
|
||||
|
||||
@@ -89,9 +89,6 @@ AM_PROG_AS
|
||||
|
||||
AC_CHECK_HEADERS([fenv.h stdint.h inttypes.h sys/types.h alloca.h])
|
||||
|
||||
dnl AX_PREFIXED_DEFINE([VEEJAY], [HAVE_STDINT_H])
|
||||
dnl AX_PREFIXED_DEFINE([VEEJAY], [HAVE_INTTYPES_H])
|
||||
|
||||
AC_CHECK_FUNCS([posix_memalign memalign fmax lround pow bzero gettimeofday memset mmap strndup strstr strncasecmp])
|
||||
AC_CHECK_FUNCS([sched_get_priority_max])
|
||||
AC_CHECK_FUNCS([select socket getpagesize memcpy])
|
||||
@@ -330,17 +327,17 @@ if test x"$with_extra_cflags" != "x"; then
|
||||
fi
|
||||
dnl Check for Veejay
|
||||
have_veejay=false
|
||||
PKG_CHECK_MODULES( VEEJAY, [veejay >= 1.5.50 ],
|
||||
PKG_CHECK_MODULES( VEEJAYCORE, [veejaycore >= 1.5.65 ],
|
||||
[
|
||||
AC_SUBST(VEEJAY_CFLAGS)
|
||||
AC_SUBST(VEEJAY_LIBS)
|
||||
have_veejay=true
|
||||
AC_DEFINE(HAVE_VEEJAY,1, [Veejay 1.5.50 installed])]
|
||||
AC_SUBST(VEEJAYCORE_CFLAGS)
|
||||
AC_SUBST(VEEJAYCORE_LIBS)
|
||||
have_veejaycore=true
|
||||
AC_DEFINE(HAVE_VEEJAYCORE,1, [Veejay Core 1.5.65 installed])]
|
||||
,
|
||||
[have_veejay=false])
|
||||
[have_veejaycore=false])
|
||||
|
||||
if test x$have_veejay != xtrue ; then
|
||||
AC_MSG_ERROR([Cannot find veejay 1.5.50 or later])
|
||||
if test x$have_veejaycore != xtrue ; then
|
||||
AC_MSG_ERROR([Cannot find Veejay Core 1.5.65 or later])
|
||||
fi
|
||||
|
||||
AC_CONFIG_FILES([
|
||||
@@ -360,7 +357,7 @@ AC_MSG_NOTICE([ Architecture: ${host_cpu} ])
|
||||
AC_MSG_NOTICE([])
|
||||
AC_MSG_NOTICE([ - FFmpeg/AV Swscaler : ${have_swscale} ])
|
||||
AC_MSG_NOTICE([ - FFmpeg/AV AVUtil : ${have_avutil} ])
|
||||
AC_MSG_NOTICE([ - Veejay : ${have_veejay} ])
|
||||
AC_MSG_NOTICE([ - Veejay Core : ${have_veejaycore} ])
|
||||
if test "$have_linux" = "true" ; then
|
||||
AC_MSG_NOTICE([ Platform: Linux])
|
||||
fi
|
||||
|
||||
@@ -3,7 +3,7 @@ lividoplugin_LTLIBRARIES = lvd_shmin.la lvd_shmout.la
|
||||
lvd_shmin_la_SOURCES = lvd_shmin.c
|
||||
lvd_shmout_la_SOURCES = lvd_shmout.c
|
||||
|
||||
INCLUDES=$(FFMPEG_CFLAGS) $(VEEJAY_CFLAGS) -I$(top_srcdir)/lvdshm
|
||||
AM_CPPFLAGS=$(FFMPEG_CFLAGS) $(VEEJAYCORE_CFLAGS) -I$(top_srcdir)/lvdshm
|
||||
AM_CFLAGS=-I@top_srcdir@/include $(OPTCFLAGS) -DSILENT
|
||||
AM_LDFLAGS=-module -avoid-version -lm -export-dynamic -lstdc++ -DDYNAMIC -rdynamic $(FFMPEG_LIBS)
|
||||
AM_LIBTOOLFLAGS = --tag=disable-static
|
||||
|
||||
@@ -41,7 +41,7 @@
|
||||
LIVIDO_PLUGIN
|
||||
#include "utils.h"
|
||||
#include "livido-utils.c"
|
||||
#include <veejay/avcommon.h>
|
||||
#include <veejaycore/avcommon.h>
|
||||
|
||||
typedef struct
|
||||
{
|
||||
|
||||
@@ -9,8 +9,7 @@ requirements:
|
||||
veejay-1.5.50
|
||||
|
||||
pre build (optional):
|
||||
copy the vims.h file from veejay-current/veejay-server/veejay/vims.h
|
||||
The vims.h is taken from veejay 1.5.50
|
||||
copy the vims.h file from veejay-core/veejaycore/vims.h
|
||||
|
||||
perl parse-vims.pl vims.h
|
||||
|
||||
|
||||
44
veejay-current/veejay-client/.gitignore
vendored
@@ -1,44 +0,0 @@
|
||||
/INSTALL
|
||||
/Makefile
|
||||
/Makefile.in
|
||||
/aclocal.m4
|
||||
/autom4te.cache/
|
||||
/compile
|
||||
/config.guess
|
||||
/config.h
|
||||
/config.h.in
|
||||
/config.log
|
||||
/config.status
|
||||
/config.sub
|
||||
/configure
|
||||
/depcomp
|
||||
/gveejay-paths.h
|
||||
/gveejay-paths.sh
|
||||
/install-sh
|
||||
/libtool
|
||||
/ltmain.sh
|
||||
/m4/
|
||||
/missing
|
||||
/src/.deps/
|
||||
/src/Makefile
|
||||
/src/Makefile.in
|
||||
/src/cellrendererspin.o
|
||||
/src/curve.o
|
||||
/src/gtkcolorsel.o
|
||||
/src/gtkknob.o
|
||||
/src/gtktimeselection.o
|
||||
/src/gveejay.o
|
||||
/src/keyboard.o
|
||||
/src/mjpeg_logging.o
|
||||
/src/mpegconsts.o
|
||||
/src/mpegtimecode.o
|
||||
/src/multitrack.o
|
||||
/src/reloaded
|
||||
/src/sequence.o
|
||||
/src/tracksources.o
|
||||
/src/utils.o
|
||||
/src/vj-api.o
|
||||
/src/vj-midi.o
|
||||
/src/yuv4mpeg.o
|
||||
/src/yuv4mpeg_ratio.o
|
||||
/stamp-h1
|
||||
@@ -1,29 +0,0 @@
|
||||
Tim Philipp M<>ller
|
||||
(CellRendererSpin 15 minute hack - good enough)
|
||||
|
||||
Matthijs v. Henten <matthijs.vanhenten@gmail.com>
|
||||
Glade-2 interface design
|
||||
Icon/picture design
|
||||
|
||||
Thomas Reinhold <stan@jf-chemnitz.de>
|
||||
Samplebank
|
||||
|
||||
Dursun Koca
|
||||
Veejay Logo (V) design
|
||||
|
||||
Niels Elburg <nwelburg@gmail.com>
|
||||
Lead programming
|
||||
|
||||
Contributions by:
|
||||
Toni < oc2pus@arcor.de >
|
||||
(making gveejay happen on GTK 2.4, veejay.spec file)
|
||||
|
||||
d/j/a/y <d.j.a.y@free.fr>
|
||||
(reloaded interface improvements)
|
||||
|
||||
|
||||
Icons:
|
||||
|
||||
share/multicast.ico
|
||||
|
||||
icons8.com as Creative Commons Attribution-NoDerivs 3.0 Unported
|
||||
@@ -1,340 +0,0 @@
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 2, June 1991
|
||||
|
||||
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
|
||||
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The licenses for most software are designed to take away your
|
||||
freedom to share and change it. By contrast, the GNU General Public
|
||||
License is intended to guarantee your freedom to share and change free
|
||||
software--to make sure the software is free for all its users. This
|
||||
General Public License applies to most of the Free Software
|
||||
Foundation's software and to any other program whose authors commit to
|
||||
using it. (Some other Free Software Foundation software is covered by
|
||||
the GNU Library General Public License instead.) You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
this service if you wish), that you receive source code or can get it
|
||||
if you want it, that you can change the software or use pieces of it
|
||||
in new free programs; and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to make restrictions that forbid
|
||||
anyone to deny you these rights or to ask you to surrender the rights.
|
||||
These restrictions translate to certain responsibilities for you if you
|
||||
distribute copies of the software, or if you modify it.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must give the recipients all the rights that
|
||||
you have. You must make sure that they, too, receive or can get the
|
||||
source code. And you must show them these terms so they know their
|
||||
rights.
|
||||
|
||||
We protect your rights with two steps: (1) copyright the software, and
|
||||
(2) offer you this license which gives you legal permission to copy,
|
||||
distribute and/or modify the software.
|
||||
|
||||
Also, for each author's protection and ours, we want to make certain
|
||||
that everyone understands that there is no warranty for this free
|
||||
software. If the software is modified by someone else and passed on, we
|
||||
want its recipients to know that what they have is not the original, so
|
||||
that any problems introduced by others will not reflect on the original
|
||||
authors' reputations.
|
||||
|
||||
Finally, any free program is threatened constantly by software
|
||||
patents. We wish to avoid the danger that redistributors of a free
|
||||
program will individually obtain patent licenses, in effect making the
|
||||
program proprietary. To prevent this, we have made it clear that any
|
||||
patent must be licensed for everyone's free use or not licensed at all.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||
|
||||
0. This License applies to any program or other work which contains
|
||||
a notice placed by the copyright holder saying it may be distributed
|
||||
under the terms of this General Public License. The "Program", below,
|
||||
refers to any such program or work, and a "work based on the Program"
|
||||
means either the Program or any derivative work under copyright law:
|
||||
that is to say, a work containing the Program or a portion of it,
|
||||
either verbatim or with modifications and/or translated into another
|
||||
language. (Hereinafter, translation is included without limitation in
|
||||
the term "modification".) Each licensee is addressed as "you".
|
||||
|
||||
Activities other than copying, distribution and modification are not
|
||||
covered by this License; they are outside its scope. The act of
|
||||
running the Program is not restricted, and the output from the Program
|
||||
is covered only if its contents constitute a work based on the
|
||||
Program (independent of having been made by running the Program).
|
||||
Whether that is true depends on what the Program does.
|
||||
|
||||
1. You may copy and distribute verbatim copies of the Program's
|
||||
source code as you receive it, in any medium, provided that you
|
||||
conspicuously and appropriately publish on each copy an appropriate
|
||||
copyright notice and disclaimer of warranty; keep intact all the
|
||||
notices that refer to this License and to the absence of any warranty;
|
||||
and give any other recipients of the Program a copy of this License
|
||||
along with the Program.
|
||||
|
||||
You may charge a fee for the physical act of transferring a copy, and
|
||||
you may at your option offer warranty protection in exchange for a fee.
|
||||
|
||||
2. You may modify your copy or copies of the Program or any portion
|
||||
of it, thus forming a work based on the Program, and copy and
|
||||
distribute such modifications or work under the terms of Section 1
|
||||
above, provided that you also meet all of these conditions:
|
||||
|
||||
a) You must cause the modified files to carry prominent notices
|
||||
stating that you changed the files and the date of any change.
|
||||
|
||||
b) You must cause any work that you distribute or publish, that in
|
||||
whole or in part contains or is derived from the Program or any
|
||||
part thereof, to be licensed as a whole at no charge to all third
|
||||
parties under the terms of this License.
|
||||
|
||||
c) If the modified program normally reads commands interactively
|
||||
when run, you must cause it, when started running for such
|
||||
interactive use in the most ordinary way, to print or display an
|
||||
announcement including an appropriate copyright notice and a
|
||||
notice that there is no warranty (or else, saying that you provide
|
||||
a warranty) and that users may redistribute the program under
|
||||
these conditions, and telling the user how to view a copy of this
|
||||
License. (Exception: if the Program itself is interactive but
|
||||
does not normally print such an announcement, your work based on
|
||||
the Program is not required to print an announcement.)
|
||||
|
||||
These requirements apply to the modified work as a whole. If
|
||||
identifiable sections of that work are not derived from the Program,
|
||||
and can be reasonably considered independent and separate works in
|
||||
themselves, then this License, and its terms, do not apply to those
|
||||
sections when you distribute them as separate works. But when you
|
||||
distribute the same sections as part of a whole which is a work based
|
||||
on the Program, the distribution of the whole must be on the terms of
|
||||
this License, whose permissions for other licensees extend to the
|
||||
entire whole, and thus to each and every part regardless of who wrote it.
|
||||
|
||||
Thus, it is not the intent of this section to claim rights or contest
|
||||
your rights to work written entirely by you; rather, the intent is to
|
||||
exercise the right to control the distribution of derivative or
|
||||
collective works based on the Program.
|
||||
|
||||
In addition, mere aggregation of another work not based on the Program
|
||||
with the Program (or with a work based on the Program) on a volume of
|
||||
a storage or distribution medium does not bring the other work under
|
||||
the scope of this License.
|
||||
|
||||
3. You may copy and distribute the Program (or a work based on it,
|
||||
under Section 2) in object code or executable form under the terms of
|
||||
Sections 1 and 2 above provided that you also do one of the following:
|
||||
|
||||
a) Accompany it with the complete corresponding machine-readable
|
||||
source code, which must be distributed under the terms of Sections
|
||||
1 and 2 above on a medium customarily used for software interchange; or,
|
||||
|
||||
b) Accompany it with a written offer, valid for at least three
|
||||
years, to give any third party, for a charge no more than your
|
||||
cost of physically performing source distribution, a complete
|
||||
machine-readable copy of the corresponding source code, to be
|
||||
distributed under the terms of Sections 1 and 2 above on a medium
|
||||
customarily used for software interchange; or,
|
||||
|
||||
c) Accompany it with the information you received as to the offer
|
||||
to distribute corresponding source code. (This alternative is
|
||||
allowed only for noncommercial distribution and only if you
|
||||
received the program in object code or executable form with such
|
||||
an offer, in accord with Subsection b above.)
|
||||
|
||||
The source code for a work means the preferred form of the work for
|
||||
making modifications to it. For an executable work, complete source
|
||||
code means all the source code for all modules it contains, plus any
|
||||
associated interface definition files, plus the scripts used to
|
||||
control compilation and installation of the executable. However, as a
|
||||
special exception, the source code distributed need not include
|
||||
anything that is normally distributed (in either source or binary
|
||||
form) with the major components (compiler, kernel, and so on) of the
|
||||
operating system on which the executable runs, unless that component
|
||||
itself accompanies the executable.
|
||||
|
||||
If distribution of executable or object code is made by offering
|
||||
access to copy from a designated place, then offering equivalent
|
||||
access to copy the source code from the same place counts as
|
||||
distribution of the source code, even though third parties are not
|
||||
compelled to copy the source along with the object code.
|
||||
|
||||
4. You may not copy, modify, sublicense, or distribute the Program
|
||||
except as expressly provided under this License. Any attempt
|
||||
otherwise to copy, modify, sublicense or distribute the Program is
|
||||
void, and will automatically terminate your rights under this License.
|
||||
However, parties who have received copies, or rights, from you under
|
||||
this License will not have their licenses terminated so long as such
|
||||
parties remain in full compliance.
|
||||
|
||||
5. You are not required to accept this License, since you have not
|
||||
signed it. However, nothing else grants you permission to modify or
|
||||
distribute the Program or its derivative works. These actions are
|
||||
prohibited by law if you do not accept this License. Therefore, by
|
||||
modifying or distributing the Program (or any work based on the
|
||||
Program), you indicate your acceptance of this License to do so, and
|
||||
all its terms and conditions for copying, distributing or modifying
|
||||
the Program or works based on it.
|
||||
|
||||
6. Each time you redistribute the Program (or any work based on the
|
||||
Program), the recipient automatically receives a license from the
|
||||
original licensor to copy, distribute or modify the Program subject to
|
||||
these terms and conditions. You may not impose any further
|
||||
restrictions on the recipients' exercise of the rights granted herein.
|
||||
You are not responsible for enforcing compliance by third parties to
|
||||
this License.
|
||||
|
||||
7. If, as a consequence of a court judgment or allegation of patent
|
||||
infringement or for any other reason (not limited to patent issues),
|
||||
conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot
|
||||
distribute so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you
|
||||
may not distribute the Program at all. For example, if a patent
|
||||
license would not permit royalty-free redistribution of the Program by
|
||||
all those who receive copies directly or indirectly through you, then
|
||||
the only way you could satisfy both it and this License would be to
|
||||
refrain entirely from distribution of the Program.
|
||||
|
||||
If any portion of this section is held invalid or unenforceable under
|
||||
any particular circumstance, the balance of the section is intended to
|
||||
apply and the section as a whole is intended to apply in other
|
||||
circumstances.
|
||||
|
||||
It is not the purpose of this section to induce you to infringe any
|
||||
patents or other property right claims or to contest validity of any
|
||||
such claims; this section has the sole purpose of protecting the
|
||||
integrity of the free software distribution system, which is
|
||||
implemented by public license practices. Many people have made
|
||||
generous contributions to the wide range of software distributed
|
||||
through that system in reliance on consistent application of that
|
||||
system; it is up to the author/donor to decide if he or she is willing
|
||||
to distribute software through any other system and a licensee cannot
|
||||
impose that choice.
|
||||
|
||||
This section is intended to make thoroughly clear what is believed to
|
||||
be a consequence of the rest of this License.
|
||||
|
||||
8. If the distribution and/or use of the Program is restricted in
|
||||
certain countries either by patents or by copyrighted interfaces, the
|
||||
original copyright holder who places the Program under this License
|
||||
may add an explicit geographical distribution limitation excluding
|
||||
those countries, so that distribution is permitted only in or among
|
||||
countries not thus excluded. In such case, this License incorporates
|
||||
the limitation as if written in the body of this License.
|
||||
|
||||
9. The Free Software Foundation may publish revised and/or new versions
|
||||
of the General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Program
|
||||
specifies a version number of this License which applies to it and "any
|
||||
later version", you have the option of following the terms and conditions
|
||||
either of that version or of any later version published by the Free
|
||||
Software Foundation. If the Program does not specify a version number of
|
||||
this License, you may choose any version ever published by the Free Software
|
||||
Foundation.
|
||||
|
||||
10. If you wish to incorporate parts of the Program into other free
|
||||
programs whose distribution conditions are different, write to the author
|
||||
to ask for permission. For software which is copyrighted by the Free
|
||||
Software Foundation, write to the Free Software Foundation; we sometimes
|
||||
make exceptions for this. Our decision will be guided by the two goals
|
||||
of preserving the free status of all derivatives of our free software and
|
||||
of promoting the sharing and reuse of software generally.
|
||||
|
||||
NO WARRANTY
|
||||
|
||||
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
||||
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
||||
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
||||
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
||||
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
||||
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
||||
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
||||
REPAIR OR CORRECTION.
|
||||
|
||||
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
||||
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
||||
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
||||
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
||||
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
||||
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
||||
POSSIBILITY OF SUCH DAMAGES.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
convey the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program is interactive, make it output a short notice like this
|
||||
when it starts in an interactive mode:
|
||||
|
||||
Gnomovision version 69, Copyright (C) year name of author
|
||||
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, the commands you use may
|
||||
be called something other than `show w' and `show c'; they could even be
|
||||
mouse-clicks or menu items--whatever suits your program.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or your
|
||||
school, if any, to sign a "copyright disclaimer" for the program, if
|
||||
necessary. Here is a sample; alter the names:
|
||||
|
||||
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
|
||||
`Gnomovision' (which makes passes at compilers) written by James Hacker.
|
||||
|
||||
<signature of Ty Coon>, 1 April 1989
|
||||
Ty Coon, President of Vice
|
||||
|
||||
This General Public License does not permit incorporating your program into
|
||||
proprietary programs. If your program is a subroutine library, you may
|
||||
consider it more useful to permit linking proprietary applications with the
|
||||
library. If this is what you want to do, use the GNU Library General
|
||||
Public License instead of this License.
|
||||
@@ -1,181 +0,0 @@
|
||||
# Process with automake to produce Makefile.in
|
||||
SUBDIRS = src
|
||||
|
||||
ACLOCAL_AMFLAGS = -I m4
|
||||
|
||||
EXTRA_DIST = \
|
||||
autogen.sh\
|
||||
depcomp \
|
||||
cpuinfo.sh \
|
||||
autogen.sh \
|
||||
debian/copyright \
|
||||
debian/changelog \
|
||||
debian/control \
|
||||
debian/rules \
|
||||
share/bg.png \
|
||||
share/bg_black.png \
|
||||
share/bg_blue.png \
|
||||
share/bg_green.png \
|
||||
share/bg_grey.png \
|
||||
share/bg_red.png \
|
||||
share/bg_yellow.png \
|
||||
share/blackwhite.rc \
|
||||
share/button_back.png \
|
||||
share/button_bounce.png \
|
||||
share/button_dec.png \
|
||||
share/button_down.png \
|
||||
share/button_fbw.png \
|
||||
share/button_ffw.png \
|
||||
share/button_gotoend.png \
|
||||
share/button_gotostart.png \
|
||||
share/button_inc.png \
|
||||
share/button_loop.png \
|
||||
share/button_looponce.png \
|
||||
share/button_mini_decrement.png \
|
||||
share/button_mini_increment.png \
|
||||
share/button_next.png \
|
||||
share/button_pause.png \
|
||||
share/button_play.png \
|
||||
share/button_playmode.png \
|
||||
share/button_prev.png \
|
||||
share/button_rand.png \
|
||||
share/button_reverse.png \
|
||||
share/button_right.png \
|
||||
share/button_skip.png \
|
||||
share/button_skull.png \
|
||||
share/button_text.png \
|
||||
share/button_up.png \
|
||||
share/fx_entry_off.png \
|
||||
share/fx_entry_on.png \
|
||||
share/gveejay-default.rc \
|
||||
share/gveejay.glade \
|
||||
share/gveejay.rc \
|
||||
share/gveejay.reloaded.glade \
|
||||
share/gveejay.reloaded.glade.bak \
|
||||
share/gveejay.reloaded.gladep \
|
||||
share/gveejay.reloaded.gladep.bak \
|
||||
share/gveejay.reloaded.glade~ \
|
||||
share/high_contrast.rc \
|
||||
share/icon_apply.png \
|
||||
share/icon_berserk.png \
|
||||
share/icon_bezerk.png \
|
||||
share/icon_bounce.png \
|
||||
share/icon_bug.png \
|
||||
share/icon_bundle.png \
|
||||
share/icon_cache.png \
|
||||
share/icon_clear.png \
|
||||
share/icon_clearall.png \
|
||||
share/icon_color.png \
|
||||
share/icon_connect.png \
|
||||
share/icon_copy.png \
|
||||
share/icon_crop.png \
|
||||
share/icon_cut.png \
|
||||
share/icon_disconnect.png \
|
||||
share/icon_fadein.png \
|
||||
share/icon_fadeout.png \
|
||||
share/icon_jack.png \
|
||||
share/icon_keybind.png \
|
||||
share/icon_keydetach.png \
|
||||
share/icon_keyframe.png \
|
||||
share/icon_launch.png \
|
||||
share/icon_loop.png \
|
||||
share/icon_looponce.png \
|
||||
share/icon_macroclear.png \
|
||||
share/icon_macropause.png \
|
||||
share/icon_macroplay.png \
|
||||
share/icon_macrorec.png \
|
||||
share/icon_mask.png \
|
||||
share/icon_minus.png \
|
||||
share/icon_new.png \
|
||||
share/icon_noloop.png \
|
||||
share/icon_open.png \
|
||||
share/icon_openlist.png \
|
||||
share/icon_openstream.png \
|
||||
share/icon_osd.png \
|
||||
share/icon_paste.png \
|
||||
share/icon_plarge.png \
|
||||
share/icon_playmode.png \
|
||||
share/icon_plus.png \
|
||||
share/icon_psmall.png \
|
||||
share/icon_question.png \
|
||||
share/icon_record.png \
|
||||
share/icon_recordstop.png \
|
||||
share/icon_recstop.png \
|
||||
share/icon_refresh.png \
|
||||
share/icon_render.png \
|
||||
share/icon_save.png \
|
||||
share/icon_saveas.png \
|
||||
share/icon_screenshot.png \
|
||||
share/icon_send.png \
|
||||
share/icon_skull.png \
|
||||
share/icon_stream.png \
|
||||
share/icon_trash.png \
|
||||
share/icon_video.png \
|
||||
share/knob.png \
|
||||
share/reloaded_classic.glade \
|
||||
share/smooth.rc \
|
||||
share/sync.png \
|
||||
share/veejay-icon.png \
|
||||
share/veejay-logo-small.png \
|
||||
share/veejay-logo.png \
|
||||
gveejay-paths.sh.in
|
||||
|
||||
DISTCLEANFILES = \
|
||||
confdefs.h \
|
||||
config.cache \
|
||||
config.status \
|
||||
config.log \
|
||||
gveejay-paths.h
|
||||
|
||||
|
||||
MAINTAINERCLEANFILES = \
|
||||
compile \
|
||||
depcomp \
|
||||
install-sh \
|
||||
missing \
|
||||
mkinstalldirs \
|
||||
Makefile.in \
|
||||
aclocal.m4 \
|
||||
config.guess \
|
||||
config.h.in \
|
||||
config.sub \
|
||||
configure \
|
||||
ltmain.sh \
|
||||
stamp-h.in
|
||||
|
||||
## .glade files must be in same directory as pixmaps ?!!
|
||||
install-data-local:
|
||||
@$(NORMAL_INSTALL)
|
||||
if test -d $(srcdir)/share; then \
|
||||
$(mkinstalldirs) $(DESTDIR)$(pkgdatadir); \
|
||||
for dialog in $(srcdir)/share/*; do \
|
||||
if test -f $$dialog; then \
|
||||
$(INSTALL_DATA) $$dialog $(DESTDIR)$(pkgdatadir); \
|
||||
fi \
|
||||
done \
|
||||
fi;
|
||||
|
||||
|
||||
|
||||
gveejay-path.h: gveejay-paths.sh
|
||||
@sh $< > $@.tmp ;
|
||||
if cmp -s $@.tmp $@; then
|
||||
rm $@.tmp;
|
||||
else
|
||||
mv $@.tmp $@ ; echo updated gveejay-paths.h;
|
||||
fi
|
||||
|
||||
dist-hook:
|
||||
rm -f $(distdir)/gveejay-paths.sh
|
||||
|
||||
## make rpms
|
||||
rpm: Makefile
|
||||
$(MAKE) dist
|
||||
rpmbuild -ta --clean $(PACKAGE)-$(VERSION).tar.gz
|
||||
|
||||
## make debs
|
||||
deb: Makefile dist
|
||||
-chmod -R +w $(PACKAGE)-$(VERSION)
|
||||
rm -rf $(PACKAGE)-$(VERSION)
|
||||
tar xzf $(PACKAGE)-$(VERSION).tar.gz
|
||||
cd $(PACKAGE)-$(VERSION); dpkg-buildpackage -rfakeroot
|
||||
@@ -1,31 +0,0 @@
|
||||
# Contributor: Luciano A. Ferrer <laferrer@gmail.com>
|
||||
# Modified for ArchLinux by Niels <nwelburg@gmail.com>
|
||||
pkgname=reloaded
|
||||
pkgrel=1
|
||||
pkgver=1.5.9
|
||||
pkgdesc="Reloaded is the graphical user interface for Veejay"
|
||||
arch=('i686' 'x86_64')
|
||||
url="http://www.veejayhq.net"
|
||||
license=('GPL')
|
||||
groups=()
|
||||
conflicts=('reloaded')
|
||||
depends=('libxml2' 'veejay' 'gtk2' 'glib2' 'glade' 'alsa-lib' )
|
||||
optdepends=()
|
||||
source=()
|
||||
md5sums=()
|
||||
changelog=('ChangeLog')
|
||||
backup=()
|
||||
replaces=()
|
||||
|
||||
build() {
|
||||
export PKG_CONFIG_PATH=/usr/lib/pkgconfig
|
||||
cd $startdir
|
||||
./autogen.sh
|
||||
./configure --prefix=/usr
|
||||
make || return 1
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $startdir
|
||||
make DESTDIR="$pkgdir/" install
|
||||
}
|
||||
@@ -1,113 +0,0 @@
|
||||
|
||||
~==
|
||||
~====
|
||||
:... ~~====
|
||||
:...... ~~~~====
|
||||
:.....: ~~~~====
|
||||
:...... -~~~~===
|
||||
:....... --~~~~~==
|
||||
:....... ::~~~~~~=
|
||||
:...... "::~~~~==
|
||||
:....., :::~~~===
|
||||
:..... =::~~~~===
|
||||
:...... :::~~~====
|
||||
....... ::~~~~~===
|
||||
....... :::~~~~~~==
|
||||
...... ~::~~~~~~==
|
||||
...... |::~~~=|
|
||||
..... :::|:~==|
|
||||
..::: |:=|||==+
|
||||
., :., :|||?||+=
|
||||
..::,,.: :||=~=.||
|
||||
,...::,,, |~:=|||||+|
|
||||
:..,:::||||~~~====++
|
||||
,:,,,:::~~~~~===++++ Reloaded
|
||||
,::::~~~====++++
|
||||
~~~~~===+++++ version 1.5.50
|
||||
~~===+++++++:
|
||||
N=++++++++++ June 2015
|
||||
+++++++++
|
||||
++++::::
|
||||
:::::
|
||||
||
|
||||
|
||||
|
||||
:: Reloaded, a graphical interface for Veejay ::
|
||||
|
||||
|
||||
FEATURE OVERVIEW
|
||||
|
||||
|
||||
General:
|
||||
|
||||
# Thin client (TCP/IP)
|
||||
# MIDI support (auto learning)
|
||||
# Slick interface designed for live performing
|
||||
# Tracks multiple veejay servers
|
||||
|
||||
Install
|
||||
=======
|
||||
|
||||
See file 'INSTALL'
|
||||
|
||||
See doc/Howto_Compile.html
|
||||
See doc/Howto_Compile_on_Ubuntu.html
|
||||
|
||||
Documentation
|
||||
=============
|
||||
|
||||
See source code.
|
||||
|
||||
Running
|
||||
=======
|
||||
|
||||
$ reloaded
|
||||
|
||||
|
||||
To use a midi controller with veejay you must connect
|
||||
the veejay's sequencer port to the MIDI controller port.
|
||||
There is a utility 'aconnect' (comes with ALSA) that does this.
|
||||
|
||||
1. List inputs (midi keyboards)
|
||||
$ aconnect -i
|
||||
|
||||
client 129: 'Virtual Keyboard' [type=user]
|
||||
|
||||
|
||||
2. List outputs (Veejay)
|
||||
$ aconnect -o
|
||||
|
||||
client 128: 'Veejay' [type=user]
|
||||
|
||||
|
||||
3. Connect the ports
|
||||
|
||||
$ aconnect 129 128
|
||||
|
||||
|
||||
4. Launch reloaded
|
||||
|
||||
|
||||
|
||||
Know bugs
|
||||
=========
|
||||
- Multitracker crashes when using very high resolution video
|
||||
|
||||
|
||||
|
||||
|
||||
About
|
||||
=====
|
||||
|
||||
GveejayReloaded is a client for veejay. As long as veejay (the server)
|
||||
is running, you can connect and disconnect from it with reloaded.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -1,12 +0,0 @@
|
||||
#!/bin/sh
|
||||
# Run this to generate all the initial makefiles, etc.
|
||||
|
||||
# if you use autoconf 2.64 or earlier,
|
||||
# you may have to create the m4 directory yourself
|
||||
#
|
||||
|
||||
if [ ! -d m4 ]; then
|
||||
mkdir m4
|
||||
fi
|
||||
|
||||
autoreconf -v -fi -I m4
|
||||
@@ -1,117 +0,0 @@
|
||||
|
||||
~==
|
||||
~====
|
||||
:... ~~====
|
||||
:...... ~~~~====
|
||||
:.....: ~~~~====
|
||||
:...... -~~~~===
|
||||
:....... --~~~~~==
|
||||
:....... ::~~~~~~=
|
||||
:...... "::~~~~==
|
||||
:....., :::~~~===
|
||||
:..... =::~~~~===
|
||||
:...... :::~~~====
|
||||
....... ::~~~~~===
|
||||
....... :::~~~~~~==
|
||||
...... ~::~~~~~~==
|
||||
...... |::~~~=|
|
||||
..... :::|:~==|
|
||||
..::: |:=|||==+
|
||||
., :., :|||?||+=
|
||||
..::,,.: :||=~=.||
|
||||
,...::,,, |~:=|||||+|
|
||||
:..,:::||||~~~====++
|
||||
,:,,,:::~~~~~===++++ Reloaded
|
||||
,::::~~~====++++
|
||||
~~~~~===+++++ version 1.5.47
|
||||
~~===+++++++:
|
||||
N=++++++++++ Feb. 2015.
|
||||
+++++++++
|
||||
++++::::
|
||||
:::::
|
||||
||
|
||||
|
||||
|
||||
:: Reloaded, a graphical interface for Veejay ::
|
||||
|
||||
|
||||
FEATURE OVERVIEW
|
||||
|
||||
|
||||
General:
|
||||
|
||||
# Thin client (TCP/IP)
|
||||
# MIDI support (auto learning)
|
||||
# Slick interface designed for live performing
|
||||
# Tracks multiple veejay servers
|
||||
|
||||
Install
|
||||
=======
|
||||
|
||||
See file 'INSTALL'
|
||||
|
||||
See doc/Howto_Compile.html
|
||||
See doc/Howto_Compile_on_Ubuntu.html
|
||||
|
||||
Documentation
|
||||
=============
|
||||
|
||||
See source code.
|
||||
|
||||
Running
|
||||
=======
|
||||
|
||||
Reloaded requires a running veejay
|
||||
|
||||
$ reloaded
|
||||
|
||||
$ reloaded -h hostname -p portnumber
|
||||
|
||||
|
||||
To use a midi controller with veejay you must connect
|
||||
the veejay's sequencer port to the MIDI controller port.
|
||||
There is a utility 'aconnect' (comes with ALSA) that does this.
|
||||
|
||||
1. List inputs (midi keyboards)
|
||||
$ aconnect -i
|
||||
|
||||
client 129: 'Virtual Keyboard' [type=user]
|
||||
|
||||
|
||||
2. List outputs (Veejay)
|
||||
$ aconnect -o
|
||||
|
||||
client 128: 'Veejay' [type=user]
|
||||
|
||||
|
||||
3. Connect the ports
|
||||
|
||||
$ aconnect 129 128
|
||||
|
||||
|
||||
4. Launch reloaded
|
||||
|
||||
|
||||
|
||||
Know bugs
|
||||
=========
|
||||
- Multitracker crashes when using very high resolution video
|
||||
|
||||
|
||||
|
||||
|
||||
About
|
||||
=====
|
||||
|
||||
GveejayReloaded is a client for veejay. As long as veejay (the server)
|
||||
is running, you can connect and disconnect from it with reloaded.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -1,5 +0,0 @@
|
||||
veejay-client (1.5.47-1) unstable; urgency=low
|
||||
|
||||
* New release
|
||||
|
||||
-- Niels Elburg <nwelburg@gmail.com> Sat, 07 Feb 2015 19:18:35 +0100
|
||||
@@ -1 +0,0 @@
|
||||
9
|
||||
@@ -1,21 +0,0 @@
|
||||
Source: veejay-client
|
||||
Section: video
|
||||
Priority: optional
|
||||
Maintainer: Niels Elburg <nwelburg@gmail.com>
|
||||
Build-Depends: debhelper (>= 8.0.0), autotools-dev, libavcodec-dev,libavformat-dev,libavutil-dev,libswscale-dev,libgtk2.0-dev,libsdl1.2-dev,libxml2-dev,libx11-dev,libmjpegtools-dev,libasound2-dev,libglade2-dev,libgtk2.0-dev,libx11-dev,veejay (>= 1.5.47)
|
||||
Standards-Version: 3.9.4
|
||||
Homepage: http://www.veejayhq.net
|
||||
Vcs-Git: git://code.dyne.org/veejay.git
|
||||
|
||||
Package: veejay-client
|
||||
Architecture: any
|
||||
Depends: ${shlibs:Depends}, ${misc:Depends}, veejay (>= 1.5.47)
|
||||
Description: Reloaded, a graphical interface for veejay.
|
||||
This program requires a running veejay.
|
||||
Features:
|
||||
* Thin client (TCP/IP)
|
||||
* MIDI support (auto learning)
|
||||
* Slick interface designed for live performing
|
||||
* Tracks multiple veejay servers
|
||||
|
||||
|
||||
@@ -1,53 +0,0 @@
|
||||
Upstream Author(s):
|
||||
|
||||
Glade-2 interface design
|
||||
Icon/picture design
|
||||
Matthijs v. Henten <matthijs.vanhenten@gmail.com>
|
||||
|
||||
Samplebank
|
||||
Thomas Reinhold <stan@jf-chemnitz.de>
|
||||
|
||||
Veejay Logo (V) design
|
||||
Dursun Koca
|
||||
|
||||
Lead programming
|
||||
Niels Elburg <nwelburg@gmail.com>
|
||||
|
||||
Contributions by:
|
||||
Toni < oc2pus@arcor.de >
|
||||
(making gveejay happen on GTK 2.4, veejay.spec file)
|
||||
|
||||
CellRendererSpin 15 minute hack - good enough
|
||||
Tim Philipp Müller
|
||||
|
||||
Initial debian packaging by
|
||||
Jof Thibaut <tangostudio@tuxfamily.org>
|
||||
|
||||
|
||||
Copyright:
|
||||
|
||||
Copyright (C) 2008-2015, Niels Elburg VeejayHQ.
|
||||
|
||||
License:
|
||||
|
||||
This program is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU General Public License
|
||||
as published by the Free Software Foundation; either version 2
|
||||
of the License, or (at your option) any later version.
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along
|
||||
with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
On Debian systems, the complete text of the GNU General
|
||||
Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'.
|
||||
|
||||
The Debian packaging is:
|
||||
|
||||
Copyright (C) 2010 Jof Thibaut <tangostudio@tuxfamily.org>
|
||||
and is licensed under the GPL version 3,
|
||||
see `/usr/share/common-licenses/GPL-3'.
|
||||
@@ -1 +0,0 @@
|
||||
README
|
||||
@@ -1,12 +0,0 @@
|
||||
#!/usr/bin/make -f
|
||||
# -*- makefile -*-
|
||||
|
||||
# Uncomment this to turn on verbose mode.
|
||||
#export DH_VERBOSE=1
|
||||
|
||||
# This has to be exported to make some magic below work.
|
||||
export DH_OPTIONS
|
||||
|
||||
|
||||
%:
|
||||
dh $@ --with autotools-dev
|
||||
@@ -1 +0,0 @@
|
||||
3.0 (native)
|
||||
@@ -1,29 +0,0 @@
|
||||
.....................................................................................................
|
||||
..█████▒▒██...██▒.......▄▄▄.......███▄....█..██▓.███▄.▄███▓.▄▄▄.....▄▄▄█████▓.██▓.▒█████...███▄....█.
|
||||
▓██...▒.▒▒.█.█.▒░......▒████▄.....██.▀█...█.▓██▒▓██▒▀█▀.██▒▒████▄...▓..██▒.▓▒▓██▒▒██▒..██▒.██.▀█...█.
|
||||
▒████.░.░░..█...░......▒██..▀█▄..▓██..▀█.██▒▒██▒▓██....▓██░▒██..▀█▄.▒.▓██░.▒░▒██▒▒██░..██▒▓██..▀█.██▒
|
||||
░▓█▒..░..░.█.█.▒.......░██▄▄▄▄██.▓██▒..▐▌██▒░██░▒██....▒██.░██▄▄▄▄██░.▓██▓.░.░██░▒██...██░▓██▒..▐▌██▒
|
||||
░▒█░....▒██▒.▒██▒.......▓█...▓██▒▒██░...▓██░░██░▒██▒...░██▒.▓█...▓██▒.▒██▒.░.░██░░.████▓▒░▒██░...▓██░
|
||||
.▒.░....▒▒.░.░▓.░.......▒▒...▓▒█░░.▒░...▒.▒.░▓..░.▒░...░..░.▒▒...▓▒█░.▒.░░...░▓..░.▒░▒░▒░.░.▒░...▒.▒.
|
||||
.░......░░...░▒.░........▒...▒▒.░░.░░...░.▒░.▒.░░..░......░..▒...▒▒.░...░.....▒.░..░.▒.▒░.░.░░...░.▒░
|
||||
.░.░.....░....░..........░...▒......░...░.░..▒.░░......░.....░...▒....░.......▒.░░.░.░.▒.....░...░.░.
|
||||
.........░....░..............░..░.........░..░.........░.........░..░.........░......░.░...........░.
|
||||
.....................................................................................................
|
||||
|
||||
== Effects Animation
|
||||
Because of a new veejay functionality, the fx parameters anim "workflow" (using reloaded) have changed:
|
||||
. From _Fx List_ panel, Add an fx you like.
|
||||
. From _Fx Chain_ panel, toggle _keyframing for this fx chain entry_
|
||||
. From _Fx Anim_ panel, choose a parameter and toogle _keyframe animation for this param_
|
||||
. From _Fx Anim_ panel, draw the curve and hit [OK] _apply this keyframe_
|
||||
|
||||
.Taddam the fx' param is animated !
|
||||
|
||||
=== Now, what else you can do ?
|
||||
.Play with the automation
|
||||
* toggle the full fx automation hitting _keyframing for this fx chain entry_ button (VIMS 145 / keybinding TBD)
|
||||
* toggle by parameters hitting accordingly the _keyframe animation for this param_ button (VIMS 142 / keybinding TBD)
|
||||
|
||||
.Clear the automation
|
||||
* full automation, using the _reset_ button, from the _Fx Anim_ panel (VIMS ? / keybinding TBD),
|
||||
* by parameters the _clear selected param_, from the _Fx Anim_ panel (VIMS ? / keybinding TBD).
|
||||
@@ -1,16 +0,0 @@
|
||||
#!/bin/sh -e
|
||||
reloaded_datadir="@reloaded_datadir@"
|
||||
|
||||
cat << EOF
|
||||
/*
|
||||
This file has been automatically generated. Do not edit
|
||||
|
||||
*/
|
||||
#ifndef GVEEJAY_PATHS_H
|
||||
#define GVEEJAY_PATHS_H
|
||||
|
||||
#define RELOADED_DATADIR "$reloaded_datadir"
|
||||
|
||||
#endif /* GVEEJAY_PATHS_H */
|
||||
EOF
|
||||
|
||||
@@ -1,115 +0,0 @@
|
||||
# norootforbuild
|
||||
# neededforbuild update-desktop-files gtk2-devel-packages glib2 gtk2 libglade3 gtk2-devel glib2-devel libglade-devel libxml2-devel pkgconfig
|
||||
|
||||
%define name reloaded
|
||||
%define version 1.5.2
|
||||
%define release reloaded
|
||||
%define prefix /usr
|
||||
|
||||
%define builddir $RPM_BUILD_DIR/%{name}-%{version}
|
||||
|
||||
Summary: Video Mixing/Editing Instrument
|
||||
Name: %{name}
|
||||
Version: %{version}
|
||||
Release: %{release}
|
||||
Prefix: %{prefix}
|
||||
Copyright: GNU GPL
|
||||
URL: http://veejayq.net
|
||||
Packager: nelburg <nwelburg@gmail.com>
|
||||
Group: Productivity/Multimedia/Video/Editors and Convertors
|
||||
Source: %{name}-%{version}.tar.bz2
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
Prereq: /sbin/ldconfig
|
||||
#Requires: libxml2 >= 2.5.4
|
||||
#Requires: gtk2
|
||||
#Requires: glib2
|
||||
#Requires: libglade2
|
||||
#Requires: libxml2 >= 2.5.4
|
||||
#Requires: cairo
|
||||
#BuildRequires: pkgconfig
|
||||
#BuildRequires: gtk2-devel
|
||||
#BuildRequires: glib2-devel
|
||||
#BuildRequires: libglade2-devel
|
||||
|
||||
%description
|
||||
Veejay is a visual instrument and realtime video sampler.
|
||||
It allows you to 'play' the video like you would play a Piano and it allows
|
||||
you to record the resulting video directly to disk for immediate playback (video sampling).
|
||||
|
||||
GVeejayReloaded is the graphical interface for Veejay.
|
||||
|
||||
Author: Niels Elburg <nwelburg@gmail.com>
|
||||
|
||||
Requires: gtk2
|
||||
Requires: glib2
|
||||
Requires: libglade2
|
||||
Requires: libxml2 >= 2.5.4
|
||||
|
||||
%prep
|
||||
%setup -q -n %{name}-%{version}
|
||||
|
||||
./autogen.sh
|
||||
%{?suse_update_config:%{suse_update_config -f}}
|
||||
|
||||
CFLAGS="$RPM_OPT_FLAGS" \
|
||||
CXXFLAGS="$RPM_OPT_FLAGS" \
|
||||
./configure \
|
||||
--with-arch-target=generic \
|
||||
--prefix=%{prefix} \
|
||||
--mandir=%{_mandir}
|
||||
|
||||
%build
|
||||
# Setup for parallel builds
|
||||
numprocs=`egrep -c ^cpu[0-9]+ /proc/stat || :`
|
||||
if [ "$numprocs" = "0" ]; then
|
||||
numprocs=1
|
||||
fi
|
||||
make -j$numprocs
|
||||
|
||||
%install
|
||||
[ -d %{buildroot} -a "%{buildroot}" != "" ] && rm -rf %{buildroot}
|
||||
|
||||
make install-strip \
|
||||
DESTDIR=%{buildroot}
|
||||
|
||||
# icon and menu-entry
|
||||
mkdir -p %{buildroot}%{_datadir}/pixmaps
|
||||
install -m 644 share/%{name}-logo.png %{buildroot}%{_datadir}/pixmaps/gveejay.png
|
||||
cat > gveejay.desktop << EOF
|
||||
[Desktop Entry]
|
||||
Comment=Video Mixing/Editing Instrument
|
||||
Exec=reloaded
|
||||
GenericName=
|
||||
Icon=%{name}
|
||||
MimeType=
|
||||
Name=Reloaded
|
||||
Path=
|
||||
StartupNotify=true
|
||||
Terminal=false
|
||||
Type=Application
|
||||
EOF
|
||||
%suse_update_desktop_file -i reloaded AudioVideo Player
|
||||
|
||||
%post -p /sbin/ldconfig
|
||||
|
||||
%postun -p /sbin/ldconfig
|
||||
|
||||
%clean
|
||||
[ -d %{buildroot} -a "%{buildroot}" != "" ] && rm -rf %{buildroot}
|
||||
|
||||
%files
|
||||
%defattr(-, root, root)
|
||||
%doc AUTHORS BUGS COPYING ChangeLog INSTALL README*
|
||||
%doc doc
|
||||
%{_bindir}/%{name}
|
||||
%{_datadir}/%{name}/*.png
|
||||
# reloaded
|
||||
%{_bindir}/src
|
||||
%{_datadir}/%{name}/gveejay-reloaded-2.glade
|
||||
%{_datadir}/%{name}/gveejay.rc
|
||||
%{_datadir}/pixmaps/gveejay.png
|
||||
%{_datadir}/applications/gveejay.desktop
|
||||
|
||||
%changelog -n veejay
|
||||
Dec 20, 2009. Updated rpm spec for reloaded 1.5.2
|
||||
Mar 21, 2007. Initial rpm spec for gveejayreloaded
|
||||
@@ -1,10 +0,0 @@
|
||||
[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
Version=1.0
|
||||
Name=GVeejayReloaded
|
||||
Comment=Graphical Veejay Client
|
||||
Exec=gveejayreloaded
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Icon=veejay-icon.png
|
||||
Categories=AudioVideoEditing;AudioVideo;
|
||||
@@ -1,10 +0,0 @@
|
||||
[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
Version=1.0
|
||||
Name=Veejay (720x576 with audio)
|
||||
Comment=Start new veejay project, 720x576 with default audio settings
|
||||
Exec=veejay -v -W720 -H576 -a1 -d
|
||||
Terminal=true
|
||||
Type=Application
|
||||
Icon=veejay-icon.png
|
||||
Categories=AudioVideoEditing;AudioVideo;
|
||||
@@ -1,10 +0,0 @@
|
||||
[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
Version=1.0
|
||||
Name=Veejay (720x576 without audio)
|
||||
Comment=Start new Veejay project, 720x576 without audio
|
||||
Exec=veejay -v -W720 -H576 -a0 -d
|
||||
Terminal=true
|
||||
Type=Application
|
||||
Icon=veejay-icon.png
|
||||
Categories=AudioVideoEditing;AudioVideo;
|
||||
@@ -1,10 +0,0 @@
|
||||
[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
Version=1.0
|
||||
Name=Veejay (640x480, /dev/video0)
|
||||
Comment=Start veejay server with capture device #0 in 640x480
|
||||
Exec=veejay -A1 -v -W640 -H480
|
||||
Terminal=true
|
||||
Type=Application
|
||||
Icon=veejay-icon.png
|
||||
Categories=AudioVideoEditing;AudioVideo;
|
||||
@@ -1,10 +0,0 @@
|
||||
[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
Version=1.0
|
||||
Name=Veejay (720x576, /dev/video0)
|
||||
Comment=Start veejay server from capture device #0 in 720x576
|
||||
Exec=veejay -A1 -v -W720 -H576
|
||||
Terminal=true
|
||||
Type=Application
|
||||
Icon=veejay-icon.png
|
||||
Categories=AudioVideoEditing;AudioVideo;
|
||||
@@ -1,10 +0,0 @@
|
||||
[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
Version=1.0
|
||||
Name=Veejay (352x288, /dev/video0)
|
||||
Comment=Start veejay server with capture device #0 in 352x288
|
||||
Exec=veejay -A1 -v -W352 -H288
|
||||
Terminal=true
|
||||
Type=Application
|
||||
Icon=veejay-icon.png
|
||||
Categories=AudioVideoEditing;AudioVideo;
|
||||
@@ -186,19 +186,19 @@ if test "$ac_cv_lib_dl_dlopen" = "yes"; then
|
||||
have_dl_dlopen=true
|
||||
fi
|
||||
|
||||
dnl Check for Veejay
|
||||
have_veejay=false
|
||||
PKG_CHECK_MODULES( VEEJAY, [veejay >= 1.5.60 ],
|
||||
dnl Check for Veejay Core
|
||||
have_veejaycore=false
|
||||
PKG_CHECK_MODULES( VEEJAYCORE, [veejaycore >= 1.5.65 ],
|
||||
[
|
||||
AC_SUBST(VEEJAY_CFLAGS)
|
||||
AC_SUBST(VEEJAY_LIBS)
|
||||
have_veejay=true
|
||||
AC_DEFINE(HAVE_VEEJAY,1, [Veejay 1.5.60 installed])]
|
||||
AC_SUBST(VEEJAYCORE_CFLAGS)
|
||||
AC_SUBST(VEEJAYCORE_LIBS)
|
||||
have_veejaycore=true
|
||||
AC_DEFINE(HAVE_VEEJAYCORE,1, [Veejay Core 1.5.65 installed])]
|
||||
,
|
||||
[have_veejay=false])
|
||||
[have_veejaycore=false])
|
||||
|
||||
if test x$have_veejay != xtrue ; then
|
||||
AC_MSG_ERROR([Cannot find veejay 1.5.60 or later])
|
||||
if test x$have_veejaycore != xtrue ; then
|
||||
AC_MSG_ERROR([Cannot find Veejay Core 1.5.65 or later])
|
||||
fi
|
||||
|
||||
have_sdl=false
|
||||
@@ -233,7 +233,7 @@ fi
|
||||
dnl Look for X
|
||||
AC_PATH_XTRA
|
||||
AM_CONDITIONAL(HAVE_X, test x$have_x = xyes)
|
||||
|
||||
AM_CONDITIONAL(HAVE_ALSA, test x$have_alsa = xyes)
|
||||
debugCFLAGS=""
|
||||
debug_or_profiling=""
|
||||
|
||||
@@ -754,7 +754,7 @@ AC_MSG_NOTICE([ Good luck! You can be the first! ])
|
||||
fi
|
||||
AC_MSG_NOTICE([])
|
||||
AC_MSG_NOTICE([ Required dependencies:])
|
||||
AC_MSG_NOTICE([ - Veejay 1.5.60 : ${have_veejay}])
|
||||
AC_MSG_NOTICE([ - Veejay Core 1.5.65 : ${have_veejaycore}])
|
||||
AC_MSG_NOTICE([ - POSIX Threads (pthread) : ${have_pthread}])
|
||||
AC_MSG_NOTICE([ - Gtk3 support (gui) : ${have_gtk3}])
|
||||
AC_MSG_NOTICE([ - Alsa support (midi sequencer) : ${have_alsa}])
|
||||
|
Before Width: | Height: | Size: 181 B After Width: | Height: | Size: 181 B |
|
Before Width: | Height: | Size: 112 B After Width: | Height: | Size: 112 B |
|
Before Width: | Height: | Size: 123 B After Width: | Height: | Size: 123 B |
|
Before Width: | Height: | Size: 121 B After Width: | Height: | Size: 121 B |
|
Before Width: | Height: | Size: 123 B After Width: | Height: | Size: 123 B |
|
Before Width: | Height: | Size: 121 B After Width: | Height: | Size: 121 B |
|
Before Width: | Height: | Size: 121 B After Width: | Height: | Size: 121 B |
|
Before Width: | Height: | Size: 837 B After Width: | Height: | Size: 837 B |
|
Before Width: | Height: | Size: 268 B After Width: | Height: | Size: 268 B |
|
Before Width: | Height: | Size: 218 B After Width: | Height: | Size: 218 B |
|
Before Width: | Height: | Size: 232 B After Width: | Height: | Size: 232 B |
|
Before Width: | Height: | Size: 213 B After Width: | Height: | Size: 213 B |
|
Before Width: | Height: | Size: 227 B After Width: | Height: | Size: 227 B |
|
Before Width: | Height: | Size: 210 B After Width: | Height: | Size: 210 B |
|
Before Width: | Height: | Size: 224 B After Width: | Height: | Size: 224 B |
|
Before Width: | Height: | Size: 223 B After Width: | Height: | Size: 223 B |
|
Before Width: | Height: | Size: 284 B After Width: | Height: | Size: 284 B |
|
Before Width: | Height: | Size: 189 B After Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 190 B After Width: | Height: | Size: 190 B |
|
Before Width: | Height: | Size: 194 B After Width: | Height: | Size: 194 B |
|
Before Width: | Height: | Size: 841 B After Width: | Height: | Size: 841 B |
|
Before Width: | Height: | Size: 140 B After Width: | Height: | Size: 140 B |
|
Before Width: | Height: | Size: 209 B After Width: | Height: | Size: 209 B |
|
Before Width: | Height: | Size: 577 B After Width: | Height: | Size: 577 B |
|
Before Width: | Height: | Size: 218 B After Width: | Height: | Size: 218 B |
|
Before Width: | Height: | Size: 928 B After Width: | Height: | Size: 928 B |
|
Before Width: | Height: | Size: 213 B After Width: | Height: | Size: 213 B |
|
Before Width: | Height: | Size: 220 B After Width: | Height: | Size: 220 B |
|
Before Width: | Height: | Size: 221 B After Width: | Height: | Size: 221 B |
|
Before Width: | Height: | Size: 645 B After Width: | Height: | Size: 645 B |
|
Before Width: | Height: | Size: 846 B After Width: | Height: | Size: 846 B |
|
Before Width: | Height: | Size: 223 B After Width: | Height: | Size: 223 B |
|
Before Width: | Height: | Size: 461 B After Width: | Height: | Size: 461 B |
|
Before Width: | Height: | Size: 528 B After Width: | Height: | Size: 528 B |