1 lien privé
Watch videos, movies, TV series and TV channels instantly.
Error- libx264.so.152
If you are getting an error while starting the Stremio, that “error while loading shared libraries: libx264.so.152: cannot open shared object file: No such file or directory“. Then run these two commands as well.
avec wget
http://archive.ubuntu.com/ubuntu/pool/universe/x/x264/libx264-152_0.152.2854+gite9a5903-2_amd64.deb
puis:
sudo apt install ./libx264-152*amd64.deb
La publicité débarque sur Netflix. A-t-on craqué pour cet abonnement low-cost ?
File converter service - more than 200 different audio, video, document, ebook, archive, image, spreadsheet and presentation formats supported.
aussi :
https://www.freeconvert.com
File Converter - Convert 2000+ different audio, image, video, e-book, document, and archive conversions online. No software to install and free.
retirer des éléments d'une photo simplement :
https://cleanup.pictures/
supprimer des objets ou des gens d'une image :
https://www.hama.app/
supprimer le fond automatiquement:
https://www.remove.bg/fr ou https://removal.ai/
agrandir une image sans perte :
http://waifu2x.udp.jp/ ou https://imglarger.com/
supprimer le bruit d'une photo :
https://imglarger.com/Denoiser
retirer le fond d'une vidéo https :
//www.unscreen.com/
séparer les voix de la musique :
https://vocalremover.org/
Si vous cherchez un outil libre pour éditer de la vidéo sous Linux, je propose aujourd’hui de jeter un œil à Flowblade. Ce logiciel propose tout ce qu’il faut pour faire vos montages.
https://jliljebl.github.io/flowblade/
https://jliljebl.github.io/flowblade/download.html
Si vous aimez VLC autant qu’il vous aime pour regarder vos vidéos, saviez-vous qu’il existe un plugin nommé VLC-Bittorrent qui comme son nom l’indique est un plugin vous permettan…
These tools shift all the time stamps of a movie subtitle file. They can be used for synchronizing the subtitles to a movie when there is a slight offset between the two (this can be the case when the subtitles and the movie come from two different sources), or when there is a time scale difference (for instance if the movie and the subtitle file have different frame rates).
SubShifter currently supports the SRT file format, which is supported by most modern media players.
Téléchargement gratuit de sous-titres pour des films en DivX, recherchez en plusieurs langues depuis un site web multilingue. Des milliers de sous-titres traduits pour les films XviD et les séries TV
Au cas où certains ne connaissaient pas : cet outil permet de refaire vos MKV (sous titres, langues, chapitres…) sans ré-encoder toute l’audio/vidéo…
https://mkvtoolnix.download/
I tried to put together the simplest tutorial as possible for setting up docker on linux mint.
If you're not using docker then you are missing out on a great new way to manage your server and install new software.
How To Uninstall Docker and Docker Compose On Linux Mint
https://dev.to/bikodes/how-to-uninstall-docker-and-docker-compose-on-linux-mint-24oo
Un gestionnaire de téléchargement qui vous mettra le feu
https://github.com/firedm/FireDM
While there are a lot of tools for reducing video file sizes, most of them depend on FFMPEG. Learn how to reduce video file size using FFMPEG in Linux.
To convert a file using default FFmpeg settings, use the following command:
on passe de 120Mo à 80Mo
ffmpeg -i inputfile.video outputfile.video
ffmpeg -i x.mp4 -vcodec libx265 -crf 28 z.mp4
On passe de 120Mo à 40Mo
ffmpeg -i x.mp4 -vf "scale=iw/2:ih/2" v.mp4
On passe de 120Mo à 30Mo et de 1280x720 à 640x360
I tested most of the other proposed answers to this question. The test data conclusions are below. These are the proposed answers that I tested:
(BR) Modify the bitrate, using:
ffmpeg -i $infile -b $bitrate $newoutfile
(CR) Vary the Constant Rate Factor, using:
ffmpeg -i $infile -vcodec libx264 -crf 23 $outfile
(SZ) Change the video screen-size (for example to half its pixel size), using:
ffmpeg -i $infile -vf "scale=iw/2:ih/2" $outfile
(BL) Change the H.264 profile to "baseline", using:
ffmpeg -i $infile -profile:v baseline $outfile
(DF) Use the default ffmpeg processing, using:
ffmpeg -i $infile $outfile
DATA
"size" - percent pixel size of the converted video in relation to the original.
"bitrate" - bitrates of original and converted videos.
"definition" - pixel size of videos.
"convert" - time to convert the video in seconds.
I calculated the target bitrate for (BL)using the proposed method.
=== File A - How Node Is Helping To Propel Angular-Fnbixa7Ts6M.mkv ===
original BR CR SZ BL DF
-------- --- -- -- -- --
size 64152 kb 214% 76% 40% 83% 76%
bitrate 411 kb/s 883 313 165 342 313
definition 1920x1080 1920x1080 1920x1080 960x540 1920x1080 1920x1080
convert -- 648 509 225 427 510
=== File B - Using GraphQL with Angular _ By - Lee Costello-OGyFxqt5INw.mkv ===
original BR CR SZ BL DF
-------- --- -- -- -- --
size 410301 kb 33% 109% 28% 143% 109%
bitrate 2687 kb/s 880 2920 764 3843 2920
definition 3840x2160 3840x2160 3840x2160 1920x1080 3840x2160 3840x2160
convert -- 2307 3188 1116 2646 3278
CONCLUSIONS
The (SZ) method is definitely the quickest method. It was 2X to 4X faster. This can be very much an issue on high-def videos, since all of the other methods took longer to convert than the actual length of the video! For example, The (CR) method took 53 minutes to convert the 21 minute video.
The (SZ) method is definitely the best method if the definition of the video is larger than the definition of the screen that will be displaying it. For example, if your phone can only display a 1080p picture, sending it a 3840x2160 video is just wasteful. It would be best to half its size to 1080p.
Some of the proposed answers actually INCREASED the size of some videos. For example, the (BR) method more than doubled the size of the 1080p sample. It did however make the 2160p size one-third. For the high-def sample, the (CR), (BL) and (DF) methods all INCREASED the size of the video.
Correct (or best) Answer
It is always best to first lower the resolution to the maximum supported by your target display.
If you want to reduce file size further, it will depend on personal choices. You can either reduce information content or increase compression.
You can lower the resolution more if that is not something that concerns you.
If the video doesn't include fast action scenes, you may want to lower the frame rate.
If you have a powerful processor and space is the only issue, you can increase the compression rate.
Bit rate is a combination of multiple factors. So just telling ffmpeg to lower the bit rate may not give you the results you want.
Another way of lower information content is to lower the color depth. How to do this was not yet discussed.
FFmpeg is the leading multimedia framework, able to decode, encode, transcode, mux, demux, stream, filter and play pretty much anything that humans and machines have created. It supports the most obscure ancient formats up to the cutting edge. No matter if they were designed by some standards committee, the community or a corporation. It is also highly portable: FFmpeg compiles, runs, and passes our testing infrastructure FATE across Linux, Mac OS X, Microsoft Windows, the BSDs, Solaris, etc. under a wide variety of build environments, machine architectures, and configurations.
You cannot get the vide/audio information like track, average mixed code rate in properties. MediaInfo can do that.
MediaInfo is a free, cross-platform and open-source program that displays technical information about media files, as well as tag information for many audio and video files.
https://mediaarea.net/en/MediaInfo
Je vous explique comment je me suis libéré un peu de YouTube tout en ne stoppant pas d'utiliser la plateforme de diffusion de vidéos.
https://github.com/yt-dlp/yt-dlp
Explains how to install FFmpeg with NVIDIA GPU acceleration hardware support on Linux to speed up encoding with ffmpeg command.
How to find the NVIDIA cuda version:
https://www.cyberciti.biz/faq/how-to-find-the-nvidia-cuda-version/#more-149900
Est-il encore utile de présenter C'est pas sorcier, l'émission de vulgarisation scientifique (mais qui en réalité a abordé tous les sujets, avec la même rigueur) produite par France Télévision de 1993 à 2014?
Présentée par Jamy et son compère Fred, puis, à partir de 1999, par Sabine, l'émission C'est pas sorcier, qui comptabilise 559 épisodes, reste une référence pédagogique et didactique encore aujourd'hui.
yt-dlp is a youtube-dl fork based on the now inactive youtube-dlc. The main focus of this project is adding new features and patches while also keeping up to date with the original project.
https://trolliet.info/blog/032-mpvytdl/
install
sudo curl -L https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -o /usr/local/bin/yt-dlp
sudo chmod a+rx /usr/local/bin/yt-dlp
sudo wget https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -O /usr/local/bin/yt-dlp
sudo chmod a+rx /usr/local/bin/yt-dlp