FDH2 / UxPlay

AirPlay Unix mirroring server
GNU General Public License v3.0
1.53k stars 78 forks source link

compiled cli entries for videoflip #287

Closed steveredden closed 5 months ago

steveredden commented 5 months ago

This was super helpful - thank you:

../wiki/patch-for-broken--videoflip-method-in-GStreamer-1.22.0

Here are the compiled commands I entered, if you wanted to add them to the wiki (I couldn't figure out how to PR on the wiki specifically 🤔 )

  1. mkdir ~/gstream-patch
  2. cd ~/gstream-patch
  3. wget https://github.com/FDH2/UxPlay/files/14551547/gst_videoflip_1_22_0_diff.txt
  4. sudo nano /etc/apt/sources.list
  5. >> uncomment out the deb-src entries; save; exit <<
  6. sudo apt update
  7. sudo apt install devscripts -y
  8. sudo apt build-dep gstreamer1.0-plugins-good -y
  9. apt source gstreamer1.0-plugins-good
  10. cd gst-plugins-good1.0-1.22.0
  11. debuild
  12. patch -p1 < ../gst_videoflip_1_22_0_diff.txt
  13. cd obj*
  14. ninja
  15. cd gst/videofilter
  16. strip libgstvideofilter.so
  17. sudo cp libgstvideofilter.so /usr/lib/aarch64-linux-gnu/gstreamer-1.0/
  18. sudo reboot
fduncanh commented 5 months ago

Thank you. I added your recipe to the wiki https://github.com/FDH2/UxPlay/wiki/patch-for-broken--videoflip-method-in-GStreamer-1.22.0