Recherche avancée

Médias (3)

Mot : - Tags -/pdf

Autres articles (69)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP 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" (...)

Sur d’autres sites (8512)

  • FFMPEG copying Windows Media Audio 9.2

    19 avril 2016, par David GC

    I want to top and tail a wma file with a codec Windows Media Audio 9.2. I know Windows Media Audio 9 Professional encoding is not supported. But I just need to top and tail this audio file.

    I only get an audio file output with codec Windows Media Audio 8.

    ffmpeg -i .\1_encoding.wmv -acodec copy -preset ultrafast .\prueba1.wma

    Is it possible to get an output with Windows Media Audio 9.2 ?

  • VLC commandline video croping in windows

    22 avril 2016, par Hasan

    I am trying to crop a video using VLC command line coding. I used the following code in windows cmd :
    vlc C:\Users\Masud\above_marathon_250.mp4 --crop=480x500+290+720 C:\Users\Masud\out.mp4
    But i got the following error :

    File reading failed:
    VLC could not open the file "C:\Users\Masud\out.mp4" (Bad file descriptor).
    Your input can't be opened:
    VLC is unable to open the MRL 'file:///C:/Users/Masud/out.mp4'. Check the log for details.

    Can anyone help me to write the accurate command for cropping video ?

  • Can't run exec('ffmpeg') ; ffmpeg, wamp & windows 2008 server

    15 mars 2015, par Nicholas Walker

    i’ve installed FFMPEG on my windows server. If i go to cmd and type ffmpeg -version i get the version, available commands etc. I use WAMP server with php 5.4.12

    The reason i am not using ffmpeg-php is because i have installed it with no errors and i cant use the extension for php even tho it says it is installed.

    When i try to do

    <?php
    echo exec('ffmpeg -version');
    ?>

    its totally blank, no errors or nothing.

    If i run

    <?php
    echo exec('whoami');
    ?>

    i get : nt authority\system

    So i can run exec in my php.

    I’ve also tried the same with shell_exec() ; ffmpeg not working with either of them.

    After looking at other stackoverflow questions i’ve seen people fixing this problem by allowing IIS user to use ffmpeg.exe. But i am using Wamp so i don’t know what to do.

    Any ideas ?