Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions README.es-ES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
[English](README.md) | [繁體中文](README.zh-TW.md) | [Español](README.es-ES.md)

# Plugin de Reacción de Imagen para OBS

Imagen que reacciona a la fuente de sonido.

## Instalación de binarios

Descarga los binarios desde las [versiones oficiales](https://github.com/scaledteam/obs-image-reaction/releases/) o una versión más fácil de usar de [ashmanix](https://github.com/ashmanix/obs-image-reaction/releases).

Para Windows, mueve el contenido del plugin a tu directorio de instalación de OBS. Normalmente está instalado en "C:\Program Files\obs-studio".

Para GNU/Linux, coloca la carpeta "libimage-reaction" en la carpeta "\~/.config/obs-studio/plugins/".

Para Mac OS, prueba este port de ashmanix: [https://github.com/ashmanix/obs-image-reaction](https://github.com/ashmanix/obs-image-reaction) .

## Compilar e instalar en GNU/Linux:

```
git clone https://github.com/scaledteam/obs-image-reaction
cd obs-image-reaction
mkdir build
cd build
cmake ..
make
mkdir -p ~/.config/obs-studio/plugins/libimage-reaction/bin/64bit
cp libimage-reaction.so ~/.config/obs-studio/plugins/libimage-reaction/bin/64bit/
cp -r ../data ~/.config/obs-studio/plugins/libimage-reaction/
```

## Compilar para Windows desde GNU/Linux:

Necesitas descargar MinGW, el código fuente de OBS Studio, Wine, e instalar OBS Studio usando wine.

```
git clone https://github.com/scaledteam/obs-image-reaction
cd obs-image-reaction
mkdir build-win
cd build-win
cmake .. -DCMAKE_SYSTEM_NAME=Windows -DCMAKE_CXX_COMPILER=/usr/bin/x86_64-w64-mingw32-g++-win32 -DCMAKE_C_COMPILER=/usr/bin/x86_64-w64-mingw32-gcc-win32 -DLIBOBS_INCLUDE_DIR=~/git/obs-studio-27.0.1/libobs -DLIBOBS_LIB=~/.wine/drive_c/Program\ Files/obs-studio/bin/64bit/obs.dll
make
```

Ahora mueve libimage-reaction.dll al directorio de plugins de OBS.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[English](README.md) | [繁體中文](README.zh-TW.md)
[English](README.md) | [繁體中文](README.zh-TW.md) | [Español](README.es-ES.md)

# OBS Image Reaction Plugin
Image that reacts to sound source.
Expand Down
2 changes: 1 addition & 1 deletion README.zh-TW.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[English](README.md) | [繁體中文](README.zh-TW.md)
[English](README.md) | [繁體中文](README.zh-TW.md) | [Español](README.es-ES.md)

# OBS 聲控圖片插件
根據音訊來源變化顯示不同圖片的 OBS 插件。
Expand Down