Skip to content
This repository has been archived by the owner on Mar 15, 2021. It is now read-only.

Commit

Permalink
modify UI
Browse files Browse the repository at this point in the history
  • Loading branch information
CatxFish committed Oct 5, 2017
1 parent f7cb9ef commit 7d2c61d
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 9 deletions.
3 changes: 2 additions & 1 deletion locale/en-US.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
VirtualCam="VirtualCam"
DelayFrame="Delay Frames"
DelayFrame="Buffered Frames"
StartOutput="Start"
StopOutput="Stop"
AutoStart="AutoStart"
Expand All @@ -10,3 +10,4 @@ CropLeft="Left"
CropRight="Right"
CropTop="Top"
CropBottom="Bottom"
Reset="Reset"
5 changes: 3 additions & 2 deletions locale/zh-TW.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
VirtualCam="虛擬攝影機"
DelayFrame="延遲格數"
DelayFrame="緩衝格數"
StartOutput="開始"
StopOutput="停止"
AutoStart="自動開始"
Expand All @@ -9,4 +9,5 @@ Apply="套用"
CropLeft="左側"
CropRight="右側"
CropTop="上側"
CropBottom="下側"
CropBottom="下側"
Reset="重置"
6 changes: 3 additions & 3 deletions readme.MD
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ The installer and compressed file can be found in [Release Page](https://github.

1. Unzip OBS-VirtualCam.zip and put it to your obs-studio install folder.
2. Run CMD as Administrator and register 32bit directshow source
> command: regsvr32 C:\Program Files (x86)\obs-studio\bin\32bit\obs-virtualsource.dll
> command: regsvr32 "C:\Program Files (x86)\obs-studio\bin\32bit\obs-virtualsource.dll"
3. Do it again to register 64bit directshow source
> command: regsvr32 C:\Program Files (x86)\obs-studio\bin\64bit\obs-virtualsource.dll
> command: regsvr32 "C:\Program Files (x86)\obs-studio\bin\64bit\obs-virtualsource.dll"

If you want to Remove the directshow filter , you can also use regsvr32 to do this
> command: regsvr32 /u C:\Program Files (x86)\obs-studio\bin\32bit\obs-virtualsource.dll
> command: regsvr32 /u "C:\Program Files (x86)\obs-studio\bin\32bit\obs-virtualsource.dll"
# Build
You will need cmake , visual studio2013 ,and build OBS project first.
Set following Cmake variables:
Expand Down
2 changes: 1 addition & 1 deletion src/virtual-output/virtual_properties.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ void VirtualProperties::showEvent(QShowEvent *event)
if (scene){
scene_name = QString::fromUtf8(obs_source_get_name(source));
ui->comboBox_source->clear();
ui->comboBox_source->addItem("Full Canvas");
ui->comboBox_source->addItem("Reset");
obs_scene_enum_items(scene, ListSource, (void*)ui->comboBox_source);
}
obs_source_release(source);
Expand Down
4 changes: 2 additions & 2 deletions src/virtual-output/virtual_properties.ui
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@
<property name="geometry">
<rect>
<x>30</x>
<y>20</y>
<y>16</y>
<width>319</width>
<height>16</height>
<height>20</height>
</rect>
</property>
<property name="text">
Expand Down

0 comments on commit 7d2c61d

Please sign in to comment.