
Recherche avancée
Autres articles (98)
-
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...) -
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, (...) -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...)
Sur d’autres sites (8270)
-
FFMPEG no audio in final output [migrated]
16 juin 2015, par MaverickI have the following FFMPEG command working.
ffmpeg -y -i slide.mp4 -f lavfi -i "color=c=black:s=1920x1080:r=25:d=1" -filter_complex "[0:v] setpts=PTS-STARTPTS [main]; \
[1:v] trim=end=3,setpts=PTS-STARTPTS [pre]; \
[1:v] trim=end=3,setpts=PTS-STARTPTS [post]; \
[pre][main][post] concat=n=3:v=1:a=0 [out]" -map "[out]" output.mp4It appends black frames at the start and end of the video. However, the output file does not contain the audio from the input file.
Any pointers to the problem will be highly appreciated.
-
FFmpeg does not successfully send http request to server
20 octobre 2019, par e-lyI’m trying to output data from ffmpeg to my webserver, but it simply does not work when I use my domain. It works as expected when I use localhost but not when I use my domain.
I’ve tried multiple things such as changing from a subdomain to a subdirectory using nginx, and like I said— it works when I use localhost but not when I use my domain. When I ran
-v trace
the logs told me that the connection was successful but the server did not receive anything, yet when I visited the same url in my browser I got a response.ffmpeg command :
'-v', 'trace',
'-f', 'x11grab',
'-s', '720x480',
'-r', '30',
'-i', ':100',
'-an',
'-c:v', 'mpeg1video',
'-q:v', '12',
'-bf', '0',
'-f', 'mpegts',
'http://stream.domain.com/'Nginx rule :
server {
listen 80;
server_name stream.domain.com;
location / {
proxy_pass http://localhost:9000/;
}
}Nodejs code :
app.post('/', (req, res) => {
console.log('Post received', req.url, req.ip)
res.sendStatus(200)
})I expect the console of the node process to let me know that a post has been received (for debugging purposes)
Instead, nothing is received.
However usinghttp://localhost:9000/
instead ofhttp://stream.domain.com/
works as expected -
batch converting in ffmpeg from jgp to gif while changing the resolution
15 janvier 2018, par zlboothHi this is my first post - excuse how basic it is !
I’ve got a line for batch converting jpg to gif in Mac
for i in *.JPG; do
ffmpeg -i "$i" "${i%.*}.gif"
doneThis line is from Lord Neckbeard’s answer to this post. How do you convert an entire directory with ffmpeg ?
I just want to add one more parameter which is batch converting the resolution as well as the file type.
inputting this doesn’t work :for i in *.JPG; do
ffmpeg -i "$i" -s:v 640x480 "${i%.*}.gif"
doneAny solutions much appreciated !