Skip to content

Instantly share code, notes, and snippets.

@KonradIT
KonradIT / script_1.py
Last active May 11, 2017 00:05
Test HERO5 wake on lan scripts (python)
import socket
import struct
mac_address="AA:BB:CC:DD:EE:FF"
mac_address = str(mac_address)
if len(mac_address) == 12:
pass
elif len(mac_address) == 17:
sep = mac_address[2]
mac_address = mac_address.replace(sep, '')
@laurieainley
laurieainley / GoPro RTMP streaming with FFmpeg
Last active March 18, 2024 03:28
Live streaming from a GoPro Hero3 camera to RTMP server using FFmpeg
Basic Requirements:
Computer with wired and wireless connection
FFmpeg installation: http://www.ffmpeg.org/
GoPro Hero 3+: http://gopro.com/
RTMP server e.g. FMS (http://www.adobe.com/products/adobe-media-server-family.html) or CDN ingest point
Overview:
GoPro Hero3 cameras produce HLS streams which are consumed by control apps and their removeable monitor.