
Recherche avancée
Médias (16)
-
#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
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (75)
-
Submit enhancements and plugins
13 avril 2011If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone. -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
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 (6270)
-
ffmpage win7 screen record cursor is not normal
5 avril 2017, par WesleyI hit a problem when recording screen on window 7 using ffmpeg.
So, you guys see the big red point is recorded mouse cursor.
I am using PPT default pencil, so, actually, cursor is a very small point.
But it becomes so big when play.Command I use :
ffmpeg.exe -y -rtbufsize 500M -f gdigrab -framerate 5 -draw_mouse 1 -i desktop -f dshow -i audio=%s -af "highpass=f=200, lowpass=f=3000" -c:v libx264 -r 5 -preset medium -tune zerolatency -crf 35 -pix_fmt yuv420p -c:a libvo_aacenc -ac 2 -b:a 48k -fs 50M -movflags +faststart
Anyone hit this before ?
Thanks.
Wesley
-
Optimize ffmpeg stereo splitting and broadcasting
12 avril 2016, par NgoralI recieve an rtmp-input with a video and a stereo audio. I need to split audio and send two videos with the left channel and the right channel on different adresses. I have such a command :
ffmpeg -r 25 -loop 1 -i background.png \
-rtbufsize 2000M -i rtmp://stereoinput \
-filter_complex "[1:v][0:v]overlay[video];[video]split[video][video2];[1:a]channelsplit[aleft][aright]" \
-map [video] -map [aleft] -c:v libx264 -minrate 1000k -maxrate 1500k -b:v 1300k -bufsize 1000k \
-pix_fmt yuv420p -r 25 -g 100 -tune zerolatency -preset ultrafast \
-c:a libmp3lame -ar 44100 -y -f flv rtmp://out_left \
-map [video2] -map [aright] -c:v libx264 -minrate 1000k -maxrate 1500k -b:v 1300k -bufsize 1000k \
-pix_fmt yuv420p -r 25 -g 100 -tune zerolatency -preset ultrafast \
-c:a libmp3lame -ar 44100 -y -f flv rtmp://out_rightBut it performs slow : it outputs only 20 fps. I encode on azure VPS with a 4 GB RAM and 4 Cores and has never thought it could had a problem like this. It encodes one stream perfectly.
Do you have any ideas how to make it faster ?
For,example I also don’t like that I have to encode the same videostream twice. I can’t afford two commands cause I have to see whole output of the command. -
Optimize ffmpeg stereo splitting end broadcasting
11 avril 2016, par NgoralI recieve an rtmp-input with a video and a stereo audio. I need to split audio and send two videos with the left channel and the right channel on different adresses. I have such a command :
ffmpeg -r 25 -loop 1 -i background.png \
-rtbufsize 2000M -i rtmp://stereoinput \
-filter_complex "[1:v][0:v]overlay[video];[video]split[video][video2];[1:a]channelsplit[aleft][aright]" \
-map [video] -map [aleft] -c:v libx264 -minrate 1000k -maxrate 1500k -b:v 1300k -bufsize 1000k \
-pix_fmt yuv420p -r 25 -g 100 -tune zerolatency -preset ultrafast \
-c:a libmp3lame -ar 44100 -y -f flv rtmp://out_left \
-map [video2] -map [aright] -c:v libx264 -minrate 1000k -maxrate 1500k -b:v 1300k -bufsize 1000k \
-pix_fmt yuv420p -r 25 -g 100 -tune zerolatency -preset ultrafast \
-c:a libmp3lame -ar 44100 -y -f flv rtmp://out_rightBut it performs slow : it outputs only 20 fps. I encode on azure VPS with a 4 GB RAM and 4 Cores and has never thought it could had a problem like this. It encodes one stream perfectly.
Do you have any ideas how to make it faster ?
For,example I also don’t like that I have to encode the same videostream twice. I can’t afford two commands cause I have to see whole output of the command.