1 lien privé
You can flush the DNS on your Mac by entering a command into the Terminal, which you can access via Spotlight or Utilities.
This tutorial will show you step by step how to merge SRT subtitles with an MP4 video or movie permanently.
In linux
ffmpeg -i Movie.mp4 -vf subtitles=Movie.srt Movie2.mp4
FFmpeg will now convert the MP4 video to another MP4 video with hardcoded subtitles.
This may take a while.
Is your iPhone stuck or frozen? Follow our troubleshooting tips to fix an unresponsive iPhone and get it back to normal in no time.
New to Apple Maps? Here's everything you need to know to get started quickly and easily.
Follow this guide if your Mac keeps disconnecting from your iPhone's Personal Hotspot.
Chers amis sous macOS, si vous trouvez que mettre des accès rapides dans le dock pour vos applications ou vos répertoires, c'est un peu nul parce que ça prend une place folle et que ce n'est pas pratique, et bien j'ai une bonne nouvelle. Le logiciel Folder Peak va vous permettre de faire la même…
Convert AVI to MP4 using FFmpeg with and without re-encoding the AVI file. Also, learn to install FFmpeg and do a lossless conversion from AVI to MP4 using FFmpeg.
Ok, if you are in a hurry to convert AVI to MP4 using FFmpeg, then simply run the following FFmpeg command. It should work for most of the use-cases.
ffmpeg -i input_filename.avi -c:v copy -c:a copy -y output_filename.mp4
Bonsoir, Linux Mint vient de sortir la version 21.1, un petit cadeau de Noël en avance de phase ! Cette nouvelle version se démarque surtout par plusieurs changements visuels ainsi qu’une pri…
Besoin d’installer ou de réinstaller Windows sur votre équipement Dell ?
Téléchargez un fichier d’image ISO de récupération Dell et utilisez l’outil Dell OS Recovery Tool pour créer une clé USB amorçable.
What is a DNS leak and why should I care?
When using an anonymity or privacy service, it is extremely important that all traffic originating from your computer is routed through the anonymity network. If any traffic leaks outside of the secure connection to the network, any adversary monitoring your traffic will be able to log your activity.
What is your IP, what is your DNS, check your torrent IP, what informations you send to websites.
sudo systemctl restart NetworkManager.service
Pour lutter contre la censure sur Internet,
FDN fait le choix de mettre à disposition de toutes et tous des résolveurs DNS récursifs ouverts.
Ils sont disponibles aux adresses IPv4 et IPv6 suivantes :
ns0.fdn.fr : 80.67.169.12 ou 2001:910:800::12
ns1.fdn.fr : 80.67.169.40 ou 2001:910:800::40
Ouverture des services DoT/DoH
https://www.fdn.fr/ouverture-des-services-dot-doh/
dns.nextdns.io IP addresses
https://help.nextdns.io/t/q6hp4j6/dns-nextdns-io-ip-addresses
Le résolveur DNS sécurisé de FDN
https://www.bortzmeyer.org/fdn-dot-doh.html
Si vous en avez assez de chercher toujours les mêmes polices sur des sites gratuits comme DaFont ( https://dafont.com/ ) ou UrbanFont ( https://www.urbanfonts.com/ ), j’ai un autre site à vous proposer qui devrait vous plaire.
Son nom : iFonts !
https://ifonts.xyz/
Commands to install Vivaldi Browser on Linux Mint 20 release series using the command line terminal and official Vivaldi APT repository.
In this article, I try to highlight the best web browsers that you can pick for Ubuntu and other Linux.
Videomass est tout simplement une interface graphique pour ffmpeg, yt-dlp, youtube-dl fonctionnant sous Windows, Linux et macOS et permettant de télécharger facilement des vidéos avec les paramètres de votre choix (via youtube-dl ou yt-dlp) mais également de convertir des vidéos avec des réglages personnalisés.
Si quand vous étiez ado, tout le monde vous surnommait "calculette", vous avez surement une revanche à prendre avec les calculatrices. Mais plutôt que de les bruler par centaine de milliers avec un lance-flamme, je vous propose de faire la paix avec elle. Enfin, seulement si vous êtes sous Mac, car Numi ne fonctionne que…
In this tutorial, you will learn how to install the Surfshark application on your Linux device.
Also :
Surfshark Settings and Features
https://support.surfshark.com/hc/en-us/articles/18963124764306-Surfshark-Settings-and-Features
Si vous avez beaucoup d'images ou de photos que vous souhaitez recadrer pour leur donner une taille différente, pas de panique. Vous n'avez pas besoin de télécharger un outil spécialisé pour faire ça. Il vous suffit d'aller sur le site Birme qui vous permet de faire ça gratuitement. Vous glissez-déposez toutes vos images sur Birme.…
concatenation - Join mp4 files in linux
The best way to do this currently is with the concat demuxer. First, create a file called inputs.txt formatted like so:
file '/path/to/input1.mp4'
file '/path/to/input2.mp4'
file '/path/to/input3.mp4'
Then, simply run this ffmpeg command:
ffmpeg -f concat -i inputs.txt -c copy output.mp4
Merge/join/concatenate hundreds of ts or MP4 files into one file
/bin/bash
for i in seq 0 $totalNumberOfTsFiles; do echo file "'${i}.ts'" >> Input.txt ; done
/home/hq6/bin/ffmpeg-2.3.3/ffmpeg -f concat -i Input.txt -c copy output.ts
et:
for i in seq 0 1163; do cat "$i.ts" >> newvideo.ts; done
Pour mp4:
for i in seq 0 1; do MP4Box -cat "$i.mp4" >> -new newvideo.mp4; done