Giter Site home page Giter Site logo

iamlobinho / bettertwitfix Goto Github PK

View Code? Open in Web Editor NEW

This project forked from dylanpdx/bettertwitfix

1.0 0.0 0.0 14.13 MB

Fix Twitter video embeds in Discord (and Telegram!)

License: Do What The F*ck You Want To Public License

Shell 1.43% Python 87.58% HTML 8.13% Dockerfile 2.85%

bettertwitfix's Introduction

vxTwitter / fixvx

(A fork of TwitFix) Basic flask server that serves fixed twitter video embeds to desktop discord by using either the Twitter API or Youtube-DL to grab tweet video information. This also automatically embeds the first link in the text of non video tweets (API Only)

Differences from TwitFix

TwitFix exposed all recently processed tweets publicly via a "latest" and "top" page.

Even though Tweets are public, it was a personal concern for me that a tweet with potentially sensitive information in it could suddenly be shown to however many people were browsing the latest tweets page, and could be used as a tool for harassment. This was removed in The following commit

Additionally, vxTwitter has a 'none' cache option, which is intended to be used behind a service like CloudFlare. vxtwitter.com currently runs with this option enabled to protect user privacy.

How to use the hosted version

Just replace twitter.com with vxtwitter.com on the link to the tweet! https://twitter.com/jack/status/20 -> https://vxtwitter.com/jack/status/20

You can also replace x.com links with fixvx.com

API

If you're a nerd like me and want to use information about a tweet in your code, you can make a request to api.vxtwitter.com to get basic information about a tweet: https://api.vxtwitter.com/Twitter/status/1577730467436138524

{
    "date": "Wed Oct 05 18:40:30 +0000 2022",
    "date_epoch": 1664995230,
    "hashtags": [],
    "likes": 21664,
    "mediaURLs": [
        "https://video.twimg.com/tweet_video/FeU5fh1XkA0vDAE.mp4",
        "https://pbs.twimg.com/media/FeU5fhPXkCoZXZB.jpg"
    ],
    "media_extended": [
        {
            "altText": "GIF of Laura Dern in Jurassic Park as Dr. Ellie Sattler taking off her sunglasses in shock",
            "duration_millis": 0,
            "size": {
                "height": 206,
                "width": 194
            },
            "thumbnail_url": "https://pbs.twimg.com/tweet_video_thumb/FeU5fh1XkA0vDAE.jpg",
            "type": "video",
            "url": "https://video.twimg.com/tweet_video/FeU5fh1XkA0vDAE.mp4"
        },
        {
            "altText": "picture of Kermit doing a one legged stand on a bicycle seat riding through the park",
            "size": {
                "height": 1007,
                "width": 1179
            },
            "thumbnail_url": "https://pbs.twimg.com/media/FeU5fhPXkCoZXZB.jpg",
            "type": "image",
            "url": "https://pbs.twimg.com/media/FeU5fhPXkCoZXZB.jpg"
        }
    ],
    "replies": 2911,
    "retweets": 3229,
    "text": "whoa, it works\n\nnow everyone can mix GIFs, videos, and images in one Tweet, available on iOS and Android https://t.co/LVVolAQPZi",
    "tweetID": "1577730467436138524",
    "tweetURL": "https://twitter.com/Twitter/status/1577730467436138524",
    "user_name": "Twitter",
    "user_screen_name": "Twitter"
}

See the following page for more info on the API

Note: If you enjoy this service, please considering donating via Ko-Fi to help cover server costs

I do not monitor any tweets processed by this server. Additionally, if you plan on hosting the code yourself and are concerned about this, be sure to check how to disable logging on the web server you are using (i.e Nginx)

How to host

See the following page

Config

vxTwitter generates a config.json in its root directory the first time you run it, the options are:

API - This will be where you put the credentials for your twitter API if you use this method

database - This is where you put the URL to your mongoDB database if you are using one

link_cache - (Options: db, json)

  • db: Caches all links to a mongoDB database. This should be used if you are using uWSGI and are not just running the script on its own as one worker
  • json: This saves cached links to a local links.json file
  • dynamodb: Saves cached links to a DynamoDB database - set table to the table name to cache links to.
  • none: Does not cache requests. Not reccomended as you can easily use up your Twitter API credits with this. Intended for use with another cache system (i.e NGINX uwsgi_cache)

color - Accepts a hex formatted color code, can change the embed color

appname - Can change the app name easily wherever it's shown

repo - used to change the repo url that some links redirect to

url - used to tell the user where to look for the oembed endpoint, make sure to set this to your public facing url

combination_method - using c.vxtwitter as the url causes vxTwitter to combine all images in the post into one. This is CPU intensive, so you might not want it running on the same machine that's serving requests. When combination_method is set to local, it will use the local machine to combine the images. This requires pillow to be installed. If you want to use another server, replace local with the URL to the endpoint which combines images. Both methods use the code in the combineImg module. Inside, there's also a Dockerfile intended to be deployed as a combination endpoint on an AWS Lambda function.

Other stuff

We check for t.co links in non video tweets, and if one is found, we direct the discord useragent to embed that link directly, this means that twitter links containing youtube / vimeo links will automatically embed those as if you had just directly linked to that content

This project is licensed under the Do What The Fuck You Want Public License

bettertwitfix's People

Contributors

dylanpdx avatar daisyuniverse avatar dependabot[bot] avatar adryd325 avatar doruksega avatar izofeu avatar qtlunya avatar iamlobinho avatar flifloo avatar fhrach4 avatar cbondurant avatar abbeysside avatar vocaned avatar nekromateion avatar cabiste-dev avatar dangeredwolf avatar jackenmen avatar

Stargazers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.