Recherche avancée

Médias (0)

Mot : - Tags -/interaction

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (49)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • 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

Sur d’autres sites (7848)

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