You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using the DocumentPicker.pick() to open files. This works great for any file that does not contain spaces (or probably anything that gets encoded).
Here is the error log: LOG file:///Users/NAME/Library/Developer/CoreSimulator/Devices/6C971DFC-4A78-40EF-825E-259A1E958428/data/Containers/Data/Application/9380D307-67C6-48D3-82F9-83926D169B74/tmp/com.bt.FrameHunt-Inbox/libvlc-speech-full-frames-1%202.MP4: No such file or directory
I'm not sure how to deal with this, since other files provided this way work fine. What do I have to do to fix this?
The text was updated successfully, but these errors were encountered:
The title says "files with space", but the example provided is a "file without a space character". This file path is URL-encoded, where %20 is used instead of a space. I suggest decoding the file path before passing it to FFmpegKit.
Seems to me you are feeding an iOS URL to this library. Most C/C++ libraries don't support iOS URLs. You have to convert it to a file path. Also, IIRC, iOS image pickers return image with different data representations, better to copy the data to a local path and pass it to this library. I don't have issues with paths with spaces or non-English characters on iOS with this library.
I'm using the DocumentPicker.pick() to open files. This works great for any file that does not contain spaces (or probably anything that gets encoded).
Here is the error log:
LOG file:///Users/NAME/Library/Developer/CoreSimulator/Devices/6C971DFC-4A78-40EF-825E-259A1E958428/data/Containers/Data/Application/9380D307-67C6-48D3-82F9-83926D169B74/tmp/com.bt.FrameHunt-Inbox/libvlc-speech-full-frames-1%202.MP4: No such file or directory
I'm not sure how to deal with this, since other files provided this way work fine. What do I have to do to fix this?
The text was updated successfully, but these errors were encountered: