computer_tutorials

Docker basics Links to other tutorials

tutoriels/git

How to create a simple web server with python ?

To start the server in your current directory.

In command line :

python -m http.server

How to create a video from a music album and its cover

Requirements :

  1. Concatenate audio files :

sox track1.ogg track2.ogg track3.ogg full_album.ogg

  1. Resize cover image if needed :

convert cover.jpg -resize 720x720 small_cover.jpg

  1. Merge audio and image into a video file :

ffmpeg -i small_cover.jpg -i full_album.ogg output.mp4

How to find a string into multiple files ?

grep -r string ./*

-r to search recursively into current directory (./*).

Comment installer Grammalecte dans Vim ?

cf. https://github.com/dpelle/vim-Grammalecte/blob/master/doc/Grammalecte.txt TODO


sox ffmpeg


computer tutorials