English

Video player and browser - Watch videos online

Discover seamless video streaming and web browsing in one dynamic app.

Video player and browser
  • 3.0.8 Version
  • 4.7 Score
  • 3M+ Downloads
  • Free License
  • 0+ Content Rating
Download Android APK (91.57 MB)
Old Versions
CONS

ad on top of screen

translation not working all the time

Introducing Video player and browser

The app serves as a standard media, movie, clip, and video player.

A straightforward and user-friendly video player designed for beginners, providing the best viewing experience.

Prominent Features:

• Ability to detect and play all videos stored externally.

• Video browser functionality that allows users to search for desired videos within the app's browser.

• Intelligent video manager offering features such as recent videos, folder lists, playlist creation, and marking favorites.

• Streamlined file management enabling actions like deletion, renaming, sharing, hiding videos, and folders.

• Capable of playing high-quality 8k, 4k ultra HD videos using SW (Software decoders) and HW (Hardware decoders).

• Pan and zoom feature for resizing videos to preferred sizes while watching.

• Support for playing various popular video file formats.

• Casting videos to TV via wifi direct for an enhanced viewing experience.

• Adjust sound, brightness, and playback speed by tapping on the video screen.

• Functions as a music player app by importing and playing music.

• Ability to play videos and songs in the background.

• Offline subtitle support.

• Boasts a material design interface, simplistic yet elegant.

You can easily access and enjoy a wide range of videos through this application.

Experience great entertainment with this app - you can count on it!

Best!

How It Works in 6 Definitive Steps

1: What defines an HTML5 Video Player?

When speaking with people in the streaming industry, the way they define what a player is can vary significantly due to their experience and the initiatives of the company they are a part of. Streaming services normally take a holistic view and see the player as everything that interacts with their users, which can include UI controls, recommendations, and more. However, solution vendors or development teams tend to take the opposite approach and believe the player has many layers, with UI controls and other aspects being a part of different pieces of the player stack. 

At the base of those layers, is the core framework of the player. It is an essential piece and one that can be packaged into a Software Development Kit (SDK) to make it easier for developers to integrate into the application they are working on. Along with the framework, APIs are another layer that helps integrate many different components and enable a vast amount of integrations. APIs allow applications to control the playback experience by instructing the player or listening for player events, which require decisions to be made. A few examples are: 

- Play/Pause

- Seek (Scrub or jump)

- Subtitle settings

- Video timing events to determine when to insert an ad

- DRM configurations to ensure authorized users can see content

On top of those layers, there’s another that contains the UI aspects of the player, such as the buttons, menus, and options for viewers to control playback. Last but not least, an additional layer affects the business logic behind it all, which makes decisions such as:

- Allowing users to skip ads

- Select the best subtitle language for the viewer’s location

- Automatically loading the next video when the viewer finishes their current stream.

2: How an HTML5 Video Player interacts with your workflow

The player also plays an important role in the end-to-end workflow and even though it is the last part, all requests for content stem from it. It is affected by all of the other pieces before and after, meaning it needs to have the correct configuration settings to work along with what you’ve put together. The video viewed by users for VOD workflows will be a compressed version of the original file that is normally stored on a local or cloud storage, while live video will be ingested from the point where the stream originated from. To cut down the size of the original file for VOD, the encoder steps in to compress it, and to make sure it can meet the needs of network conditions on the viewer’s end, it can apply a bitrate ladder to it, making it available in different qualities to cover a range of viewing environments.

The packager then “packages” the encoded video into standard protocols that are supported by devices such as HLS, DASH. Content security measures, such as DRM (Digital rights management), can be applied at the packager layer to the specific protocols. Once the content is done being processed, it is then stored in the origin where the CDN will request it from and deliver it to the player on the end user’s device. Lastly, Analytics will play a crucial role in monitoring the playback experience of your viewers as it collects data and helps you identify if any issues are happening with your stream.

3: How different API factors affect the stream

Along the workflow described in the previous paragraph, APIs can and will be a big piece of each step in the streaming flow, especially when it comes to the player & device. They can be configured to manipulate the behavior parameters and allow applications to instruct the player to perform certain actions such as selecting a specific audio track or video quality. The Player APIs typically allow applications to control player functionality in:

- Core Playback (Ex. subtitles, play, pause, & buffer levels)

- Advertising (Ex. ads to play, inclusion of CT URLs, ad timing & restrictions)

- DRM (Ex. type, provider, URL & persistence)

- Network (Ex. manipulations of requests & responses)

During playback, the APIs can also be configured to send events to the applications, which helps trigger business logic that has been implemented and can base decisions on the metrics provided by the player. Events can be:

- The start or end of an ad-break

- The beginning or end of a live casting session

- Download of progress updates

- Video quality changes

- Playback errors

These events are critical for applications as it gives them the ability to apply dynamic viewing experiences to interactions made by the viewer and adapt the playback quality to meet network requirements. The ability to change qualities has to do with the stream having adaptive bitrates (ABR) available. When content is requested, the player starts by identifying the current network conditions & device/OS type so that it knows the best quality and bitrate to request content in. It will also understand the available buffer, so if there are any network interruptions, it won’t immediately affect the viewer and give the steam time to reconnect. 

4: Are all features and capabilities necessary?

For all of the APIs and the features they enable, not everything is important for every workflow. The more features you add to your player, the heavier it is and that’s why load time truly depends on the number of items your user’s device/browser needs to load up when trying to access your content. To give viewers the best experience without having to have every feature enabled, modular player structures are required. 

Player modules help prioritize the features you want to enable for your viewers during their viewing experience and will directly have an impact on decreasing load time. A good example of this is DRM protection. If a stream is DRM protected, it can include a DRM module on the player but if the stream is not protected, there is no need for this module to be a part of your player. An additional item to this is that players can also offer specific modules for specific devices, such as Smart TVs. These device-specific modules help alter the behavior of the player.

5: Metrics to measure your stream

The features you’ve implemented for your player are necessary, however, one of the most important pieces is the analytics that will help you monitor the playback from your streams as mentioned above. Analytics are essential and give you the ability to optimize and grow your streaming capabilities with the data from your audience viewing your content, ultimately enabling you to offer a greater quality of experience. The data provided from the playback you’re monitoring can be measured by multiple metrics and used to create a composite score that reflects what is important to your business goals and model. For example, if you’re streaming live content, the metrics you care about will be different from a company that streams only VOD content. 

To show you what the metrics might look like, some common metrics are:

Quality of experience on the streaming session (per device) 

- Video startup time

- DRM load time

- Buffer percentage

- Playback errors 

- Playback Failures

- Average bitrate

- Resolution played in

Number of impressions – (important for ad-driven businesses)

Number of viewers – (important for subscriber business models)

6: SDKs and Testing

Media isn’t always available or viewable on every device and to guarantee a good quality of experience for viewers, the player has to support the device it’s being streamed on. To make it easy for developers to utilize an HTML5 video player, they focus on increasing the number of devices that can stream content smoothly and boost the playback quality, through SDKs (Software Developer Kits). The SDK is essentially the player written in the programming language the developer uses allowing them to quickly integrate it into their application and is usually provided for iOS, Android, Roku, or other programming environments. These SDKs are essential, as they enable developers to support devices faster and have more time to focus on creating feature-rich applications. As these SDKs are built to make it work seamlessly with the platform, they also make it have a better, more stable end-to-end experience for viewers.

Supporting more devices is a necessity, but not always feasible as it depends on the amount of time you and your team can devote to implementing the SDKs. This is where testing becomes essential and can help save a team time as they can see how the playback of their stream is acting on devices they’d like to support next. At Bitmovin, we’ve implemented this to our system through Stream Lab, which enables anyone to test active streams on actual devices to see how the stream functions in a real streaming environment. It’s our latest update and one that will help empower developers to have an easier time deciding which SDKs they would like to implement next.

Show More
Information
  • Version3.0.8
  • UpdateSep 12, 2024
  • Developer9xgeneration
  • CategoryVideo Players
  • Requires AndroidAndroid 6+
  • Downloads3M+
  • Package Namecom.ninexgen.congancand
  • Signaturef580fdea1c806a6e237ae93b9644e924
  • Available on
  • ReportFlag as inappropriate
User Reviews
4.7 9 Reviews
5
4
3
2
1
  • Sumin Park
    Sumin Park

    That is just so amazing! You can enjoy the full movie theater experience right on your own device.

  • RJON JON
    RJON JON

    You know there's this really cool ad that just disappears while you're watching, and you can easily adjust the volume and brightness by swiping up and down. This app is so amazing, definitely a must-have! I would give it a 6-star rating if I could!

  • M GS
    M GS

    This app is terrible. The ads keep popping up and I can't close them, so I can't watch the video. There was a Facebook ad and no way to exit out of it, so I had no choice but to uninstall it.

  • Dean Probyn
    Dean Probyn

    I really like it, but I couldn't give it more than 4 stars because I have to keep going back to the app for the next song when listening to a playlist. Also, it doesn't save to the playlist when I press save. I only use it when drawing and listening to music, but it's hard to concentrate if I have to constantly go back to the app to change the song.

  • Nadeem M
    Nadeem M

    Every time you play a file, there's an ad that pops up.

  • Mary Magdy
    Mary Magdy

    I'm not sure about this app yet, I have a lot of questions. Does it need Wi-Fi connection? It would be nice if there was a video player like YouTube that doesn't need Wi-Fi or data. So, wherever you go, you can watch videos without needing Wi-Fi. I want it to be free, like other apps where games don't require Wi-Fi or data. Is there such an app?

  • johanna googoo
    johanna googoo

    Opened the app, saw a 15-second ad, and deleted it immediately.

  • z D
    z D

    Too many ads. But hey, if drama is your thing, then this app is perfect for you.

  • Pedro Mello
    Pedro Mello

    This app is so helpful! It solved the issue I had with my movie where the audio wasn't playing. Thanks to the developer of the app!

Security Status
Clean

It’s extremely likely that this software program is clean.

What does this mean?

We have scanned the file and URLs associated with this software program in more than 50 of the world's leading antivirus services; no possible threat has been detected.

  • Name: Video player and browser
  • Package Name: com.ninexgen.congancand
  • Signature: f580fdea1c806a6e237ae93b9644e924