
Recherche avancée
Autres articles (27)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)
Sur d’autres sites (4437)
-
How to use ffmpeg with h.265 (or h.264) codec ?
6 octobre 2022, par randomuser1Normally I start recording the camera image with the command :



ffmpeg -y -f vfwcap -r 25 -i 0 OUT.mp4



but I'm not sure which coded do I use in here (I'm just beginning my adventure with ffmpeg), however I found on this webpage this command :



ffmpeg -i INPUT -c:a copy -x265-params crf=25 OUT.mov



But when I run it - I get the following error :

INPUT: No such file or directory"



I changed the INPUT word above also to
0
, so the command is


ffmpeg -i 0 -c:a copy -x265-params crf=25 OUT.mov
,
but error stays similar (0: no such file or directory
).
How can I grab the camera image and save it to a file while using the H.265 ?

-
Green artifact in WebM video
29 août 2022, par AMDIvailoI'm recording a canvas with the MediaRecorder web api. The resulting WebM video looks good in most players (has artifacts in some), but if I convert it to mp4 with
ffmpeg -i out.webm out.mp4
, some strange green artifacts appear on the bottom of it (in every player). Anyone knows why this happens ?

The WebM video : https://drive.google.com/file/d/1RQb_610nIN_s974ZRoquApr5ZUWzYJKk/view?usp=drivesdk


The corrupted MP4 output :
https://drive.google.com/file/d/1RVWSOBwpo0FKTGKPmkbBcHdkXtbHbLVc/view?usp=drivesdk


Thank you in advance


-
Debian Linux How-To use eth0 and wlan0 on different routers ?
27 mars 2014, par ChrisI have eth0 and wlan0, both are using different rounter, one is good for download, the other one is good for upload.
But... When i have eth0 cable plugged in, wlan0 can not ping its own router or ping ex. google.com.ping -I eth0 google.com
i get answer
ping -I wlan0 google.com
no answer
both routers have inet connection and at the moment both interfaces using DHCP.
I need to run ffmpeg that is getting live-stream via wlan0 -> put it in to ffserver -> second ffmpeg get ist from ffserver and send it via eth0 to my dedicated server...
any idea ?