All Projects → myinnos → GiphyImageResultsPreview

myinnos / GiphyImageResultsPreview

Licence: Apache-2.0 license
Library for GIF results, preview, play, share everything at one place!

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to GiphyImageResultsPreview

SwiftyGiphy
A UI and API layer for Giphy discovery and integration.
Stars: ✭ 90 (+221.43%)
Mutual labels:  giphy, gif, giphy-api
giphygram
🔎 Experimental React application for searching GIF images on GIPHY
Stars: ✭ 23 (-17.86%)
Mutual labels:  giphy, gif, giphy-api
gifs
gifs for thought
Stars: ✭ 19 (-32.14%)
Mutual labels:  gifs, gif-library, gif
gifted
Turn any short video into an animated GIF quickly and easily.
Stars: ✭ 15 (-46.43%)
Mutual labels:  gifs, gif
giphy-react-native-sdk
GIPHY react native SDK
Stars: ✭ 28 (+0%)
Mutual labels:  gifs, giphy
alvito
Alvito - An Algorithm Visualization Tool for Python
Stars: ✭ 52 (+85.71%)
Mutual labels:  gifs, gif
Pgn2gif
A small tool that generates gif of a chess game
Stars: ✭ 65 (+132.14%)
Mutual labels:  gifs, gif
giphy-js
Official GIPHY packages
Stars: ✭ 101 (+260.71%)
Mutual labels:  gifs, giphy
Abmediaview
Media view which subclasses UIImageView, and can display & load images, videos, GIFs, and audio and from the web, and has functionality to minimize from fullscreen, as well as show GIF previews for videos.
Stars: ✭ 79 (+182.14%)
Mutual labels:  gifs, gif
Pornsearch
Easy way to search for porn content!
Stars: ✭ 156 (+457.14%)
Mutual labels:  gifs, gif
Gifs
😂 📷 🎇 Storage place for all mah gifs.
Stars: ✭ 1,619 (+5682.14%)
Mutual labels:  gifs, gif-library
Pi Timelapse
Time-lapse app for Raspberry Pi computers.
Stars: ✭ 220 (+685.71%)
Mutual labels:  gifs, gif
GTA-One-Liners
A collection of gifs made out of almost every dialogue in GTA and other games.
Stars: ✭ 37 (+32.14%)
Mutual labels:  gifs, gif
TTFancyGifDialog-Android
TTFancyGifDialog makes your Android Dialog Fancy and more Beautiful. A library that makes normal Android Dialog to high level Dialog with many styling options and fully customizable. Make dialog from few lines of code.
Stars: ✭ 61 (+117.86%)
Mutual labels:  gif-library, gif
react-native-giphy
Integrate GIPHY into your React Native project (works with react-native-gifted-chat)
Stars: ✭ 25 (-10.71%)
Mutual labels:  giphy, gif
Gifcurry
😎 The open-source, Haskell-built video editor for GIF makers.
Stars: ✭ 830 (+2864.29%)
Mutual labels:  gifs, gif
gifbar
🦄 Find Awesome Gif's right in your Menu Bar
Stars: ✭ 37 (+32.14%)
Mutual labels:  giphy, gif
UnityGiphy
Library for using the GiphyAPI in Unity to get and play random Gifs as MP4s
Stars: ✭ 35 (+25%)
Mutual labels:  giphy, gif
Gify
JavaScript API for decoding/parsing information from animated GIFs using ArrayBuffers.
Stars: ✭ 124 (+342.86%)
Mutual labels:  gifs, gif
Gif For Cli
opensource.googleblog.com/2018/06/tenor-gif-for-cli.html
Stars: ✭ 2,772 (+9800%)
Mutual labels:  gifs, gif

Giphy Image Results Preview

Library for GIF results, preview, play, share everything at one place!

Giphy Image Results Preview - Example

Download Demo APK from HERE

Kindly use the following links to use this library:

In build.gradle (Project)

allprojects {
  repositories {
			...
		maven { url "https://jitpack.io" }
	}
}

And then in the other gradle file(may be your app gradle or your own module library gradle, but never add in both of them to avoid conflict.)

dependencies {
	compile 'com.github.myinnos:GiphyImageResultsPreview:1.0'
}

How to use

GiphyTask Will gives you list of results as list #Example

String SEARCH_QUERY = "<SEARCH_QUERY>"; //ex: Funny
String GIPHY_KEY = "<GIPHY_KEY>"; //you can pass empty parameter to use default key
int limit = 100; //results limit can set from 1 to 100

new GiphyTask(Helper.getGiphyQueryUrl(SEARCH_QUERY,
                limit, GiphyQueryBuilder.EndPoint.SEARCH, GIPHY_KEY), new GiphyTask.Callback() {
            @Override
            public void onResponse(List<Gif> gifs) {
                // play with gif results
            }
        }).execute();

GET YOUR GIPHY KEY BY SUBMIT YOUR DEATILS FROM HERE - api.giphy.com/submit

To preview gif image to imageView from results : used glide here | you can use picasso etc., #Example

Glide.with(getContext()).load(gif.getPreviewImageUrl()).into(previewImage);

To play/pause gif image from results #Example-XML | #Example

 <in.myinnos.gifimages.gif.GifView
        android:id="@+id/gif_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@android:color/black"
        android:visibility="gone"
        app:loop="true"
        app:muted="true"
        app:showSpinner="true"
        app:stopSystemAudio="false" />

GifView gifView = (GifView) itemView.findViewById(R.id.gif_view);
gifView.start(gif.getPreviewMp4Url());

Share gif globally #Example

new ShareGif(getContext(), gif.getGifUrl()).execute();
Any Queries? or Feedback, please let me know by opening a new issue!

Contact

Prabhakar Thota

If you appreciate my work, consider buying me a cup of to keep me recharged 🤘 by PayPal

License

Copyright 2017 MyInnos

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].