• 3 Posts
  • 28 Comments
Joined 2 years ago
cake
Cake day: July 16th, 2023

help-circle
  • Not only did I read the article, what you have quoted further confirms the misleading title, the source is anonymous and there is an interpretation of intent, not direct or open admission.

    Could the CCP be responsible, absolutely, is there clear evidence of admission, rather than international diplomatic posturing, not at all.

    If you believe there is a clear factual open admission and ownership of guilt by the CCP then please point me to it.

    Some leaders are not so subtle in international interactions when making threats, even in the full glare of public media.




  • What browser are you using and can you please post a site with embedding that does not work for you.

    I have Librewolf, Ublock set to medium mode, libredirect Redirect Type set to both, Embed Frontend set to Invidious but with no instance selected.

    Most sites with embedded youtube have ‘Watch on Youtube’ bottom left and you can just right click and select Redirect in librediract. Some don’t have that but most allow right click where you can select the url that can be pasted into FreeTube.












  • Mention is made of Resolve, which does work great as a professional grade video editor, and in the next breath codec issues are raised, which are not a Linux issue but proprietary licensing issue.

    For a simple workaround in Mint go to: /home/UserName/.local/share/nemo/scripts

    Create 2 files to convert videos from the right click menu and make them executable in the Permissions:

    #!/bin/bash

    for file; do ffmpeg -i “$file” -c:v dnxhd -profile:v dnxhr_hq -pix_fmt yuv422p -c:a pcm_s16le -f mov “${file%.*}”.mov

    done

    And:

    #!/bin/bash

    for file; do ffmpeg -i “$file” “${file}”.mp4

    done