
Recherche avancée
Médias (1)
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
Autres articles (109)
-
L’agrémenter visuellement
10 avril 2011MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté. -
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 -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (6018)
-
avformat_open_input failed at openning local rtmp stream
3 septembre 2019, par edhuI’m relatively new to this workflow and this might be a simple problem to solve. However, I haven’t found answers that matched exactly with my question. I’ve set up my nginx server with rtmp module and for testing purposes I used the following command to publish my stream :
ffmpeg -re -i -vcodec libx264 -vprofile baseline -acodec aac -strict -2 -f flv rtmp://localhost/show/stream
After that, I launched up my application which is supposed to read the stream from the nginx server and it failed at
avformat_open_input(&ctx, szFilePath, NULL, NULL);
The returned error code is -5 and it signifies I/O issue. The
szFilePath
I passed in isrtmp://localhost/show/stream
and I assume this will automatically work since it works when I tried to play some mp4 sample files online. I also triedrtmp://localhost:1935/show/stream
and vice versa. I could view the stream being played in VLC but I can’t open it in the code. I’m not really sure what happened here. I feel like this isn’t necessarily a complicated issue but I don’t know where to start looking for possibles causes. I’d appreciate the help. Thanks ! -
SDL/ffmpeg on iOS showing only blank or white screen
3 avril 2018, par Law GimenezI am following this ffmpeg/SDL tutorial using Swift and using the URL path as
let urlPath = "rtsp://184.72.239.149/vod/mp4:BigBuckBunny_175k.mov"
but it is only showing white or blank and it does not show anything. I want to show a window as what other tutorials say.I logged all the flow and there is no error. I have very little experience on SDL, let me know if some part of the code is not working.
-
Loop a video with ffmpeg
4 mars 2015, par EllebkeyI am triying to loop a short video using ffmpeg in python, and i have the next code :
FFMPEG_BIN = "ffplay"
import subprocess as sp
import os
def playVideo(video):
command = [ FFMPEG_BIN,video,'-autoexit']
pipe = sp.Popen(command, stdout = sp.PIPE, bufsize=10**8, stderr = sp.PIPE)
pipe.wait()
def playPrincipal():
command = [ FFMPEG_BIN,"videos/01-bienvenida.webm","-autoexit","-an","-loop 0"]
pipe2 = sp.Popen(command, stdout = sp.PIPE, bufsize=10**8, stderr = sp.PIPE)but the video doesnt show on my second method, im making a body gesture recognition so the point is to show a principal video stay on a loop playPrincipal() like a background, and when I detect a position show other video in front of the first video,that part alredy works, and when the video ends the first video still playing. My second though was to make a large video and play it, but after around 1.30min the screen frezze, so the video just stop.