
Recherche avancée
Autres articles (56)
-
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 (...) -
Problèmes fréquents
10 mars 2010, parPHP et safe_mode activé
Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
Sur d’autres sites (7921)
-
How to play a Video with mpv with multiple audio streams
27 février 2024, par T-GhostI try to play a movie in two languages.
Audio 1 to Speaker
Audio 2 to Headset


mpv --lavfi-complex="[aid1] [aid2] amix [ao]" "input.mp4"



Play the video and mix audio1 & audio2 and output is standard device


mpv "input.mp4" --vid=1 --aid=1 --audio-device="wasapi/{d3178b30-xxxx-xxxx-xxxx-xxxxxxxxxxxx}"



Play video with audio1


mpv "input.mp4" --aid=2 --no-video --audio-device="wasapi/{06a44940-xxxx-xxxx-xxxx-xxxxxxxxxxxx}"



Play audio2 only


how to combine this ?


-
How to decode and play the .h264 video from amazon s3 server in android ?
7 mai 2015, par AshokI have .h264 videos in server, how to decode that video and playing in android ?
I am using the FFMPEG to play those videos but in FFMPEG sample it takes
the video from SD-card and successfully play’s the video. I am using the
surface view to play those videos. My question is how to play .h264 video from amazon s3 server in android ?Thanks in advance.
-
why jmf can't play rtp stream ?
24 janvier 2017, par ahmet burakI produced an rtp link with ffmpeg and I tried to listen and play this stream. VLC and ffmpeg can play rtp stream, both work well but jmf doesn’t.
Although there is no any error, jmf doesn’t play rtp stream and there is no sound.
My rtp stream (http:.. is a radio link and rtp :... my stream)
ffmpeg -i http://airspectrum.cdnstream1.com:8114/1648_128 -acodec copy -f rtp "rtp ://127.0.0.1:10000/audio/1"
public void play() {
MediaLocator mediaLocator = new MediaLocator("rtp://127.0.0.1:10000/audio/1");
try {
if (mediaLocator == null) {
System.err.println("null locator");
}
player = Manager.createRealizedPlayer(mediaLocator);
player.start();
} catch (CannotRealizeException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} catch (NoPlayerException e) {
e.printStackTrace();
}
}- os ubuntu 16.08
- java jdk 1.8
- javax.media.jmf 2.1.1e (maven repo version)