
Recherche avancée
Autres articles (9)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
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 (...) -
Que fait exactement ce script ?
18 janvier 2011, parCe script est écrit en bash. Il est donc facilement utilisable sur n’importe quel serveur.
Il n’est compatible qu’avec une liste de distributions précises (voir Liste des distributions compatibles).
Installation de dépendances de MediaSPIP
Son rôle principal est d’installer l’ensemble des dépendances logicielles nécessaires coté serveur à savoir :
Les outils de base pour pouvoir installer le reste des dépendances Les outils de développements : build-essential (via APT depuis les dépôts officiels) ; (...)
Sur d’autres sites (4233)
-
avformat/tls : Fix windows build with openSSL enabled.
20 janvier 2014, par Matt Oliver -
How to update/remove ffmpeg on Windows 10
9 janvier 2018, par C. WagnerI found a python script that had to use
ffmpeg
via cmd.exe thus I "installed" ffmpeg following these instructions. I downloaded the latest version ffmpeg 3.4.1 but would like to replace it with ver 2.4.x. (I think syntax from the .py file is for ver 2.4.x). I replaced the entire folder with files from the older version zip but when I inputffmpeg -version
it still shows version 3.4.I also tried removing path from environment variables,rebooting, and deleting entire ffmpeg folder to no avail. CMD.exe still displays ffmpeg as version 3.4 even when the entire folder is deleted. I was not able to find anything on ffmepg documentation or on google. I know its not exactly programming related but I thought I would get an answer here rather than in video production.
Snippet of the code
system("./ffmpeg -i xxx.ts -c copy -bsf:a aac_adtstoasc xxx.mp4")
-
av_read_frame of ffmpeg in windows always returning packet.stream_index as 0
17 février 2015, par yanqing luI’m using ffmpeg to demuxer, for some video like the windows’s sample Wildlife.wmv, the av_read_frame is always returning packet.stream_index=0. This leads the video queue very big and memory overflow. I get 15 frames of video, but only 1 frame of audio. Is there some options to control the av_read_frame, so I can read frames like : video-audio-video-audio, in this way it’s easy to sync AV and keep queue balance.
Thanks in advance.