This file contains hidden or 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
| static std::string getClassName(JNIEnv *env, jobject entity, jclass clazz) | |
| { | |
| jmethodID mid = env->GetMethodID(clazz, "getClass", "()Ljava/lang/Class;"); | |
| jobject clsObj = env->CallObjectMethod(entity, mid); | |
| jclass clazzz = env->GetObjectClass(clsObj); | |
| mid = env->GetMethodID(clazzz, "getName", "()Ljava/lang/String;"); | |
| jstring strObj = (jstring)env->CallObjectMethod(clsObj, mid); | |
| const char* str = env->GetStringUTFChars(strObj, NULL); | |
| std::string res(str); |
This file contains hidden or 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 | |
| header("Connection: close"); // not sure we need this one | |
| header("Content-Encoding: none"); | |
| include ("config.php"); | |
| use Carbon\Carbon; | |
| ignore_user_abort( true ); | |
| set_time_limit(0); | |
| register_shutdown_function('shutdown'); |
This file contains hidden or 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
| /** | |
| * example C code using libcurl and json-c | |
| * to post and return a payload using | |
| * http://jsonplaceholder.typicode.com | |
| * | |
| * Requirements: | |
| * | |
| * json-c - https://github.com/json-c/json-c | |
| * libcurl - http://curl.haxx.se/libcurl/c | |
| * |
This file contains hidden or 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
| ffmpeg -i http://PRIMEIP:5004/auto/v1004 -async 1 -ss 00:00:05 -acodec libfdk_aac -vbr 3 \ | |
| -b:v \3000k -ac 2 -vcodec libx264 -preset superfast -tune zerolatency -threads 2 -s 1280x720 \ | |
| -flags -global_header -map 0:0 -map 0:1 -f segment -segment_time 10 -segment_list stream.m3u8 \ | |
| -segment_format mpegts -segment_wrap 10 -segment_list_size 6 -segment_list_flags live stream%03d.ts |
This file has been truncated, but you can view the full file.
This file contains hidden or 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
| #PLAYLISTV: pltv-logo="https://3.bp.blogspot.com/-auoUB40UQe4/V1Ck_IovFpI/AAAAAAAAPOI/dKqhEpai32k5cYTAXETJPgFRFvUpkMGMwCKgB/s1600/cinebox.png" pltv-name="Cinebox 0.1" pltv-description=[COLOR red]FILMES[/COLOR] e Series para PlaylisTV/IPTV" pltv-cover="https://2.bp.blogspot.com/-Ev7AC39VQHo/V1CnLKl3aHI/AAAAAAAAPOg/5PUI4Ku-zPo0tFVCuTxl9XIa-F4IXz3LgCKgB/s1600/Cover%2BCinebox.jpg" pltv-author="CineBox" pltv-site="http://cinebox.net" pltv-email="[email protected]" pltv-phone="9-0666-6660" | |
| ####### NOVAS ADIÇÕES ######## | |
| #EXTINF:-1 tvg-logo="http://i.imgur.com/oHiJ0WY.png" group-title="Novos no [COLOR red]Cinebox![/COLOR]",Emelie 2015 1080p - Legendado - Terror | |
| https://lh3.googleusercontent.com/aCgORx1qNVCU44u8hMN4U-CPEfDJURh6odJ5O_UWqrpKKo7AQopanzGzmlwWgTPXtIhvpCnA=m22 | |
| #EXTINF:-1 tvg-logo="http://i.imgur.com/oHiJ0WY.png" group-title="Novos no [COLOR red]Cinebox![/COLOR]",Nina 2016 Bluray 720p - Legendado - Drama.Biografia.Musical | |
| https://lh3.googleusercontent.com/nH4WcmwSj-Fd93N1fraUxL7hMtAeT8jq708gz9DlSO2z9 |
This file contains hidden or 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
| diff --git a/libavformat/utils.c b/libavformat/utils.c | |
| index 17ae300..7ff8c22 100644 | |
| --- a/libavformat/utils.c | |
| +++ b/libavformat/utils.c | |
| @@ -3809,6 +3809,36 @@ uint64_t ff_ntp_time(void) | |
| return (av_gettime() / 1000) * 1000 + NTP_OFFSET_US; | |
| } | |
| +static char *randstring(size_t length) { | |
| + |
This file contains hidden or 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
| This can be used in Mac by using following trick: | |
| Open trial.key at path: /Applications/Beyond\ Compare.app/Contents/Resources/trial.key | |
| Replace content of trial.key with: | |
| --- BEGIN LICENSE KEY --- | |
| H1bJTd2SauPv5Garuaq0Ig43uqq5NJOEw94wxdZTpU-pFB9GmyPk677gJ | |
| vC1Ro6sbAvKR4pVwtxdCfuoZDb6hJ5bVQKqlfihJfSYZt-xVrVU27+0Ja | |
| hFbqTmYskatMTgPyjvv99CF2Te8ec+Ys2SPxyZAF0YwOCNOWmsyqN5y9t | |
| q2Kw2pjoiDs5gIH-uw5U49JzOB6otS7kThBJE-H9A76u4uUvR8DKb+VcB | |
| rWu5qSJGEnbsXNfJdq5L2D8QgRdV-sXHp2A-7j1X2n4WIISvU1V9koIyS |
This file contains hidden or 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 base64 | |
| import uuid | |
| from pymp4.parser import Box | |
| def get_moov_pssh(fd): | |
| while True: | |
| x = Box.parse_stream(fd) | |
| if x.type == b'moov': |
This file contains hidden or 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
| Last login: Fri Dec 6 12:01:18 on ttys004 | |
| WBDL-C02YN2LGJG5J:dc-roku rleibovitz$ telnet 10.20.32.109 8085 | |
| Trying 10.20.32.109... | |
| Connected to 10.20.32.109. | |
| Escape character is '^]'. | |
| for events | |
| Created Request | |
| XHR Req: http://nqs-nl12-c3.youboranqs01.com/start?cdn=CLOUDFRT&user=dcprem122.83771&code=V_13799_aehg0ed13cj9pk3e_0&duration=2983&properties=%7B%22content_id%22%3A%22164.24%22%7D&title=Titans&pluginVersion=5.1.1-RokuVideo&deviceInfo=%7B%22model%22%3A%224630X%22%7D&deviceId=78&system=dramafever&playerVersion=Roku-Video&player=RokuVideo&resource=https%3A%2F%2Fdc-prod-video.wbdndc.net%2Fv12%2Fd739d1c7-d72d-48e3-9be2-68286e75159e%2F6291246876%2Fdash%2Fplayready%2Findex_sdr_1080_avc_ns_6_r.mpd&live=false¶m3=dc%20universe&timemark=1575652482054 | |
| Http: # 122685241 done status: 200 time: 183ms request: POST https://api.segment.io/v1/track | |
| Segment Response: { |
This file contains hidden or 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
| (function() { | |
| var AdModel, AdPodModel, AgeGate, AppController, AppHelper, AppModel, BaseBeaconController, BeaconController, BeaconHelper, BeaconModel, ComscoreBeaconController, Constants, ContentModel, ControlsView, EndCard, EndCardAdModel, EndCardPlaylist, EventBus, FatalError, GeneralEvent, GlobalErrorHandler, HuluBeaconController, Md5, MediaPlayerView, MozartService, NielsenBeaconController, PlayableModel, PlayerController, PlayerModel, PlayerView, PlaylistPlayerModel, PrerollModel, QOSBeaconController, SiteShelfHelper, Ui, VideoEvent, VideoNetworkState, VideoReadyState, | |
| __hasProp = {}.hasOwnProperty, | |
| __extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; }, | |
| __bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; }; | |
| Md5 = (function() { | |
OlderNewer