Apple In-app Purchase and App Rejections

Developers and app owners often have doesn’t have clear view on where in-app purchase is must and when other payment gateways are allowed in their iOS App. Confusions often lead to app rejection. Apple has clear guidelines (read rules) on when in-app purchase is must and when other payment gateways are allowed. Here I am… Continue reading Apple In-app Purchase and App Rejections

FFMPEG Rotating Video – Transpose vs Rotate

FFMpeg can be used to rotate a video or change the video orientation. There are two ways to do that – Transpose and Rotate. But there is a difference – with Transpose the whole video gets rotated (as is expected to happen) but with Rotate the video gets cropped to fit the existing height of… Continue reading FFMPEG Rotating Video – Transpose vs Rotate

Media Streaming (MP4 file streaming) with Apache2

#wget http://h264.code-shop.com/download/apache_mod_h264_streaming-2.2.7.tar.gz #tar -zxvf apache_mod_h264_streaming-2.2.7.tar.gz #cd /apache_mod_h264_streaming-2.2.7 #./configure –with-apxs=`which apxs2` #make #make install #LoadModule h264_streaming_module /usr/lib/apache2/modules/mod_h264_streaming.so #AddHandler h264-streaming.extensions .mp4 #service apache2 restart The file is attached below in case the main link goes down. The link to the original download location :  http://h264.code-shop.com/download/ Working on Apache/2.4.41 (Ubuntu) on day of writing.   apache mod h264… Continue reading Media Streaming (MP4 file streaming) with Apache2

Google FCM all Push Notification parameters

All Firebase Push Notification parameters are available from the Google API test console. The direct link to the Send method test console – https://firebase.google.com/docs/reference/fcm/rest/v1/projects.messages/send From the above URL other details can be navigated to. To open the console click on the “Try it!” blue button on right. Now clicking the blue dots in the basic… Continue reading Google FCM all Push Notification parameters