Skip to content

Instantly share code, notes, and snippets.

@deltheil
Created July 19, 2013 08:38
Show Gist options
  • Star 11 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save deltheil/6037656 to your computer and use it in GitHub Desktop.
Save deltheil/6037656 to your computer and use it in GitHub Desktop.
VLC for iOS: upload via WiFi
curl -# -F file=@"foo.mov" http://192.168.0.38:8888/upload.json >/dev/null
@williamspatrick
Copy link

This worked nicely for uploading files that are laid out in a directory structure:
find -name "*.ogg" -exec curl -# -F file=@"{}" http://192.168.0.38:8888/upload.json ;

Thanks.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment