Created
July 19, 2013 08:38
-
-
Save deltheil/6037656 to your computer and use it in GitHub Desktop.
VLC for iOS: upload via WiFi
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
curl -# -F file=@"foo.mov" http://192.168.0.38:8888/upload.json >/dev/null |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.