Advanced search

Medias (91)

Other articles (29)

  • Websites made ​​with MediaSPIP

    2 May 2011, by

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 April 2011, by

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things): implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Other interesting software

    13 April 2011, by

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website: http://videopress.com/
    License: GNU/GPL v2
    Source code: (...)

On other websites (5736)

  • How to call ffmpeg main method from Xcode 7.2?

    15 March 2016, by user5761723

    I’m new to iOS app Development. I compiled the ffmpeg-3.0 libraries for iOS. and integrate them into Xcode. but when i try to call main method of ffmpeg.c, it won’t work.

    Can someone tell me the procedure, how to move ahead from here?. i actually want to convert audio formats.

  • avformat/mux: Call check_packet() more directly

    16 May 2020, by Andreas Rheinhardt
    avformat/mux: Call check_packet() more directly
    

    Call it directly from write_packets_common() instead of indirectly
    through prepare_input_packet().

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

    • [DH] libavformat/mux.c
  • How to call C function from Objective-C

    9 May 2017, by martisan

    I’m currently trying to convert videos on iOS using FFmpeg.
    I’ve modified their example in transcoding.c according to my needs.

    How do I actually call the following function from Objective-C:

    int mainFunction(int argc, char **argv);

    I’m not sure on how to provide the arguments from Objective-C.
    Any help would greatly be appreciated.