
Recherche avancée
Autres articles (39)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (3923)
-
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 ?
-
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'



-
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