
Recherche avancée
Médias (1)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
Autres articles (6)
-
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 (3064)
-
ERROR : unsatisfiable constraints : so:libvpx.so.6 (missing)
17 janvier 2021, par Valeed MalikFFMpeg was updated this week and is causing the build to break.



Are my options to either :



- 

- pin ffmpeg to a previous version ? If so, how do I pin to the version before current ?
- Update the python dockerfile version







Output :



Step 8/42 : RUN apk add --no-cache ffmpeg
 ---> Running in 9e46540ed393
fetch http://dl-cdn.alpinelinux.org/alpine/v3.8/main/x86_64/APKINDEX.tar.gz
fetch http://dl-cdn.alpinelinux.org/alpine/v3.8/community/x86_64/APKINDEX.tar.gz
fetch http://dl-8.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz
ERROR: unsatisfiable constraints:
 so:libvpx.so.6 (missing):
 required by:
 ffmpeg-libs-4.1.1-r2[so:libvpx.so.6]
 ffmpeg-libs-4.1.1-r2[so:libvpx.so.6]
 ffmpeg-libs-4.1.1-r2[so:libvpx.so.6]
 ffmpeg-libs-4.1.1-r2[so:libvpx.so.6]
 ffmpeg-libs-4.1.1-r2[so:libvpx.so.6]
 ffmpeg-libs-4.1.1-r2[so:libvpx.so.6]
 ffmpeg-libs-4.1.1-r2[so:libvpx.so.6]
 ffmpeg-libs-4.1.1-r2[so:libvpx.so.6]
 ffmpeg-libs-4.1.1-r2[so:libvpx.so.6]
 ffmpeg-libs-4.1.1-r2[so:libvpx.so.6]
The command '/bin/sh -c apk add --no-cache ffmpeg' returned a non-zero code: 3
ERROR: Job failed: exit code 3
FATAL: exit code 3 




Dockerfile :



FROM python:3.6.7-alpine

ENV LANG C.UTF-8
RUN echo "http://dl-8.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories
RUN apk upgrade


RUN addgroup -S django && adduser -S -G django django

RUN apk update
# FFMPEG/Sox dependencies
RUN apk add sox
#RUN apk add --no-cache libvpx-dev
RUN apk add --no-cache ffmpeg



-
Merge commit ’136f55207521f0b03194ef5b55ba70f1635d6aee’
20 mars 2017, par Clément BœschMerge commit ’136f55207521f0b03194ef5b55ba70f1635d6aee’
* commit ’136f55207521f0b03194ef5b55ba70f1635d6aee’ :
mpegvideo_motion : Handle edge emulation even without unrestricted_mvThis commit is a noop, see 7b1e0beb2da31a0a8847bc9c68a87a120b71fa8a
Merged-by : Clément Bœsch <u@pkh.me>
-
ffmpeg opening video file at lower bitrate
23 février 2018, par Xeno BossI have a php page which runs ffmpeg from shell with the exec() function as follows
ffmpeg -i rtsp://address:port/stream -b:v 512k output.mp4
and since many people could visit the page at once it could fire up many ffmpeg processes for different rtsp streams simultaneously which will eat up my bandwidth.
Is there some way for me to reduce the bitrate at which the streams are opened ?Note : I assumed the bitrate is the most effective factor for reducing bandwidth, please correct me if you have any better suggestions.