
Recherche avancée
Médias (91)
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Paul Westerberg - Looking Up in Heaven
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Le Tigre - Fake French
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Thievery Corporation - DC 3000
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Dan the Automator - Relaxation Spa Treatment
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Gilberto Gil - Oslodum
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (40)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...)
Sur d’autres sites (6091)
-
How to make multi-stage Docker image but avoid shared libraries conflict ?
26 mai 2022, par PolitechnicznyI need to make a Docker image that contains the following tools :


- 

- janus-pp-rec - video processor from Janus WebRTC
- ffmpeg and ffprobe
- Java 11 JDK








So I tried to make multi-stage Docker image :


FROM swmansion/janus-gateway:latest as janus
FROM jrottenberg/ffmpeg:latest as ffmpeg
FROM eclipse-temurin:11 as java

COPY --from=janus /usr /usr
COPY --from=ffmpeg /usr /usr



but still some files were missing so I copied the whole containers :


FROM swmansion/janus-gateway:latest as janus
FROM jrottenberg/ffmpeg:latest as ffmpeg
FROM eclipse-temurin:11 as java

COPY --from=janus / /
COPY --from=ffmpeg / /



but still nor janus-pp-rec, neither ffmpeg is working because I get errors :


$ docker container exec videoprocessing janus-pp-rec

janus-pp-rec: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.28' not found (required by /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0)
janus-pp-rec: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.28' not found (required by /usr/lib/x86_64-linux-gnu/libavutil.so.56)
janus-pp-rec: /lib/x86_64-linux-gnu/libm.so.6: version `GLIBC_2.29' not found (required by /usr/lib/x86_64-linux-gnu/libavutil.so.56)
...
janus-pp-rec: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version `GLIBCXX_3.4.25' not found (required by /usr/lib/x86_64-linux-gnu/libopenmpt.so.0)
...

$ docker container exec videoprocessing ffmpeg

ffmpeg: error while loading shared libraries: libavdevice.so.58: cannot open shared object file: No such file or directory



Any ideas how to make these tools work in one container ?


-
Why RTP doesn't support multiple streams to one port but RTSP does ?
30 avril 2022, par zenno2I use
ffmpeg
for streaming a video using RTP protocol.
Why I can't send multiple streams to one RTP port, but RTSP that uses RTP can ?
I started a RTSP server that listens 8554 TCP port and 8000/8001 RTP/RTCP. It easily can receive both video and audio streams to one port 8000, I've checked it with wireshark. But when I try to do the same with pure RTP using ffmpeg, it prints me an error

Only one stream supported in the RTP muxer



And if I want to stream a video with sound, I have to split them into two streams and send to different RTP ports. Or maybe I can somehow make it receive multiple streams to one port via RTP ?


Could you explain me, why it happens ?


-
lavfi/vulkan : port to using timeline semaphores
4 novembre 2021, par Lynne