Welcome to mirror list, hosted at ThFree Co, Russian Federation.

raw.sh « mt-work - github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0ced88e21382d7ade10d2735a6915bf764190119 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

fn=`basename "$1"`
for th in 1 4; do
    time ./ffmpeg_g -threads $th -skip_loop_filter all -vsync 0 -y -t 30 -i "$1" -an -f rawvideo "raw/n-$fn-$th.yuv"
done

#for th in 1 4; do
#    time ./ffmpeg_g -threads $th -vsync 0 -y -t 30 -i "$1" -an -f rawvideo "raw/$fn-$th.yuv"
#done