This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 - Autos & Vehicles | |
1 - Film & Animation | |
10 - Music | |
15 - Pets & Animals | |
17 - Sports | |
18 - Short Movies | |
19 - Travel & Events | |
20 - Gaming | |
21 - Videoblogging | |
22 - People & Blogs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Needs PHP-FFMpeg | |
namespace App\Helpers; | |
use FFMpeg\Coordinate\TimeCode; | |
class DurationHelper | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
return [ | |
[ | |
'counry_code' => 'AF', | |
'country_name' => 'Afghanistan', | |
'timezone' => 'Asia/Kabul', | |
'GMT' => '+04:30', | |
], | |
[ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import json | |
import requests | |
import time | |
import paho.mqtt.client as mqtt | |
# Football Topic | |
football_topic = "thesports/football/match/v1" | |
# username | |
username = "USERNAME" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
old = [ | |
{ | |
"type": 19, | |
"position": 0, | |
"time": 45 | |
}, | |
{ | |
"type": 1, | |
"position": 1, | |
"time": 47, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
void main() { | |
runApp(MyApp()); | |
} | |
class MyApp extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return MaterialApp( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'dart:io'; | |
import 'package:fastpay_merchant/models/request/payment_initiation_request.dart'; | |
import 'package:fastpay_merchant/ui/paymentScreen/payment_screen.dart'; | |
import 'package:fastpay_merchant/ui/widget/text_style.dart'; | |
import 'package:flutter/material.dart'; | |
import 'package:flutter/scheduler.dart'; | |
import 'package:flutter/services.dart'; | |
import 'package:url_launcher/url_launcher.dart'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Action\Admin\Upload; | |
use FFMpeg\Format\Video\X264; | |
use ProtoneMedia\LaravelFFMpeg\Support\FFMpeg; | |
class EncodeVideoFileAction | |
{ | |
public static function handle( |