The USB-C Clickshare is just an external Network card.
Get the password of the Clickshare network and connect to it.
Replace wlan0 by your own card:
sudo iw dev wlan0 interface add wlanvirt type station
| {{define "invite_body"}} | |
| <!-- FILE: invite_body.mjml --> | |
| <!doctype html> | |
| <html xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office"> | |
| <head> | |
| <title> | |
| </title> | |
| <!--[if !mso]><!--> |
This reminder applies if you have pictures that need geocoding (e.g. to be uploaded on Mapillary) but you have no GPX file. We assume you have captured pictures alonside a path from a start point to an en point and that you are able to redraw this path precisely on a map. The first step will be to generate manually a GPX file, then to synchronize it with your pictures thanks to timestamps, and then GPicSync will geocode.
python2 gpicsync-GUI.py AppName has conflicting provisioning settings.
AppName is automatically signed for development, but a conflicting code signing identity iPhone Distribution has been manually specified. Set the code signing identity value to iPhone Developer in the build settings editor, or switch to manual signing in the project editor.`
Build settings, then All and CombinedSigning section select iOS Developer for all entries within Code Signing identityBuild settings, then All and CombinedYour video is 10 minutes (600 seconds) long and an output of 200 MiB is desired. Since bitrate = file size / duration:
(200 MiB * 8192 [converts MiB to kBit]) / 600 seconds = ~2730 kBit/s total bitrate 2730 - 128 kBit/s (desired audio bitrate) = 2602 kBit/s video bitrate
ffmpeg -y -i input -c:v libx264 -preset medium -b:v 2600k -pass 1 -c:a aac -b:a 128k -f mp4 /dev/null
ffmpeg -i input -c:v libx264 -preset medium -b:v 2600k -pass 2 -c:a aac -b:a 128k output.mp4
| pip install pyprof2calltree | |
| sudo apt-get install kcachegrind | |
| python -mcProfile -o module.cprof $(python -c 'import runpy; print runpy.__file__.rstrip("co")') the.module.to.profile | |
| pyprof2calltree -k -i module.cprof |