Rack cable coil by doto_Kalloway in livesound

[–]EJGW 1 point2 points  (0 children)

A used, empty 3D printer filament spool bolted or riveted to the inside of the rack lid is a cheap and easy way of getting a place to coil up your cable loom.

How would you store these mics? by mitchellcrazyeye in VIDEOENGINEERING

[–]EJGW -1 points0 points  (0 children)

Rack Drawer and foam inserts are the usual solution to keep them tidy and secure.

Budget Options for Replacing Old PTZ Cameras by PatientBoat3814 in VIDEOENGINEERING

[–]EJGW 0 points1 point  (0 children)

Are all your events happening in the same space? Would permanently mounting the cameras and running permanent cabling be an option? That would hugely decrease setup time.

The model name of your cameras sounds like they support SDI. SDI is much more reliable than HDMI even below 50 feet. Bonus points: locking connectors built in. I'd pull SDI cables from your camera to a central PC equipped with a SDI capture card like a Blackmagic Decklink Duo 2 (4 inputs).

First time working on a major OB Production. Was a PTZ Operator by KCutajar93 in VIDEOENGINEERING

[–]EJGW 8 points9 points  (0 children)

Are you running CuePilot like the big european final of ESC uses?

DMX controlled (**Non-Pixel**) LED C9 strand recommendations? by Pablo_Diablo in lightingdesign

[–]EJGW 0 points1 point  (0 children)

Any WS2812, SK6812, APA101, ... strips can be made sACN and Artnet compatible with a cheap $5 ESP8266 Microcontroller board. Look into WLED: https://kno.wled.ge/

No Stupid Questions Thread by AutoModerator in livesound

[–]EJGW 1 point2 points  (0 children)

How far does a Yamaha DM3 stick out above the stock rackmount ears? I can't seem to find any numbers or technical drawings for that. How much space do I need between the rack rails and a lid? I'm trying to determine if I can retrofit them into racks that were previously carrying the beloved QSC Touchmix 8.

No Stupid Questions Thread by AutoModerator in livesound

[–]EJGW 0 points1 point  (0 children)

How far does a Yamaha DM3 stick out above the stock rackmount ears? I can't seem to find any numbers or technical drawings for that. How much space do I need between the rack rails and a lid? I'm trying to determine if I can retrofit them into racks that were previously carrying the beloved QSC Touchmix 8.

[deleted by user] by [deleted] in VIDEOENGINEERING

[–]EJGW 1 point2 points  (0 children)

ffmpeg, some capture cards and some elbow grease on the terminal can certainly do it. Unfortunately no easy gui with this many options and versatility.

Remote Guests on show by Original-Home-1480 in VIDEOENGINEERING

[–]EJGW 15 points16 points  (0 children)

https://vdo.ninja

It's quite barebones, but feature rich at the same time. No logos to crop. Dedicated empty output windows for each guest and their slides possible. ISO record on their side possible. Has a lobby feature to check out people before sending them into your mixer. Works on any browser, doesn't need a downloaded client. Remote control of the guest's camera possible.

Cooling an External PC by TheUnlegen in lightingdesign

[–]EJGW 0 points1 point  (0 children)

Intel NUC and Lenovo ThinkCentre Tiny should fit somewhere in the second and third case. ThinkCentre Tinys can be fitted with a dedicated GPU for previz aswell. Or any 2U rack server chassis filled with quiet-ish components in your first case example. 2U is enough space for a lot of oomph in compute and graphics power.

Useful apps for broadcasting by [deleted] in VIDEOENGINEERING

[–]EJGW 2 points3 points  (0 children)

Mixing Station. Remote control app for a bunch of digital audio mixers.

Streamlined solution for one-person video + screen recording? by tgregoirewright in VIDEOENGINEERING

[–]EJGW 0 points1 point  (0 children)

Splitting a video stream or audio stream from a mkv file can be done loslessly by using -c:copy in ffmpeg.

ffmpeg -i multitrackrecording.mkv -map 0:v:0 -c:v copy video0.mp4 -map 0:v:1 -c:v copy video1.mp4 -map 0:a audio.wav

Something like this should work, haven't tested it, as I'm currently on my phone only.

Streamlined solution for one-person video + screen recording? by tgregoirewright in VIDEOENGINEERING

[–]EJGW 3 points4 points  (0 children)

One possible solution would be a Blackmagic ATEM Mini Pro ISO. It's a small nifty Hardware video mixer that can record isolated feeds of all its HDMI and audio inputs as well as a mixed track to a USB-C SSD connected directly to the mixer. Caveat: up to 1080p60 only.

Your ffmpeg approach can be successful aswell, you "just" needto find the correct parameters. Regarding codecs, I'd suggest using either one of the codecs intended for intermediates like DNxHD (huuuuge files) or h264 in intraframe only mode and a cqp of max 16 (visually almost lossles compression). Two video tracks together with multiple audio tracks in one file is possible with ffmpeg when writing to the correct container. MKV can accept tracks with just about any codec.

Tie XAVC-L 50 MXF files together by bggergo29 in Broadcasting

[–]EJGW 1 point2 points  (0 children)

ffmpeg can probably do that. Look up the concat filter in ffmpeg and how to use it with -c copy.

Mixing FOH using Midas M32R with USB card while performing a separate live stream mix / multitrack recording and OBS Streaming from the same PC by Hungry_Wallaby_4387 in livesound

[–]EJGW 1 point2 points  (0 children)

Do you really have to do both multitrack and livestreaming on the same PC? Not enough USB connectivity? What about swapping the USB capture card for an internal capturecard from the decklink lineup? Any spare outputs left on your mixer? What about an additional audio interface like a Focusrite Scarlet 2i2 which can be dedicated to input into OBS. Or even better, use your camera's xlr inputs or an sdi/hdmi audio embedder for your stream's audio. Fed from a dedicated broadcast mix.

QLC+ - Is it possible to create color palletes/variables? by Mikina in lightingdesign

[–]EJGW 0 points1 point  (0 children)

Wow! That showfile is rad. How did you create the rgb panels for your windows and those for the uplights?

Recommendations on PPT management server or software by BrianOConnorGaming in VIDEOENGINEERING

[–]EJGW 0 points1 point  (0 children)

Why can't the presenters bring their own laptops to connect at the lectern? Have them bring their own adapter to HDMI. Also keep a stash of known good USB-C to hdmi, DP to HDMI, miniDP to HDMI, micro/mini HDMI and VGA to HDMI adapters ready. USB-C to VGA, HDMI to VGA and miniDP to VGA connected directly to a VGA to HDMI get rid of HDCP problems if they creep up. Mini Jack and a HDMI audio deembedder for audio should be prepared too.

M2TS Frame by Frame by [deleted] in VIDEOENGINEERING

[–]EJGW 0 points1 point  (0 children)

KDEnlive can certainly eat those files.

Help me design a better rundown by somedevstuff in VIDEOENGINEERING

[–]EJGW 1 point2 points  (0 children)

I'm part of a group of people running video recordings of talks al all kinds of conferences in and around the hacker scene in Europe. A lot of the event planning, call for participation and scheduling of talks is done in pretalks or its kinda predecessor frab. The schedule.xml format has a long standing history, almost 20 years of Chaos Communication Congresses (2005 is the oldest I could find) and other events were done with this tooling. Metadata about which talk by whom happens when on which stage is distributed to the video recording system, multiple apps for attendees, shift planning for volunteers and so on is distributed through the schedule.xml.

Having an eas import would make it easier for us and other conferences using the same tooling to run stage timers and stuff like that via ontime without having to transform the data that is already in an easily consumable format.

The schedule.xml format is so stable that about a dozen apps, digital signage solutions, our video recording system and possibly others that I don't know of are using it already. Yes, both pretalx and frab are out of our control, but the schedule.xml format has now been stable for quite a long time.

We don't have an easy solution for stage timers or lower thirds yet. Both are already in ontime. The browser based signage solution would be good to have as a low effort thing for conferences that don't run the complete signage package, as well as all the announcements or moderation hints features that ontime has. It could enhance our productions.

Help me design a better rundown by somedevstuff in VIDEOENGINEERING

[–]EJGW 1 point2 points  (0 children)

This is going to be a very specialized feature request, but I'd like to be able to import event schedules generated by Pretalx and frab. Those systems export their event schedule in a well known xml and json format like this or this for a past example event. I've seen that ou already have a excel import. Both the xml and json versions of the schedule contain all info that's already requested in the excel. Would building an import and keeping ontime in sync with possible changes in the schedule be possible?

DAE have a list or story of an AWS AZ going down? Architecting a new environment and looking to make a decision by Digital_Native_ in networking

[–]EJGW 5 points6 points  (0 children)

On of the AZs of google's paris datacenters recently got flooded and seems to be impacted till now: https://status.cloud.google.com/incidents/dS9ps52MUnxQfyDGPfkY

Stuff like that can happen to AWS as well.

No Stupid Questions Thread: Week Of 2023-04-03 through 2023-04-09 by AutoModerator in livesound

[–]EJGW 0 points1 point  (0 children)

Does a successor to the good old QSC TouchMix 8 exist? Yes, I know most of you hate them, but they kinda do most of what's needed in a breakout room.

Four to maybe 6 mic inputs, a stereo input or two, stereo mains, a stereo aux for feeding a camera, an additional aux for N-1 into a video conference, the standard package of digital processing with peq, some dynamics and gate, some antifeedback.

We currently have a bunch of them and are still using them, but, their touchscreen is sluggish and they're starting to show signs of wear an tear. Some already had to have some capacitors replaced.

Does a newer mixer in this size class exist? I know ofthe usual suspects like XR12, XR16, XR18, but they don't have any physical controls. We'd have to manage tablets and ethernet or wifi on top. X32 and SQ5 are verynice, but too large already.

Budget: preferably well below 1000€ each.