• 2 Posts
  • 49 Comments
Joined 2 years ago
cake
Cake day: July 26th, 2023

help-circle
  • I have gotten more interaction with pixelfed than with Instagram.

    I have more followers in 1 year on pixelfed than 4 years on Instagram.

    About 60% of my followers are only fans bots and the other 30% are people I know. The last 10% are organic followers who like my photos. I don’t do short form videos so I don’t have any lasting engagement.

    I have advertised my pixelfed I think twice on the fediverse. But not any more than that.

    If you want to have the community, I’ve heard that flickr is probably the best. Many people use it and it’s photography focused.

    Instagram is taken over by short form videos. If you’re not doing that or making really really good photos in unique areas, then you’ll max out at 2-3 hundred followers.






  • I am running Jellyfin in an Open Media Vault VM on top of Proxmox.

    Jellyfin is in docker in OMV.

    All disks are mounted in OMV and then mounted in Docker.

    I have a 14600k that has an iGPU passthrough and it works fine. (Same generation iGPU I think)

    mkdir /lib/firmware/i915/
    cd /lib/firmware/i915/
    wget https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/plain/i915/adls_dmc_ver2_01.bin
    wget https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/plain/i915/tgl_guc_70.bin
    wget https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/plain/i915/tgl_guc_70.1.1.bin
    wget https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/plain/i915/tgl_huc.bin
    update-initramfs -u
    

    Then try this docker container to see if encoding works

    docker run --rm ghcr.io/linuxserver/ffmpeg ffmpeg -hwaccels
    

    Run the container

    docker run --rm \
      --device /dev/dri:/dev/dri \
      --entrypoint ffmpeg \
      ghcr.io/linuxserver/ffmpeg \
      -init_hw_device qsv=hw:/dev/dri/renderD128 \
      -hwaccel qsv -hwaccel_device hw -hwaccel_output_format qsv \
      -f lavfi -i testsrc=duration=3:size=1280x720:rate=30 \
      -vf 'format=nv12,hwupload=extra_hw_frames=64' \
      -c:v h264_qsv -f null -
    

    I’m on mobile so formatting maybe shit. But I think you can get the right idea with this.