
Recherche avancée
Médias (91)
-
Spoon - Revenge !
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
My Morning Jacket - One Big Holiday
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Zap Mama - Wadidyusay ?
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
David Byrne - My Fair Lady
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Beastie Boys - Now Get Busy
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (91)
-
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 -
MediaSPIP Player : problèmes potentiels
22 février 2011, parLe lecteur ne fonctionne pas sur Internet Explorer
Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...) -
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)
Sur d’autres sites (13139)
-
Docker alpine : ffprobe not found, despite installing ffmpeg with apk in Dockerfile
5 mars 2023, par Harun SasmazI have a Go program that executes
ffmpeg
andffprobe
commands, so I need to install them in my Docker container.

Here is my Dockerfile :


FROM golang:1.17.7-alpine

WORKDIR /src
COPY go.mod go.sum ./
RUN go mod download
COPY . .
RUN go build -o ./server cmd/service/main.go

RUN apk update
RUN apk upgrade
RUN apk add --no-cache ffmpeg

FROM alpine
COPY --from=0 /src/server /usr/bin/server
CMD ["server"]



However, when I run container, it says :


exec: "ffprobe": executable file not found in $PATH



How can I fix it ?


-
FFMPEG & JNI : How to decode from URL
24 avril 2013, par Hafedh HaoualaI'm trying to make an android application that uses the FFMPEG for decoding videos that are not supported by Android ( not on all the devices at least ) : MPEG-TS & h264 Main Profile.
So, until now, I was able to use FFMPEG from JNI to decode some local video with the above specs, but my goal is to make the FFMPEG decode data from a streaming URL (http://127.0.0.1:1666/
) on which I will send buffers from an android service (for certain reasons)So, basically, I have two questions :
-
how I will be able to do the decoding from a streaming URL as I couldn't find any good example ?
-
when decoding my local MPEG-TS video, I've noticed that the playback speed is quite slow, and it happen that the video freezes for a while, even the Dolphin Player (based on FFMPEG) has the same behavior, and I don't know if is there some solution for this. Any suggestion ?
I appreciate your help.
-
-
lavc : Deprecate AVPicture structure and related functions
14 octobre 2015, par Vittorio Giovaralavc : Deprecate AVPicture structure and related functions
This structure served as a bridge between data pointers and frames,
but it suffers from several limitations :it is not refcounted and data must be copied to every time
it cannot be expanded without ABI break due to being used on the stack
its functions are just wrappers to imgutils which add a layer of
unneeded indirection, and maintenance burdenit allows hacks like embedding uncompressed data in packets
its use is often confusing to our users
AVFrame provides a much better API, and, if a full blown frame is not
needed, it is just as simple and more straightfoward to use data and
linesize arrays directly.Signed-off-by : Vittorio Giovara <vittorio.giovara@gmail.com>