streamaserver / streama

Self hosted streaming media server. https://docs.streama-project.com/
MIT License
9.63k stars 987 forks source link

A few suggestions to consider. #380

Open strayedsoul2003 opened 7 years ago

strayedsoul2003 commented 7 years ago
  1. Somewhere on the Admin screen show the current version
  2. Have a shutdown and a restart button on the Admin Screen
  3. Security Levels.. I have multiple kids accessing this and would like to set levels for me, my wife, and ones for the different kids.. There are some things I do not want them watching.

there is of course conversion .. i currently have a batch file running on windows 10..

for /f "delims=" %%A in ('dir /b/s *.avi') do ( c:\ffmpeg\ffmpeg.exe -i "%%~A " -c:v libx264 -preset slow -crf 20 -c:a aac -b:a 128k "%%~dpA/%%~nA.mp4" del "%%~A" )

this converts my AVI's to proper codec.. Would me nice to have a option to convert and replace in strema the file association if file found to be wrong codec.

I am sure some these have been suggested.. Might want to just make a suggestions thread and allow voting on popularity of suggestions..

Thank you very much for a wonderful piece of coding.. Its brilliant.

dularion commented 7 years ago

I like the suggestions! And thanks for your kind words :)

I like the idea of a suggestion thread, each suggestion should be its own comment then, right? otherwise voting doesnt quite work so well. You are welcome to kick one off!

virdb commented 4 years ago

My two cents:

I use this command to prepare my videos for streama:

HandBrakeCLI -i $sourcefile -o $destinationfile --encoder x264 --vb 900 --ab 128 --optimize --audio-lang-list ita --first-audio

it's configured to just use Italian audio, but can be easly adapted to let the user a choice about what languages extract.

Thanks for your great software!