Quote:
Originally Posted by kramund
Ok.
This is what I am doing...
Extracted the files and a folder was created: FLViviewDemux4OSX
I copied the streamed file into this location.
I grab the file with the pointer and drop it on: FLViviewDemux4OSx app
I get the following: The action “Run Shell Script” encountered an error. Check the actionʼs properties and try running the workflow again.
|
K, sounds like there's a problem with my code. I might not have time to fix it tonight though.
If you want to try it yourself you can use the terminal in OSX. Here are the steps:
1.Open the terminal (it's in the applications/utilities folder)
2. Drag ffmpeg to the terminal. It will show up in the terminal as an absolute path to ffmpeg
3.make sure the mp4 file is in the same directory as ffmpeg
4. Add the following text to the end of the ffmpeg absolute path that is showing in the terminal
Code:
-i "filename.mp4" -vcodec copy -acodec copy newFilename.mp4
(replace filename.mp4 with the filename of the original file)