
Recherche avancée
Autres articles (51)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
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
Sur d’autres sites (14960)
-
h274 : remove optimization pragma
25 août 2021, par Lynneh274 : remove optimization pragma
This results in warnings on compilers which don't support it,
objections were raised during the review process about it but went unnoticed,
and the speed benefit is highly compiler and version specific, and
also not very critical.We generally hand-write assembly to optimize loops like that, rather
than use compiler magic, and for 40% best case scenario, it's simply
not worth it.Plus, tree vectorization is still problematic with GCC and disabled by default
for a good reason, so enabling it locally is sketchy. -
Concatenating Smooth Streaming output to a single MP4 file - problems with A/V sync. What is CodecPrivateData ?
14 février 2021, par user15180344I have a video in fragmented form which is an output of an Azure Media Services Live Event (Smooth Streaming).


I'm trying to concatenate the segments to get a single MP4 file, however I've run into a A/V sync problem - no matter what I do (time-shifting/speeding up/slowing down/using FFmpeg filters), the audio delay is always floating. To get the output MP4 file, I tried concatenating the segments for video and audio streams (both at OS file level and with FFmpeg) and then muxing with FFmpeg.


I've tried everything I found on the web and I'm always ending up with exactly the same result. What's important, when I play the source from the manifest file, it's all good. That made me skim through the manifest once again, and I realized there's
CodecPrivateData
value which I'm not using anywhere in the process. What is it ? Could it somehow help solving my problem ?

-
How to make ffmpeg available inside my Docker container ?
26 août 2019, par vcamargoI’m currently trying to run a
ffmpeg
Docker image inside my own container withdocker-compose
using thedepends_on
clause. But when I try to reachffmpeg
inside my code, it seems like it’s not available system-wide and I get an error. I believe I’m misconfiguring Docker.My current
Dockerfile
is as follows :FROM node:9
WORKDIR /usr/app
COPY package*.json ./
RUN npm install --quiet
COPY . .And my
docker-compose.yml
:version: '3'
services:
app:
build: .
command: npm run dev
volumes:
- .:/usr/app/
- /usr/app/node_modules
ports:
- "3000:3000"
depends_on:
- ffmpeg
ffmpeg:
image: jrottenberg/ffmpeg:3.3When I run
docker-compose up
I can see that theffmpeg
is actually working, but then my application proceeds to start and it seems thatffmpeg
ceases to work.