/dev/sdb
посмотреть можно сразу после подлючения в # dmesg | tail
или командой # fdisk -l
Размонтируйте флешку если она автоматически примонтировалась:
# umount /dev/sdb
Предварительно стоит отформатировать флешку (смотреть как это делается тут).
Внимание: данные действия удалят ваши данные на usb устройстве.
В следующей команде замените example_os_image.iso на корректное название и местоположение вашего образа. Выберите вашу флешку (именно sdb в данном случае, а не раздел sdb1, sdb2 et.c.).# dd bs=4M if=example_os_image.iso of=/dev/sdb && sync
That's it!
/dev/sdb
посмотреть можно сразу после подлючения в # dmesg | tail
или командой # fdisk -l
Размонтируйте флешку если она автоматически примонтировалась:
# umount /dev/sdb
зануляем флешку (именно sdb)
# dd if=/dev/zero of=/dev/sdb bs=512 count=1
создаем файловую систему
# fdisk /dev/sdb > n // новая партиция > p // primary > 1 // defaul > [Enter] // размер от > [Enter] // - размер до > t > c > wформатируем именно sdb1 (проверьте fdisk -l должен появиться созданый раздел)
# mkdosfs -n MMMM /dev/sdb1
That's it!
ipython nbconvert --to html notebook.ipynb
(-- to pdf if only english)
wkhtmltopdf notebook.html notebook.pdf
ffmpeg -i input.avi -c:v libx264 -crf 19 -preset slow -c:a libfdk_aac -b:a 192k -ac 2 out.mp4
If libfdk_aac is not available, use this instead:
ffmpeg -i input.avi -c:v libx264 -crf 19 -preset slow -c:a aac -b:a 192k -ac 2 out.mp4
From OGV:
ffmpeg -i input.ogv -c:v libx264 -preset veryslow -crf 22 -c:a libmp3lame -qscale:a 2 -ac 2 -ar 44100 output.mp4
Also good desicion can be ffmulticonverter:
sudo add-apt-repository ppa:ffmulticonverter/stable sudo apt-get update sudo apt-get install ffmulticonverter
image = image[:, :, ::-1] # BGR to RGB
tar cf - /folder-with-big-files -P | pv -s $(du -sb /folder-with-big-files | awk '{print $1}') | gzip > big-files.tar.gz
ffmpeg -ss 00:08:00 -i Video.mp4 -ss 00:01:00 -t 00:01:00 -c copy VideoClip.mp4
The first -ss seeks fast to (approximately) 8min0sec, and then the second -ss seeks accurately to 9min0sec, and the -t 00:01:00 takes out a 1min0sec clip.
Also note this important point from that page: "If you use -ss with -c:v copy, the resulting bitstream might end up being choppy, not playable, or out of sync with the audio stream, since ffmpeg is forced to only use/split on i-frames."
This means you need to re-encode the video, even if you want to just copy it, or risk it being choppy and out of sync. You could try just -c copy first, but if the video sucks you'll need to re-do it.
--seriesoftubes