Got it!
The problem was with the "-pass 1" command.
Search found 6 matches
- August 1st, 2012, 10:28 pm
- Forum: Post-Processing Scripts
- Topic: [Solved]Post processing with ffmpeg for roku direct play
- Replies: 5
- Views: 6704
- August 1st, 2012, 3:11 pm
- Forum: Post-Processing Scripts
- Topic: OSX Join 2 AVI Files after download
- Replies: 2
- Views: 2422
Re: OSX Join 2 AVI Files after download
The script in this post does a lot of things. Auto joining is just one of them.
http://forums.sabnzbd.org/viewtopic.php ... tv+for+mac
http://forums.sabnzbd.org/viewtopic.php ... tv+for+mac
- August 1st, 2012, 2:59 pm
- Forum: Post-Processing Scripts
- Topic: [Solved]Post processing with ffmpeg for roku direct play
- Replies: 5
- Views: 6704
Re: Post processing with ffmpeg for roku direct play
Since the command works in terminal I have compared the outputs line for line: "ratecontrol_init: can't open stats file" Is where it seems to be going wrong. Now I'm wondering if this is a permissions issue or maybe it cant find the stats file??? I guess the real question is why does it wo...
- August 1st, 2012, 11:10 am
- Forum: Post-Processing Scripts
- Topic: [Solved]Post processing with ffmpeg for roku direct play
- Replies: 5
- Views: 6704
Re: Post processing with ffmpeg for roku direct play
I just tried it with the perameters: -acodec copy and -vcodec copy. separately.
the audio codec worked but the video codec gave me the same error.
the audio codec worked but the video codec gave me the same error.
- July 31st, 2012, 6:19 pm
- Forum: Post-Processing Scripts
- Topic: [Solved]Post processing with ffmpeg for roku direct play
- Replies: 5
- Views: 6704
Re: Post processing with ffmpeg for roku direct play
Ok, new problem. Here is the script and how it has been modified so far #!/bin/bash ### Transcode mp4 files for the roku if [ -z $3 ]; then echo "Usage: `basename $0` filename" exit 0 fi #Wait while any other ffmpeg processes are running while [ -n "$(ps -ef | egrep "ffmpeg"...
- July 31st, 2012, 2:32 pm
- Forum: Post-Processing Scripts
- Topic: [Solved]Post processing with ffmpeg for roku direct play
- Replies: 5
- Views: 6704
[Solved]Post processing with ffmpeg for roku direct play
I'm trying to get this post script working in lubuntu ### Transcode mp4 files for the roku if [ -z $1 ]; then echo "Usage: `basename $0` filename" exit 0 fi Wait while any other ffmpeg processes are running while [ -n "$(ps -ef | egrep "ffmpeg" | grep -v grep)" ]; do ec...