
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (105)
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
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 (11979)
-
Record only audio using ffmpeg commands in OSX Terminal
27 septembre 2017, par SwatiI have tried multiple commands, the file is created but no audio.
ffmpeg -f avfoundation -framerate 30 -i "Built In Input" -acodec aac -ab 64000 -ar 48000 -ac 2 -f flv test.wav
ffmpeg -f avfoundation -i ":Built In Input" -acodec libmp3lame -ab 32k -ac 1 -f flv test.wav
ffmpeg -f avfoundation -i ":1" -r 25 -c:v libx264 -preset fast -crf 22 -c:a libfdk_aac -b:a 128k -ar 44100 -s 640x480 test.mp4
ffmpeg -f avfoundation -i ":1" -acodec libmp3lame -ab 32k -ac 1 -f mp3 swati.mp3
ffmpeg -f avfoundation -framerate 30 -i ":1" -ab 128000 -ac 2 -f flv /Users/admin/Documents/swati.flvResult in terminal :
video:0kB audio:686kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead : 0.810823%Above line indicates audio exists but i cant hear anything
any suggestions what should I do ? -
Golang command working in terminal but not with exec package
17 août 2016, par Jon StevensI am converting a video generation library from NodeJS to GO that primarily uses FFMPEG for all the video processing. I already have all the FFMPEG commands written out to do the generation I want. The issue is that when I try to run the command through the os/exec package, it fails. However, if I copy the exact command and run it directly in the terminal it works and I cannot figure out why that is. My code that runs the command is below :
command := "ffmpeg -y -loop 1 -i image.png -vf 'fade=in:0:15,fade=out:105:15' -c:v mpeg2video -t 5 -s 1280x720 -r 30 -q:v 1 -preset ultrafast image.mpg"
parts := strings.Fields(command)
cmd := exec.Command(parts[0], parts[1:]...)
cmd.Stderr = os.Stderr
cmd.Stdout = os.Stdout
err := cmd.Run()
if err != nil {
panic(err)
}The ffmpeg error I get when I try to run this code is :
[AVFilterGraph @ 0x22a9bc0] No such filter : ’fade=in:0:15,fade=out:105:15’
Error opening filters !
2016/08/17 17:48:53 exit status 1
Like I previously stated, if I copy the EXACT command :
ffmpeg -y -loop 1 -i image.png -vf 'fade=in:0:15,fade=out:105:15' -c:v mpeg2video -t 5 -s 1280x720 -r 30 -q:v 1 -preset ultrafast image.mpg
and run it directly in the terminal, it works no problem.
PLEASE HELP.
-
Revision aa70712e4e : vpxenc : fix per-frame psnr/size output on a terminal was previously being wiped
9 juillet 2014, par James ZernChanged Paths :
Modify /vpxenc.c
vpxenc : fix per-frame psnr/size output on a terminalwas previously being wiped out by the ctrl-K escape
Change-Id : I87d0de255a174f19e8912a65e519dad99d54a530