Recherche avancée

Médias (0)

Mot : - Tags -/configuration

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

Autres articles (45)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

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

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (7847)

  • can i use ffmpeg with actionscript to convert a webcam video flv into mp4 ? [on hold]

    25 mai 2016, par saurabh

    How can i use ffmpeg with actionscript to convert a webcam video flv into mp4 ?
    I am not using any media server.

    I am making webcam video using alchemy class, the output is a flv file, due to the "on disc size" of this flv I wish to export a MP4 from actionscript, someone suggested me that this can be achieved by using FFMPEG.

    Can anyone help me in doing so, some source code or tutorial links, anything that helps me create a bridge between flash and ffmpeg for converting video on the fly.

    Thanks in advance.

  • FFmpeg video encoding from iPhone to URL

    20 septembre 2016, par Nicolai Harbo

    I ran into a problem - I’m building an app, which I would like to be able to livestream. I have found a supplier, that I want to use - "all" he needs me to do, is to encode the video from the camera, to ffmpeg, and call his API. The thing is, I have no clue how to encode the video to ffmpeg. I have tried several google searches, and lots of different SDK’s for videostreaming, but it doesnt seem to help in my case.

    I know about Wowza and other livestream providers, but they cant deliver what I want, so I think this is my last option.
    So if any of you guys out there, can help me with encoding video from the camera into ffmpeg and send it to a API, please let me know how :-)
    It could be, that there’s a pod out there that i’ve overseen..

    Thanks in advance,
    /Nicolai

  • Android ffmpeg apply video effects take time

    7 mars 2019, par PrvN

    I am using below command to apply effect,its take 6-8 minutes to apply effect for 2min video.
    Please help me to improve effective time for ffmpeg commands.

    String commandStr = "ffmpeg -y -i "
               + mVideoData.getPath()
               + " -strict experimental -vf curves=vintage -s 640x480 -r 30 -aspect 4:3 -ab 48000 -ac 2 -ar 22050 -b 2097k -vcodec mpeg4 /sdcard/videokit/curve.mp4";

    Thanks in advance.