
Recherche avancée
Autres articles (96)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
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 (...)
Sur d’autres sites (9834)
-
ffmpeg over https fails
8 mars 2021, par RobinIf I feed
url
withhttp
, such as this :


ffmpeg -i http://vjs.zencdn.net/v/oceans.mp4 videojs.mp4




It works perfectly. However, when I feed
url
withhttps
, such as this :


ffmpeg -i https://s3-us-west-2.amazonaws.com/bucket/check.mp4 video.mp4




This gives me an error :





https protocol not found, recompile FFmpeg with openssl, gnutls, or
 securetransport enabled.
 https://s3-us-west-2.amazonaws.com/bucket/check.mp4 : Protocol not
 found





What should I do to enable https?


-
ffmpeg over https fails
5 janvier 2017, par RobinIf I feed
url
withhttp
, such as this :ffmpeg -i http://vjs.zencdn.net/v/oceans.mp4 videojs.mp4
It works perfectly. However, when I feed
url
withhttps
, such as this :ffmpeg -i https://s3-us-west-2.amazonaws.com/bucket/check.mp4 video.mp4
This gives me an error :
https protocol not found, recompile FFmpeg with openssl, gnutls, or
securetransport enabled.
https://s3-us-west-2.amazonaws.com/bucket/check.mp4 : Protocol not
foundWhat should I do to enable https?
-
ffmpeg overlay video on another with height and width
3 mars 2018, par dodojoeI have a very simple question about ffmpeg.
I need to put video2 on video1.
Like this photo : (with margin from top and left)
Video2 is 470*470 px
I need a simple command to do this.
Please tell me how can i get that result ?
I’ve tried something like this :
ffmpeg -i 2.mp4 -vf "movie=blur.mp4:loop=200,scale=iw/2:-1"