Seems like my Pi3 can't handle any kind of 1080p video using libreelec. I know this can't be the case. I must be doing something wrong. Can anyone give me any suggestions. Video files are on wired network.
Thanks!
Seems like my Pi3 can't handle any kind of 1080p video using libreelec. I know this can't be the case. I must be doing something wrong. Can anyone give me any suggestions. Video files are on wired network.
Thanks!
Will they play when connected locally ? (no network)
The very first Raspberry Pi can already play 1080p video pretty good.
Got a full debug log for us via pastebin?
I have to try to get a log. It's not installed at my home but my sisters 3 hours away :(. But she showed me through skype. What is pastebin and how do you use it?
HEVC (H.265) files require more horsepower to play. Stay away from these files with a RPi
HEVC (H.265) files require more horsepower to play. Stay away from these files with a RPi
blueribb is correct - there is no way the RPi3 can normally play HEVC at 1080p. Maybe the RPI3B+ might be able to but I haven't tried. I tried a milhouse build on a normal RPi3 which had a few tweaks and seemed to work at 720p.
Easiest way is to use "Handbrake" to convert to X264 - although not on a Pi unless you have a few weeks to spare
Milhouse builds (Kodi Leia) do a pretty good job with HEVC 1080p videos on a RPi2/3/b+. Obviously not the very high bitrate videos, but the usual rips video have a good track record.
So anyone have any suggestions with, say, ffmpeg to transcode these videos to something the PI could handle?
Thanks!
google "h265 to h264"
Yea did that. I was just sorta hoping someone here would have a good solution specific to pi. I'll play around with it and see.
have a good solution specific to pi
use milhouse builds the latest Kodi18 builds have several improvements at the HEVC department
A quick search shows many examples. This should work on a Pi.
INPUT="$1"
for i in *.mkv ; do
ffmpeg -i "$i" -bsf:v h264_mp4toannexb -sn -map 0:0 -map 0:1 -vcodec libx264 "$i.ts"
mv "$i.ts" "$i.mpg"
sleep 3
done
From Here
I cannot use 18 yet. I have to wait for stable releases on all platforms since I am using a shared database.
You may have a look into emby at your NAS and "emby for kodi" for your Clients, that superseedes the MYSQL shared db by ages (incl the possibility to transcode).
So Emby replaces MySQL? Is there documentation on this?
it doesn't replace it, it basically supersedes it.
Emby in general is something like Plex (just free), there you can add multible users, age limits etc ... with the Emby for Kodi Addon you can "grab" that db and use it natively at Kodi. It also supports transcoding for usage over the internet/wlan etc ...