gorgarp 2 Posted January 24, 2019 Posted January 24, 2019 (edited) This project is being abandoned in favor of Wolveix's. https://github.com/Wolveix/Plexus Please visit his project to see any future work. Hello, I’m working on a little project to iterate through my NAS and convert all files that are not easily direct played through my Roku. I’m posting it’s Github page here, in case it is of use to anyone else. I’m very open to input, commits, suggestions, etc. I’d love for this to be useful to the community. https://github.com/gorgarp/BatchConverter/ Edited January 25, 2019 by gorgarp 1
neik 863 Posted January 24, 2019 Posted January 24, 2019 Sounds great! There will be a lot of people that could end up using it. :-)
gorgarp 2 Posted January 24, 2019 Author Posted January 24, 2019 Thanks @@Luke @@neik ! If you guys have any suggestions or comments, I'm all ears!
DRAGUNSLAYER 2 Posted January 24, 2019 Posted January 24, 2019 An API call to update the library would be cool. Sent from my SM-G965W using Tapatalk
gorgarp 2 Posted January 24, 2019 Author Posted January 24, 2019 I have not. Want to put in a feature request on github and I'll put it in the roadmap?While I was to make this somewhat agnostic to server app (Sorry Luke!) we can always put in a prompt for: If Emby >> do thing 1
SilverPeak 0 Posted January 25, 2019 Posted January 25, 2019 I think this script will be useful because there are no Video Conversion programs that give users easy selections of what needs to happen and also works through the SSH. I've had to learn about ffmpeg & xbox one device formats + come up with code just to get something going! heres the code i've been using: for f in *.mkv; do /root/ffmpeg-git-20181123-amd64-static/ffmpeg -i "$f" -c:v libx265 -c:a ac3 -preset medium "${f%.mkv}_output.mkv"; done What i would suggest as improvement to your script is a design choice to make it like these GUI video converters that have a ton of options or better, evolve it into a script that just makes the user select the target device they wanna have the files compatible on. Keep a small database of popular devices like game consoles and the codec settings they accept and offer these as preset output formats. Thanks!
Sammy 767 Posted January 25, 2019 Posted January 25, 2019 Doesn't the PolyMorph plugin do this already? Sent from my SM-G960U1 using Tapatalk
3n8 7 Posted January 27, 2019 Posted January 27, 2019 Doesn't the PolyMorph plugin do this already? Sent from my SM-G960U1 using Tapatalk Not many custom variables on PolyMorph. And in my case i have stuff i want to convert and stuff i do not want to convert. I could use something like this to automatically convert media before i toss it into the emby library.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now