Recherche avancée

Médias (0)

Mot : - Tags -/tags

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

Autres articles (45)

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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

Sur d’autres sites (4389)

  • laptop screen recorder built using python & ffmpeg can generate only video file in AVI format succesfully,generating corrupted MP4 file as output ? [closed]

    19 mars, par Rupashree Roy

    I have build laptop screen recorder with internal and external audio using python and ffmpeg,but it couldn't store output file in Other video formats,excepts AVI,if I try to store it in MP4 format,ut's showing file is corrupted,what to do/

    


    Here's the code, enter link description here

    


  • Encode Android's frame's .raw file to .png file format using ffmpeg

    12 avril 2017, par Glex

    I used the script from source. What it does is that it reads the frame-buffer information from the mobile (android) phone and save it as a .raw file. It then uses ffmpeg encoder to create .png file. Unfortunately the png image that I am getting is like (attached below). I tried to play with the "-pix_fmt" option used and tried using rgba instead of rgb32 used in that code (none of them work btw). I used another script (ascreenshooter.py) to analyse the header for this raw image to find few image headers. they are listed as :

    version : 1
    bpp : 32
    size : 2088960
    width : 544
    height : 960
    red_offset : 0
    red_length : 8
    blue_offset : 16
    blue_length : 8
    green_offset : 8
    green_length : 8
    alpha_offset : 0
    alpha_length : 8

    Please suggest if it is possible to encode this .raw image file to png format. If it is possible than what ffmpeg options I should use and if some other more efficient tool does exit for this encoding process.

    Sample raw image as requested :

    http://tabak.csc.ncsu.edu/arpit.raw

    enter image description here

  • Need to convert file format then merge audio files in ffmpeg using bat file

    14 août 2018, par Matthew

    I have been searching quite a bit and cannot find the pieces to make this work. I am looking to convert .g729 audio files to .wav then merge 2 files, and IN and an OUT, into 1 file. I have this much working already.

    @echo off
    for %%A IN (*.g729) DO ffmpeg -i "%%A" "%%A.wav" done

    I have not been able to get the merge to work, I have the basic ffmpeg command to accomplish what I need but it isn’t part of the loop.

    ffmpeg -i <filename>-in.wav -i <filename>-out.wav -filter_complex amerge -ac 2 -c:a libmp3lame -q:a 4 output.wav
    </filename></filename>

    Any input to get both into one batch would be very helpful.