//wsg/
(�/�ce����?��݇ �$�?@�I��t`���f�~t�������N����H:�I3`p�B�ࢊ(%�a��>������5 {��\����_h��>e�5���av�b�X��^���M���};KT]�+ �h%cDZKL�իv^*KJQ< fn�����z��M�W�}!��I��/�&$�é��)�C /��a���Fl�Ժ"��J���'�9�.������-j�;�C�>k������)b�aK��g��:o��2=2��;ژ���z��,���:N,�Ź.�}k�K�P���~��A��n5.7IM��kr�q��.H���<�4�B4���Iky�ѩ�$<�C��WU%���.^�,h�
Showing all 2 replies.
>>
Grab ffmpeg from https://www.ffmpeg.org/download.html">https://www.ffmpeg.org/download.html

It's a command line tool which means you will have to type things with your keyboard instead of clicking on buttons.

The most trivial operation would be converting gifs:

ffmpeg -i your_gif.gif -c:v libvpx -crf 12 -b:v 500K output.webm

-crf values can go from 4 to 63. Lower values mean better quality.
-b:v is the maximum allowed bitrate. Higher means better quality.

To convert a part of a video file:

ffmpeg -i your_video.mkv -ss 00:00:10.000 -to 00:00:20.000 -c:v libvpx -crf 4 -b:v 1500K -vf scale=640:-1 -an output.webm

-ss is the start position in number of seconds, or in hh:mm:ss[.xxx] format. You can get it using your video player (Ctrl-G in MPC-HC).
-to is the end position.
-vf scale=640:-1 sets the width to 640px. The height will be calculated automatically according to the aspect ratio of the input.
-an disables audio.

Another encoding guide: https://trac.ffmpeg.org/wiki/vpxEncodingGuide">https://trac.ffmpeg.org/wiki/vpxEncodingGuide
ffmpeg documentation: https://www.ffmpeg.org/ffmpeg.html">https://www.ffmpeg.org/ffmpeg.html

WebMConverter by WebMBro: https://github.com/WebMBro/WebMConverter">https://github.com/WebMBro/WebMConverter "WebM for retards."
>>
Current limits for WebM files on 4chan are:
Maximum file size is 6144KB.
Maximum duration is 300 seconds.
Maximum resolution is 2048x2048 pixels.

Click here to see a detailed guide on how to create webm files.

You can now upload webm files with sound to /wsr/. Please post all requests there.

>>>/wsr/

Reply to Thread #5858176


Supported: JPG, PNG, GIF, WebP, WebM, MP4, MP3 (max 4MB)