This is an application to restream your video to several platforms. Facebook is just one of them.
This file has been truncated, but you can view the full file.
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
[ | |
{ | |
"cover_image_url": "https://tjzk.replicate.delivery/models_models_featured_image/779f3f58-c3db-4403-a01b-3ffed97a1449/out-0-1.jpg", | |
"created_at": "2024-02-21T07:36:15.534380Z", | |
"description": "SDXL-Lightning by ByteDance: a fast text-to-image model that makes high-quality images in 4 steps", | |
"github_url": "https://github.com/lucataco/cog-sdxl-lightning-4step", | |
"license_url": "https://huggingface.co/ByteDance/SDXL-Lightning/blob/main/LICENSE.md", | |
"name": "sdxl-lightning-4step", | |
"owner": "bytedance", | |
"paper_url": "https://huggingface.co/ByteDance/SDXL-Lightning/resolve/main/sdxl_lightning_report.pdf", |
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
// DHT Temperature & Humidity Sensor | |
// Unified Sensor Library Example | |
// Written by Tony DiCola for Adafruit Industries | |
// Released under an MIT license. | |
// REQUIRES the following Arduino libraries: | |
// - DHT Sensor Library: https://github.com/adafruit/DHT-sensor-library | |
// - Adafruit Unified Sensor Lib: https://github.com/adafruit/Adafruit_Sensor | |
#include <Adafruit_Sensor.h> |
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
#include <TM1637Display.h> | |
const int CLK = D6; //Set the CLK pin connection to the display | |
const int DIO = D5; //Set the DIO pin connection to the display | |
int numCounter = 0; | |
TM1637Display display(CLK, DIO); //set up the 4-Digit Display. | |
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
func StorageSave(key: String, value: String){ | |
let appDelegate = UIApplication.shared.delegate as! AppDelegate | |
let context = appDelegate.persistentContainer.viewContext | |
let store = context.persistentStoreCoordinator?.persistentStores.first | |
let coordinator = context.persistentStoreCoordinator |
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
# Uncomment the next line to define a global platform for your project | |
# platform :ios, '9.0' | |
target 'RTMP Streamer' do | |
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks | |
use_frameworks! | |
pod 'LFLiveKit' | |
# Pods for RTMP Streamer | |
end |
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
Желая организовать идеальную во всех отношениях свадьбу, молодожены тратят на ее подготовку огромное количество времени и сил. При этом особое внимание уделяется планированию свадебной видеосъемки, ведь на нее отводится лишь незначительный отрезок времени. Ведь вам необходимо побывать во всех запланированных местах и вовремя успеть в ресторан, где в скучном ожидании томятся многочисленные гости. | |
Как провести видеосъемку свадьбы? Доверьте подготовку этого ответственного процесса профессионалам. Посетите несколько видеостудий, ознакомьтесь с работами видеографов и выберите наиболее подходящую для вас тематику съемки. Совместно с видеооператором обсудите все свои идеи – это поможет избежать ненужных растрат драгоценного времени. | |
Если принято решение проводить тематическую видеосъемку, тщательно продумайте и подберите весь необходимый реквизит. | |
Разработка маршрута – это отдельный пункт подготовительного процесса. Как утверждают специалисты, наиболее яркие, интересные и оригинальные кадры получаются в естествен |
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
http://farm1.static.flickr.com/162/333803097_b56538e5de.jpg | |
http://farm3.static.flickr.com/2287/2475424735_0c4db049f0.jpg | |
http://www.apneamagazine.com/img_am/minpsub0049.jpg | |
http://farm4.static.flickr.com/3141/2701194793_8cdf6b129e.jpg | |
http://farm4.static.flickr.com/3286/2531668809_2ca43839da.jpg | |
http://farm4.static.flickr.com/3033/2680197397_848da8e673.jpg | |
http://farm3.static.flickr.com/2032/2475423937_7d2c7abb01.jpg | |
http://www.internetting.org/citta/lagobracciano/fauna/immagini/scardola.jpg | |
http://www.hengelsportzwolle.nl/homenew/images/stories/artikelen/Vangstverslag/afvis21.jpg | |
http://www.visserslatijn.nl/forum/image.php?u=2271&dateline=1172756103 |
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 { __extends, __spread, __values } from 'tslib'; | |
import { Injectable, EventEmitter, Inject, InjectionToken, ChangeDetectorRef, Directive, ElementRef, Input, Pipe, NgModule } from '@angular/core'; | |
import { of, concat, merge, Observable } from 'rxjs'; | |
import { map, share, switchMap, take, toArray } from 'rxjs/operators'; | |
var TranslateLoader = /** @class */ (function () { | |
function TranslateLoader() { | |
} | |
return TranslateLoader; | |
}()); |
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
int doubler(int x) { | |
return 2 * x; | |
} |
NewerOlder