
Recherche avancée
Médias (29)
-
#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 (58)
-
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 -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ; -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users.
Sur d’autres sites (9467)
-
avdevice/x11grab : allocate just one Cursor
20 juin 2013, par Michael Niedermayer -
ffmpeg : recording audio+video together results in frame dropping (Windows 7) [closed]
20 juin 2013, par John Smiththis is the entire command :
ffmpeg -f dshow -i audio="virtual-audio-capturer":video="screen-capture-recorder" -vcodec libx264 -r 25 -crf 1 -ac 1 -acodec aac -strict -2 -ar 44100 -q 1 -y -f flv output.flv
this produces kinda small and good file, still there are many "dshow @ 000000000031a0a0] real-time buffer 207% full ! frame dropped !". The video quality is very good, no lags at all, but audio do lags.
The strangest thing is, when I record only video, or only audio (so not both at the same time) it does produces lagless result.
Im kinda beginner in these things. -
PHP - Problems running ffmpeg.exe with shell_exec on Windows
30 septembre 2012, par KingI am trying to encode an FLV file to MP4 with ffmpeg.exe, its all working fine when running the code on the commandprompt (I have tried simply echoing the command and pasting it into the cmdline)
Note : Using windows.
Here is the code :
it does not return anything, and does not encode anything, there are no errors, nothing happens :(,system($cmd, $returnval)
returns1
that's all
running commands likedir
works fine, so I have the required access.<?php
$title = $_GET['file'];
// encoding command > , below shows info "flv/'.$title.'.flv" "mp4/'.$title.'.mp4"
$cmd = ('cd C:/inetpub/wwwroot/run/ && ffmpeg.exe -i "flv/'.$title.'.flv"');
$ll = system($cmd, $fv);
echo "CMD: $cmd \nFull output: $fv \nLL = $ll";
?>ffmpeg.exe -h will return the help text, I am starting to wonder if it could have something to do with the other outputs having colours in them ?
Any ideas ? :O
(The cd is not the problem because
$cmd = ('cd C:/inetpub/wwwroot/run/ && ffmpeg.exe -h');
works fine, its actually already in that directory)