
Recherche avancée
Médias (91)
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Echoplex
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Discipline
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Letting You
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (65)
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
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 (...)
Sur d’autres sites (10634)
-
How many "Ruby on Rails" sites can be hosted using sub url in apache configuration file on apache4 with passenger4 on Ubuntu server ?
17 octobre 2013, par user1731249Server's Hardware config :
Ubuntu server 12.04, CPU : dual code (64-bit), RAM : 8GB, Disk : 200GB.Server's Software config :
Apache2, Passenger4, Rails4, ruby2, MySQL.I'm developing a Ruby on Rails website which performs following tasks.
- Upload a series of images as zip.
- Extract zip images to temp directory.
- Convert series of images to video using FFMPEG.
- updating video info in MySQL db
- Viewing the video in HTML5 video tag.
Maximum length of single video being 1min and on an average there may be 50 videos to be converted per day. I created three copies (Don't ask me why !) of same website and hosting three sites as sub-URLs like "example.com" being the domain and example.com/site1, example.com/site2, example.com/site3. Below is the Apache configuration :
RailsAutoDetect offServerName 127.0.0.1
DocumentRoot /home/ubuntuuser/work/public
ErrorDocument 404 /404.html
RailsBaseURI /site1
<directory></directory>home/ubuntuuser/work/site1/advisor/public>
Allow from all
Options -MultiViews
RailsEnv production
RailsBaseURI /site2
<directory></directory>home/ubuntuuser/work/site2/advisor/public>
Allow from all
Options -MultiViews
RailsEnv production
RailsBaseURI /site3
<directory></directory>home/ubuntuuser/work/site3/advisor/public>
Allow from all
Options -MultiViews
RailsEnv production
How many such sites can I host with sub-URLs without big performance drag ?
Also please help to do a performance test for all the sub-URLs. -
battery performance of vlc player on android
7 juillet 2013, par rajneeshi want to support custom video file-format to be played on android.
for the purpose i want to modify the vlc player for android, but i am concerned that vlc might be doing "software video decoding" and which might have impact on battery life.I want to understand the following
- Is there any battery life comparison between software and hardware decoding of video codecs.
- does vlc on android make use of hardware decoder.if available on phone ?
- does file format have any impact on the selection of hardware or software decoder
-
brodcast png & video ffmpeg with raspberry
6 mars 2021, par FoxFrSomeone can help me to add a image during 10s beetwen the videos ?
or explain me how do that


ffmpeg \
-i /dev/video0 \
-i /dev/video2 \
-i /home/pi/videopi/map.png \
-stream_loop -1 -re -i "/home/pi/videopi/bed.mp3" \
-filter_complex "[0][1]overlay=enable='lt(mod(t,60),30)'[v];[v]drawtext=textfile=/home/pi/videopi/gps.txt:reload=1:x=30:y=100:fontfile=OpenSans.ttf:font$
-map "[v]" \
-map 2:a \
-c:v libx264 -b:v 4000k -maxrate 4000k -bufsize 8000k -g 50 -c:a aac \
-f flv rtmp://a.rtmp.youtube.com/live2/XXXXXXXXXX



Below the sequence wished


|-> video0 - duration 30" --> map.png - duration 10" --> video2 - duration 30" --|
| | 
|--------------------------------------- loop -----------------------------------|



I'd try to put


-f image2 -loop 1 -i "/home/pi/videopi/acmo/map.png" \



instead of


-i /dev/video0 \



without success