Recherche avancée

Médias (0)

Mot : - Tags -/albums

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

Autres articles (59)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

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

  • Convert webm to mp4 on with spawn ffmpeg on firebase cloud function returning failed with code 1

    11 novembre 2022, par findev

    In a google cloud function, i'm trying to convert a donwloaded .webm file from cloud storage to .mp4 format with this code

    


    var mp4FilePath = path.join(os.tmpdir(), mediaId+'.mp4')
await spawn('ffmpeg', [
    '-i',
    downloadedFilePath,
    '-c copy',
    mp4FilePath,
]); 


    


    I keep receiving the following error

    


    Error: `ffmpeg -i /var/folders/h2/p35j0p3s4zq9ktyqhdx3qb9h0000gn/T/ghE1HQP1x9m2XLaxEx43_raw.webm -c copy /var/folders/h2/p35j0p3s4zq9ktyqhdx3qb9h0000gn/T/test.mp4` failed with code 1


    


    I'm able to create thumbnails so the source file is downloaded correctly.

    


  • aac : Rework extradata parsing code

    12 avril 2018, par Vittorio Giovara
    aac : Rework extradata parsing code
    

    - enable the parsing code
    - use the new buffer instead of replacing the context one
    - do not push/pop configuration, just discard the exiting one
    - propagate errors correctly

    • [DH] libavcodec/aacdec_template.c
  • libavformat/mux : Fix mixed delarations and code

    27 juin 2019, par Andreas Rheinhardt
    libavformat/mux : Fix mixed delarations and code
    

    This commit fixes mixed declarations and code introduced in 1889e316.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/mux.c