
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (90)
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
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 (9782)
-
RTSP authentification through ffmpeg/ffplay doesn't work because of special symbols in the password
26 octobre 2018, par Eugene MartI have run into a problem while trying to receive a video from an IP-camera using ffplay.
My rtsp request looks like this : rtsp ://login:M3%LOL$KEKfp@x.x.x.x/path/to/media.amp
And ffplay/ffmpeg returns an 401 Unauthorized error code. I am absolutely sure that the credentials are correct. The problem is caused by the password (M3%LOL$KEKfp), which consists of special symbols like %, and #. Is there any way to make it work without changing the password ?
I tried using quote marks like this ffplay "rtsp ://login:M3%LOL$KEKfp@x.x.x.x/path/to/media.amp", and it didn’t have any ideas ?
PS : I’m using windows. Tried both CMD and PowerShell
-
How to convert ogg or mp3 file in wav without using ffmpeg
3 août 2023, par Maksim PalchevskiI have problems with installing ffmpeg and ffprobe that's why I am looking for ways to avoid them


I have tried to ask neurolinks and even looked in Internet, but it is might to be impossible to install ffmpeg on that os that i have (nix os). So, i have tried to avoid it, but haven't found any solutions. Here is my code :


from pydub import AudioSegment
def convert_audio_to_wav(input_file, output_file):
 # Читаем аудиофайл с помощью pydub
 x = AudioSegment.from_file(input_file)
 x.export(output_file, format='wav') 



And it returns an error :


[Errno 2] No such file or directory: 'ffprobe'



-
ffmpeg convert 4K file to 1080p mp4 file
16 septembre 2015, par Hüseyin GÖZEi’m using ffmpeg to converting video in windows service, when i’m trying to converting 4K video to 1080p ffmpeg returns error like this :
libvo_aacenc Stream mapping : Stream #0:0 -> #0:0 (h264 (native) ->
h264 (libx264)) Stream #0:2 -> #0:1 (ac3 (native) -> aac
(libvo_aacenc)) Error while opening encoder for output stream #0:1 -
maybe incorrect parameters such as bit_rate, rate, width or heightmy ffmpeg convert command like this :
ffmpeg -i 4k2.mp4 -vf scale=1920:1080 -threads 3 4k2_1080.mp4
what’s wrong with this ?