mirror of
https://github.com/game-stop/veejay.git
synced 2025-12-14 20:00:01 +01:00
backported obsolete resampler from ffmpeg (issue #12) added lvdshared plugins to facilite #16 on local machine via shared memory fixes to reloaded ui (maximize screen and others) added -b and -a to reloaded commandline to resp. enable beta feature (SRT) and to connect to all (local running veejays) fixes to built-in FX solve issue #23 in reloaded (samplelist load image) add VIMS_GET_SHM_EXT to query remote veejay properties add VIMS_GET_SAMPLE_IMAGE to grab any frame (issue #23) add VIMS_SPLIT_CONNECT_SHM to request part of frame via shm fixes to general error messages and warnings replaced env VEEJAY_SCREEN_SIZE with VEEJAY_DESKTOP_GEOMETRY added env VEEJAY_VIDEO_POSITION bump version to 1.5.58
24 lines
529 B
Bash
24 lines
529 B
Bash
#!/bin/bash
|
|
# use SDL hardware acceleration
|
|
|
|
if [ -z $@ ]
|
|
then
|
|
veejay
|
|
exit
|
|
fi
|
|
|
|
export SDL_VIDEO_HWACCEL=1
|
|
|
|
# setup video window on secundary monitor (twinview desktop)
|
|
# desktop=2526x1024, second screen starts at 1600, size is 1024x768
|
|
export VEEJAY_DESKTOP_GEOMETRY=2624x1024+1600x0
|
|
export VEEJAY_VIDEO_SIZE=1024x768
|
|
export VEEJAY_VIDEO_POSITION=0x0
|
|
|
|
# highest possible quest
|
|
export VEEJAY_PERFORMANCE=quality
|
|
|
|
# start veejay in verbose, output video in 1024x768
|
|
# expand parameters given to script
|
|
veejay -v -w1024 -h768 $@
|