Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (78)

  • Diogene : création de masques spécifiques de formulaires d’édition de contenus

    26 octobre 2010, par

    Diogene est un des plugins ? SPIP activé par défaut (extension) lors de l’initialisation de MediaSPIP.
    A quoi sert ce plugin
    Création de masques de formulaires
    Le plugin Diogène permet de créer des masques de formulaires spécifiques par secteur sur les trois objets spécifiques SPIP que sont : les articles ; les rubriques ; les sites
    Il permet ainsi de définir en fonction d’un secteur particulier, un masque de formulaire par objet, ajoutant ou enlevant ainsi des champs afin de rendre le formulaire (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Utilisation et configuration du script

    19 janvier 2011, par

    Informations spécifiques à la distribution Debian
    Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
    Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
    Récupération du script
    Le script d’installation peut être récupéré de deux manières différentes.
    Via svn en utilisant la commande pour récupérer le code source à jour :
    svn co (...)

Sur d’autres sites (8285)

  • 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.

  • Setting up rtsp stream on Windows

    12 novembre 2015, par Chris

    I am trying to set up an rtsp stream that can be accessed from an application. I have been experimenting with ffmpeg to realize that. I have succeded as far as I was able to stream from ffmpeg to ffplay but I could not load the stream in vlc for example. Here are the calls that I did from two different shells on the same machine :

    ffmpeg.exe -y -loop 1 -r 24 -i test_1.jpg -vcodec libx264 -tune stillimage -f rtsp rtsp://127.0.0.1:1234/stream.sdp

    ffplay.exe -rtsp_flags listen rtsp://127.0.0.1:1234/stream.sdp

    Can anybody explain to me what I would have to do to load the stream as a network stream using vlc ? Any help is appreciated.

  • Compiling ffmpeg for android on windows OS

    22 octobre 2015, par Srini5

    After searching a lot on web I didn’t got any proper tutorial which can explain step by step approach of compiling ffmpeg for android on a windows OS. Lots of people suggested to drop windows and compile it on a Ubuntu machine. And I got many tutorial on how to compile on a Linux based machine using android NDK. Is there any tutorial or blog post which can explain how to do it on a windows machine. Or anybody know how to do the same in a windows machine.