
Recherche avancée
Autres articles (62)
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)
Sur d’autres sites (4810)
-
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 ?