Category: Uncategorized
-
How to check whether PHP is installed in Mac?
To check the whether PHP is installed in Mac, open the terminal and type php -v. This will display the PHP version installed in the system.
-
Broadcasting Industry in the internet Era
The internet is a global computer network providing a variety of information and communication facilities, consisting of interconnected networks using standardized communication protocols. The broadcasting industry comprises of radio and television stations as well as networks that create content or attain the right to broadcast prerecorded television and radio programs. Broadcasting is the distribution of […]
-
Agile Development Methodology
Software Development Life Cycle (SDLC) helps in quality planning for any product. It is a framework for the planning, control, creation, testing, and delivery of software. It mainly consists of different phases, requirements and analysis, design, coding, testing, deployment, and maintenance. Depending on all the pre-decided parameters, various SDLC methodologies are worked out. The most […]
-
Custom Android STB
These are the new technology television boxes that are gaining popularity fast globally. These are the devices that you can plug into your television and watch a variety of videos from sites or applications as well as shows. They can run the operating systems of android televisions and have been in use since 2014 when […]
-
Youtubers move towards SmartTV Distribution
When Jawed Karim, Steven Chen and Chad Hurley created the YouTube video-sharing service platform in 2005, they gave life to youtubers. These are the content creators for the platform who act as sources of both information and entertainment through YouTube channels and YouTube subpages. The amazing thing about working as a YouTube content creator […]
-
OTT Consulting: Team Nutcrackerz
OTT exemplifies over the top and it refers to the providence of media, Film or television content through an uninterrupted internet connection rather than a cable or satellite platform. The young generation has made over the top popular due to their high usage of the applications that enhance the live streaming of movies anytime, anywhere. […]
-
Smart TVs: Advantage Hotels!
Vacations get better when you are staying in hotel rooms where you can stream or continue watching your favorite reality shows and continue enjoying your Netflix episodes as expected. SmartTV is both a television set with advanced Internet abilities and a set-top box for a TV set that offers more advanced computing capability as well […]
-
Angular error: can’t bind to ‘ngmodel’ since it isn’t a known property of ‘input’
This usually happens because App has not registered FormsModule to be used. So just go into your main app.module.ts and add: import { FormsModule } from ‘@angular/forms’; and add the same to imports as well: imports: [ BrowserModule, AppRoutingModule, FormsModule ],
-
Hotstar IPL Streaming – Available for free! Insecure Streaming Architecture…
NOTE: This post was posted in 2019 and the Hotstar stream has been secured with Akamai DRM since then, and now the streams cannot be hijacked as below. (2020 IPL Streams are secure and cannot be watched for free by hijacking URLs) Seems, there is NO DRM protection enabled for Hotstar streams. So the Free […]
-
scaling video – proportionally – maintaining aspect ratio with ffmpeg
Lets say we have to scale a 720p or any resolution video up or down to 360p – meaning we want to maintain video source aspect ratio. We can do this with ffmpeg with following command: -vf meaning video filter and scale -1:360 meaning maintain proportion of source frame with height set as 360pixels so […]