Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (31)

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

  • Que fait exactement ce script ?

    18 janvier 2011, par

    Ce script est écrit en bash. Il est donc facilement utilisable sur n’importe quel serveur.
    Il n’est compatible qu’avec une liste de distributions précises (voir Liste des distributions compatibles).
    Installation de dépendances de MediaSPIP
    Son rôle principal est d’installer l’ensemble des dépendances logicielles nécessaires coté serveur à savoir :
    Les outils de base pour pouvoir installer le reste des dépendances Les outils de développements : build-essential (via APT depuis les dépôts officiels) ; (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (6756)

  • Video processing with ffmpeg on Windows Azure

    29 août 2014, par alekz

    I am working on the project that needs to process videos that are already stored at the AzureBlob storage.

    The processing itself lookes following

    1. Grab frame with ffMpegFrameGrabber
    2. Draw some elements on top of the frame
    3. save it with the ffMpegFrameRecorder

    basicaly I have working version of this algorithm in Java (using java wrapper over native ffmpeg)

    Now I need to implement that processing with Azure Cloud Services.

    My question is
    What is a good ffmpeg wrapper for .net (console interface is not enough for my scenario) ?
    How to use it in Azure Cloud Service (sorry for noob question, but I am new to Azure) ?

  • Can I use ffmpeg to output jpegs to a memory stream instead of a file

    1er février 2015, par Andrew Simpson

    I have a c# app. I have 100 jpegs (for an example).

    I can easily encode this into a video file.

    When it has finished encoding on the client app I FTP upload to my server.

    It would be ’neater’ if I could not write the video file to a disc but instead write it to a memory stream (or array of bytes) and upload via web service perhaps ?

    I have checked out the ffmpeg documentation but as a c# developer I do not find it natural to understand the c examples.

    I guess my 1st question is it possible and if so can anyone post me an example code in c# ? At the moment I am using the process class in c# to execute ffmpeg.

    I will of course post this code if it would help ?

    Thanks for everyone’s time.

  • ffmpeg convert video file with 8 audio channels to multichannel wav

    6 avril 2017, par imgoingtoshabooms

    on run input, parameters
    tell application "Terminal"
    activate
    set filesString to ""
    repeat with file_ in input
    set filesString to filesString & " " & quoted form of (POSIX path >of file_)
    end repeat
    do script "for f in" & filesString & " ; do
     /Documents/ffmpeg/ffmpeg -i \"$f\" -acodec pcm_s16le \"$f%.*.wav\"
    done"
    end tell
    return input
    end run

    I wrote an applescript to add a right-click service in OS X, but this only takes the first channel and creates a mono wav file. How can i create a multichannel wav to accommodate 8 mono tracks ?