Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (18)

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

Sur d’autres sites (3283)

  • Building FFMPEG 3.0 on windows

    12 avril 2016, par KevinA

    I’m trying to build FFMpeg 3.0.1 on windows. I’ve successfully build FFMpeg before.

    It successfully configures, and when I type Make i get

    Make: *** No rule to make target `libavdevice/avdevice.dll', needed by `all-yes`. Stop

    I’m building with the following config

    ./configure --prefix=c:\ffmpeg --toolchain=msvc --enable-w32threads =-=extra=ldflags=/MACHINE:X86 --anble-asm --enable-yasm --enable-shared --disable-static

    I’ve tried with both VS2013 and VS2015. Same result.

  • Opencv(2.4.9) to capture video,but the program is slower when I put it on the centos(ffmpeg 1.1.3) than on the windows,what's wrong ?

    7 avril 2016, par Aaron

    Opencv(2.4.9) to capture video,but the program is slower when I put it on the centos(ffmpeg 1.1.3) than on the windows,what’s wrong ?

    Screenshot of the code

  • How to start ffprobe with Windows PowerShell

    7 mars 2014, par sebastian

    I am using Zeranoes FFmpeg Builds for Windows and I can start the ff-prompt without installing anything. But how do I start ff-prompt.bat with Windows PowerShell ? I have tried a few things like Invoke-Expression or changing the $env:Path but nothing seems to work, because all I get is the message

    "C :\Users\Administrator>ECHO OFF

    bin\ffmpeg.exe could not be found."

    Is it even possible to start ff-prompt with PowerShell ? Every suggestion / solution is more than welcome.

    My goal is to have a solution that works like this here :
    http://spreadys.wordpress.com/2012/12/03/ffprobe-and-windows-powershell/

    but I want to do that automatically for all my clips, thats why I need to start ffprobe with powershell.


    ECHO OFF
    REM FF Prompt 1.1
    REM Open a command prompt to run ffmpeg/ffplay/ffprobe
    REM Copyright (C) 2013  Kyle Schwarz

    TITLE FF Prompt

    IF NOT EXIST bin\ffmpeg.exe (
     CLS
     ECHO bin\ffmpeg.exe could not be found.
     GOTO:error
    )

    CD bin || GOTO:error
    PROMPT $G
    CLS
    ffmpeg -version
    SET PATH=%CD%;%PATH%
    ECHO.
    ECHO For help run: ffmpeg -h
    ECHO For formats run: ffmpeg -formats ^| more
    ECHO For codecs run: ffmpeg -codecs ^| more
    ECHO.
    ECHO Current directory is now: "%CD%"
    ECHO The bin directory has been added to PATH
    ECHO.

    CMD /F:ON /Q /K
    GOTO:EOF

    :error
     ECHO.
     ECHO Press any key to exit.
     PAUSE >nul
     GOTO:EOF

    Okay I tried something a little bit different this time :

    $env:Path = ';C:\Users\Administrator\bin\'
    $title = "A_Day_for_Cake_and_Accidents"
    Start-Process ff-prompt.bat -ArgumentList "ffprobe -show_streams -select_streams v -print_format xml -count_frames C:\Users\Administrator\Desktop\dcp_bearbeitet\$title\$title.mov > C:\Users\Administrator\Desktop\dcp_bearbeitet\$title\totalframes.xml"

    This creates a file called "totalframes.xml" but without the needed information, the only thing I get is :

    C :\Users\Administrator>ECHO OFF
    ffmpeg version N-60959-g669043d
    built on Feb 27 2014 22:01:58 with gcc 4.8.2 (GCC)
    configuration : —enable-gpl —enable-version3 —disable-w32threads —enable-avisynth —enable-bzlib —enable-fontconfig —enable-frei0r —enable-gnutls —enable-iconv —enable-libass —enable-libbluray —enable-libcaca —enable-libfreetype —enable-libgsm —enable-libilbc —enable-libmodplug —enable-libmp3lame —enable-libopencore-amrnb —enable-libopencore-amrwb —enable-libopenjpeg —enable-libopus —enable-librtmp —enable-libschroedinger —enable-libsoxr —enable-libspeex —enable-libtheora —enable-libtwolame —enable-libvidstab —enable-libvo-aacenc —enable-libvo-amrwbenc —enable-libvorbis —enable-libvpx —enable-libwavpack —enable-libx264 —enable-libx265 —enable-libxavs —enable-libxvid —enable-zlib
    libavutil 52. 66.100 / 52. 66.100
    libavcodec 55. 52.102 / 55. 52.102
    libavformat 55. 33.100 / 55. 33.100
    libavdevice 55. 10.100 / 55. 10.100
    libavfilter 4. 2.100 / 4. 2.100
    libswscale 2. 5.101 / 2. 5.101
    libswresample 0. 18.100 / 0. 18.100
    libpostproc 52. 3.100 / 52. 3.100
    For help run : ffmpeg -h
    For formats run : ffmpeg -formats | more
    For codecs run : ffmpeg -codecs | more
    Current directory is now : "C :\Users\Administrator\bin"
    The bin directory has been added to PATH

    So basically the console pops up, writes this standard text and does not use my commands which I stated in -Argument-List . I do not have a clue why it is ignoring most of my commands, except for writing everything in a XML file.