
Recherche avancée
Médias (9)
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (39)
-
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...) -
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 -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)
Sur d’autres sites (4968)
-
Docker alpine : ffprobe not found in $PATH
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 ?


-
Is it possible to capture audio from an ASIO device with ffmpeg ?
26 mai 2016, par AmfasisWe have a setup with a Windows 7 machine where we installed Dante Virtual Soundcard and start that soundcard with ASIO capabilities. The soundcard will receive audio over the network from a Tesira server. We want to capture the audio to files (highly preferring each channel to a separate file). The files will be played back on a later moment. There will likely be 6 channels or more.
In the same setup we use ffmpeg to capture some video which is working fine, with Direct Show. So for audio we wanted to use the same setup, since ffmpeg is able to record audio as well. However, there seems to be no option to select the ASIO devices which the virtual soundcard probably creates. So the question is what command line to use for ffmpeg, or what to install ? Or which other program can record ASIO from command line ?
I already tried installing :
- Asio4all (actually wrong way around)
- sox (don’t know why actually)
- HiFi Cable Asio Bridge (from VB-audio, not enough channels even with donate version)
- Voicemeeter (from VB-Audio, not enough channels and actually mixes down)
- O Deus Asio link, this might be an interesting option but it did not let me configure any route, any suggestions ?
One thing I noticed is that the virtual soundcard can also be set to use WDM. Then I can see the devices with
ffmpeg -list_devices true -f dshow -i duymmy
, but recording does not yield any result, I have toctrl-c
to make it stop instead ofq
, and the file is zero bytes. Supposedly this is because the data over the network is all ASIO formatted and the Tesira Server cannot send "WDM data". FFmpeg stops at selecting the capture pin for audio onlyEDIT :
I ran ffmpeg with high verbosity and when selecting the WDM soundcard it stops at
Selecting pin Capture on audio only
. Also when requesting the options it gives the same line for 22 times :min ch=1 bits=8 rate= 11025 max ch=2 bits=16 rate= 44100
-
How to best set FFMPEG scenecut threshold
28 décembre 2018, par ArianaI am using FFMPEG to get live stream (from an ATSC receiver), and cut it into shots/scenes. Looks like there is a
scenecut
threshold (20
in my example) that specifies the sensitivity for scene change detection. What is the best value to set for best shot extraction ? I need the outputs to be a single scene/shot with best accuracy possible.ffmpeg -i http://hts:hts@<ip address="address">:<port>/stream/service/<hash address="address"> -y -c:v libx264 -profile:v high -prese6t:v fast -deinterlace -x264opts min-keyint=15:keyint=1000:scenecut=20 -b:v 2000k -c:a aac -b:a 128k -f segment -segment_format mp4 -segment_format_options movflags=empty_moov+frag_keyframe+default_base_moof+skip_trailer+faststart /home/1/output%%05d.mp4
</hash></port></ip>