WWBN / AVideo

Create Your Own Broadcast Network With AVideo Platform Open-Source. OAVP OVP
https://avideo.tube/AVideo_OpenSource
Other
1.92k stars 972 forks source link

Unable to get the Encoder running #9312

Closed AlexVinet closed 3 months ago

AlexVinet commented 3 months ago

Describe the question Hi, I followed the instructions here: https://github.com/WWBN/AVideo/wiki/How-to-install-LAMP,-FFMPEG-and-Git-on-a-fresh-Ubuntu-22.x-for-AVideo-Platform-version-11.x-or-newer

But the encoder doesn't seems to run. According to the information I found, the encoder should run at http://myhost.com/Encoder, but it is not. I'm sure I'm missing a step.

Can anyone help me please.

Screenshots Provide some screenshots to help us understand and explain your problem.

DanielnetoDotCom commented 3 months ago

Provide more details about the error and also provide the encoder logs

AlexVinet commented 3 months ago

I don't see any errors and I'm not sure where to find the Encoder logs. In the apache2 error.log it doesn't seems to have nothing related to the encoder.

DanielnetoDotCom commented 3 months ago

Check in

Encoder/videos/avideo.log

AlexVinet commented 3 months ago

The file doesn't exist.

I used: sudo find / -name avideo.log

and only got: /var/www/html/AVideo/videos/avideo.log

But the /var/www/html/AVideo-Encoder/ folder exist.

GreenDragonTavern commented 3 months ago

You installed the encoder in a directory that requires a separate domain. If you want to use http://myhost.com/Encoder and you installed AVideo in the default of /var/www/html/AVideo/ then use cd /var/www/html/AVideo/ && sudo git clone https://github.com/WWBN/AVideo-Encoder.git Encoder. This way the encoder is located at /var/www/html/AVideo/Encoder and http://myhost.com/Encoder resolves as desired.

AlexVinet commented 3 months ago

Hello @GreenDragonTavern, it worked thank you very much.