howto:convert-images
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
howto:convert-images [2024/07/28 12:56] – Wulf Rajek | howto:convert-images [2025/01/05 18:28] (current) – Wulf Rajek | ||
---|---|---|---|
Line 26: | Line 26: | ||
find . -name ' | find . -name ' | ||
#find . -type f -name ' | #find . -type f -name ' | ||
+ | </ | ||
+ | |||
+ | ===== lossy conversion of png to jpg ===== | ||
+ | Converts all png files in the directory recursively to jpg | ||
+ | < | ||
+ | find . -iname ' | ||
</ | </ | ||
Line 45: | Line 51: | ||
===== high quality conversion to mp4 ===== | ===== high quality conversion to mp4 ===== | ||
+ | < | ||
#High quality non-mp4 to mp4 conversion | #High quality non-mp4 to mp4 conversion | ||
find . -type f \( -iname " | find . -type f \( -iname " | ||
ffmpeg -nostdin -i " | ffmpeg -nostdin -i " | ||
done | done | ||
- | + | </ | |
===== find all non-mp4 files ===== | ===== find all non-mp4 files ===== | ||
< | < | ||
Line 198: | Line 204: | ||
</ | </ | ||
+ | |||
+ | ===== 3D VR SBS to 2D ===== | ||
+ | |||
+ | https:// | ||
+ | |||
+ | < | ||
+ | ffmpeg -i input.mp4 -vf v360=input=equirect: | ||
+ | </ | ||
+ | |||
+ | https:// | ||
+ | |||
+ | < | ||
+ | ffmpeg -i input.mkv -vf stereo3d=sbsl: | ||
+ | </ | ||
+ | Use sbsl2:ml or -aspect 16:9 if the aspect ratio is wrong | ||
+ | |||
+ | |||
+ | https:// | ||
+ | |||
+ | |||
+ | https:// | ||
+ | < | ||
+ | ffmpeg -i equirectangular.mp4 -filter:v " | ||
+ | </ |
howto/convert-images.1722167771.txt.gz · Last modified: 2024/07/28 12:56 by Wulf Rajek