
Recherche avancée
Autres articles (16)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
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 (...) -
D’autres logiciels intéressants
12 avril 2011, parOn ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
Videopress
Site Internet : (...)
Sur d’autres sites (4184)
-
How can play scheduled video (time based playlist) using ffmpeg on nginx-rtmp ?
26 mai 2019, par parsa sadrI’am using ffmpeg code to generates adaptive bitrate a RTMP stream from mp4 file.first convert input.mp4 file to 5 different resolution and bitrate .flv file using ffmpeg then again use ffmpeg and stream these 5 files on nginx-rtmp.(on one application with for bitrate output)
I’am using NGINX to take the RTMP stream and forwards to clients by HLS protocol and it is working fine.
but my problem is :
""How can create dynamic scheduled playlist and play videos on Specified time ?""create 5 .flv file
ffmpeg -re -i /home/video/input.mp4 \
vcodec libx264 -pix_fmt yuv420p -preset medium -tune zerolatency -vsync cfr -s 480x360 -c:a aac -strict -2 -ac 2 -b:a 96k -preset ultrafast -x264-params "nal-hrd=cbr" -b:v 500k -minrate 500k -maxrate 500k -bufsize 1000k /home/video2/3.flv \
...
...then stream on nginx server
ffmpeg -re -i /home/video2/1.flv -re -i /home/video2/2.flv -re -i /home/video2/3.flv -re -i /home/video2/4.flv -re -i /home/video2/5.flv \
map 4:0 -map 4:1 -c:v copy -c:a copy -f flv rtmp ://nginx-ip:port/app/stream_1080p \
map 3:0 -map 3:1 -c:v copy -c:a copy -f flv rtmp ://nginx-ip:port/app/stream_720p \
map 2:0 -map 2:1 -c:v copy -c:a copy -f flv rtmp ://nginx-ip:port/app/stream_480p \
map 1:0 -map 1:1 -c:v copy -c:a copy -f flv rtmp ://nginx-ip:port/app/stream_360p \
map 0:0 -map 0:1 -c:v copy -c:a copy -f flv rtmp ://nginx-ip:port/app/stream_240p ;
-
execute shell script from php
11 juillet 2016, par Shortywhen i use a ffmpeg command in shell_exec it works, but when i want to execute the shellscript with a given value it doesn’t ...
$cmd='ffmpeg -i /home/shorty/stormfall/'.$upld.' -filter_complex "[0:v]boxblur=10[bg];[0:v]crop=1280:625:00:45[fg];[bg][fg]overlay=00:45" -c:v libx264 -c:a copy /home/shorty/stormfall/swf/temp.flv';
works but ;
$cmd="./home/shorty/stormfall/members/moviefilters.sh /home/shorty/stormfall/$upld";
not,
i use
file=$1
ffmpeg -i $1 -filter_complex "[0:v]boxblur=10[bg];[0:v]crop=1280:625:00:45[fg];[bg][fg]overlay=00:45" -c:v libx264 -c:a copy /home/shorty/stormfall/swf/temp.flvin script to get the value
any ideas to fix ?
-
Ffmpeg create gif from images with fullPath
4 juillet 2020, par padavanI need create gif from images in one line (without external file with list images). I dont understand how create if i have full paths ?


/home/userMo/test/dir1/4.jpg 
/home/userMo/pics/late/sada_342.jpg



I try by concat , but its dont work


ffmpeg -i "concat:/home/userMo/test/dir1/4.jpg|/home/userMo/pics/late/sada_342.jpg" -loop -1 out.gif