Skip to main content
added 124 characters in body
Source Link
elbarna
  • 14.5k
  • 28
  • 111
  • 200

I want to use ffmpeg using two pc, i know parallel can do it I use this cli

parallel --trc {.}.mkv -S virtual,: 'ffmpeg -y -i {} -vf yadif,crop=720:550:0:12,scale=640:352 -c:v libx264 -c:a aac -b:v 1500k -b:a 128k -metadata language=eng -metadata title="example" -aspect 16:9 {.}.mkv' ::: example.mpg 

It transfer the file example.mpg on virtual(OK) and then run the command only on the remote pc(virtual)! But the line -S virtual,: don't ask parallel to run even on local pc? My purpose is to use gnu parallel to distribute the load/cpu use on two or more pc, for example 50% of load on localpc, and 50% on remote, is possible? Or I need something more complex like the old good openmosix cluster?

I want to use ffmpeg using two pc, i know parallel can do it I use this cli

parallel --trc {.}.mkv -S virtual,: 'ffmpeg -y -i {} -vf yadif,crop=720:550:0:12,scale=640:352 -c:v libx264 -c:a aac -b:v 1500k -b:a 128k -metadata language=eng -metadata title="example" -aspect 16:9 {.}.mkv' ::: example.mpg 

It transfer the file example.mpg on virtual(OK) and then run the command only on the remote pc(virtual)! But the line -S virtual,: don't ask parallel to run even on local pc? My purpose is to use gnu parallel to distribute the load/cpu use on two or more pc, is possible?

I want to use ffmpeg using two pc, i know parallel can do it I use this cli

parallel --trc {.}.mkv -S virtual,: 'ffmpeg -y -i {} -vf yadif,crop=720:550:0:12,scale=640:352 -c:v libx264 -c:a aac -b:v 1500k -b:a 128k -metadata language=eng -metadata title="example" -aspect 16:9 {.}.mkv' ::: example.mpg 

It transfer the file example.mpg on virtual(OK) and then run the command only on the remote pc(virtual)! But the line -S virtual,: don't ask parallel to run even on local pc? My purpose is to use gnu parallel to distribute the load/cpu use on two or more pc, for example 50% of load on localpc, and 50% on remote, is possible? Or I need something more complex like the old good openmosix cluster?

added 96 characters in body
Source Link
elbarna
  • 14.5k
  • 28
  • 111
  • 200

I want to use ffmpeg using two pc, i know parallel can do it I use this cli

parallel --trc {.}.mkv -S virtual,: 'ffmpeg -y -i {} -vf yadif,crop=720:550:0:12,scale=640:352 -c:v libx264 -c:a aac -b:v 1500k -b:a 128k -metadata language=eng -metadata title="example" -aspect 16:9 {.}.mkv' ::: example.mpg 

It transfer the file example.mpg on virtual(OK) and then run the command only on the remote pc(virtual)! But the line -S virtual,: don't ask parallel to run even on local pc? My purpose is to use gnu parallel to distribute the load/cpu use on two or more pc, is possible?

I want to use ffmpeg using two pc, i know parallel can do it I use this cli

parallel --trc {.}.mkv -S virtual,: 'ffmpeg -y -i {} -vf yadif,crop=720:550:0:12,scale=640:352 -c:v libx264 -c:a aac -b:v 1500k -b:a 128k -metadata language=eng -metadata title="example" -aspect 16:9 {.}.mkv' ::: example.mpg 

It transfer the file example.mpg on virtual(OK) and then run the command only on the remote pc(virtual)! But the line -S virtual,: don't ask parallel to run even on local pc?

I want to use ffmpeg using two pc, i know parallel can do it I use this cli

parallel --trc {.}.mkv -S virtual,: 'ffmpeg -y -i {} -vf yadif,crop=720:550:0:12,scale=640:352 -c:v libx264 -c:a aac -b:v 1500k -b:a 128k -metadata language=eng -metadata title="example" -aspect 16:9 {.}.mkv' ::: example.mpg 

It transfer the file example.mpg on virtual(OK) and then run the command only on the remote pc(virtual)! But the line -S virtual,: don't ask parallel to run even on local pc? My purpose is to use gnu parallel to distribute the load/cpu use on two or more pc, is possible?

Source Link
elbarna
  • 14.5k
  • 28
  • 111
  • 200

Why my gnu parallel with ffmpeg execute ffmpeg only on remote host?

I want to use ffmpeg using two pc, i know parallel can do it I use this cli

parallel --trc {.}.mkv -S virtual,: 'ffmpeg -y -i {} -vf yadif,crop=720:550:0:12,scale=640:352 -c:v libx264 -c:a aac -b:v 1500k -b:a 128k -metadata language=eng -metadata title="example" -aspect 16:9 {.}.mkv' ::: example.mpg 

It transfer the file example.mpg on virtual(OK) and then run the command only on the remote pc(virtual)! But the line -S virtual,: don't ask parallel to run even on local pc?