
Recherche avancée
Médias (91)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#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
Autres articles (87)
-
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 ;
-
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 ) (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (10660)
-
Recording Video and Voice at the same time to .mp4 on raspbarry pi
18 juin 2014, par SunBae YimI tried for 3 months, But can’t resolved it.
on Raspberry Pi.I want to recording video and voice to mp4, And Realtime streaming(Mjpeg) no delay.
Of course, It has Pi Camera Module.
And I installed a soundcard as below.pi@raspberrypi ~ $ aplay -l
**** List of PLAYBACK Hardware Devices ****
card 0: sndrpiproto [snd_rpi_proto], device 0: WM8731 HiFi wm8731-hifi-0 []
Subdevices: 1/1
Subdevice #0: subdevice #0First Goal is :
Recording voice(aac or mp3) and video(h264) at the same time to .mp4.
h264 and aac are combined into mp4 container.
I failed make it using ffmpeg. too difficult.Sencond Goal is :
Realtime Streaming for MJPEG.
I receive stream using Safari, Chrome, FireFox, Explorer on Windows & Android.
And using IP CAM VIEWER of Android App.I tried various solution,
But most solutions are only video no voice.Third Goal is :
Above Functions are run at the same time on Raspberry Pi.
Maybe I will make Python and Shell Scripts files for run above solution at the same time.Please Help me !
Thanks,
SB YIM -
Grep ffmpeg time/duration to get progress stream ?
2 février 2014, par paulkonIs there a way to grep ffmpeg's unfriendly output to get the progress (time/duration) into a variable ? I've tried this on powershell already but i can't get seem to get a hold of ffmpeg's continuous output via pipe redirection and using the
--line-buffered
flag in grep.Here is what I came up with but it only returns after the encoding process has finished.
ffmpeg -i $input $output 2>&1 | grep --line-buffered -oP "(?<=time=)[0-9:]*"
-
How to divide a time in half ?
30 août 2019, par Kelly FletI’m trying to find the midpoint of a video, in other words divide the total length by
2
.ffmpeg
gives time in formatHOURS:MM:SS.MICROSECONDS
, so ignoring microseconds, how could I get the half way point ? I’ve tried dividing each number (hours/minutes/seconds
) by2
but this fails in the case of0:01:00
, for example.