Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (58)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-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, par

    Ce 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, par

    Talk 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
    avdevice/x11grab : allocate just one Cursor
    

    Fixes resource leak and Ticket2450

    Reviewed-by : Carl Eugen Hoyos <cehoyos@ag.or.at>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavdevice/x11grab.c
  • ffmpeg : recording audio+video together results in frame dropping (Windows 7) [closed]

    20 juin 2013, par John Smith

    this 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 King

    I 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) returns 1 that's all
    running commands like dir works fine, so I have the required access.

    &lt;?php
    $title = $_GET[&#39;file&#39;];
    // encoding command > , below shows info "flv/&#39;.$title.&#39;.flv" "mp4/&#39;.$title.&#39;.mp4"
    $cmd = (&#39;cd C:/inetpub/wwwroot/run/ &amp;&amp; ffmpeg.exe -i "flv/&#39;.$title.&#39;.flv"&#39;);
    $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 = (&#39;cd C:/inetpub/wwwroot/run/ &amp;&amp; ffmpeg.exe -h&#39;); works fine, its actually already in that directory)