Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (65)

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

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (5055)

  • FFMpeg on Android : Streaming HTTP audio stream

    21 février 2012, par ebarch

    I'm having an issue being able to open streams with FFMpeg on Android. I downloaded the FFMpeg code from http://bambuser.com/opensource and compiled it without any issues. I tried adding —enable-protocol=http to the build options and then wrote some test JNI to setup the stream.

    When calling av_open_input_file with the URL to a valid HTTP MP3 stream, I'm always receiving -2 (No such file or directory) back as the error code. I've seen other projects that use this method to open streams, so I'm thinking it has to do with my FFMpeg build.

    Any help would be greatly appreciated !

  • configure : Check for msghdr struct.

    9 mars 2016, par Carl Eugen Hoyos
    configure : Check for msghdr struct.
    

    Some (Solaris) systems apparently have an incompatible msghdr struct
    breaking sctp protocol compilation.

    Reported-by : mvelanka

    • [DH] configure
  • Unity FFmpeg plugin gives "incomplete return type timespec" on xcode build

    22 septembre 2023, par Burak I.

    I am using this plugin in one of my unity project. Android build is working without an error but when I try build it on Ios, it gives errors :

    


    Xcode build errors

    


    I couldn't find much information about this issue. I think the problem is caused by FFmpeg library on ios.

    


    How can I fix these errors ?

    


    I tried to delete libavutil library since I am not using it (I think). But resulted in much more errors in other packages.

    


    I found a suggestion to recompile the ffmpeg library but I don't know how to compile it for Unity.

    


    Edit : I found the solution. I know it is caused by libavutil library but I shouldn't delete libavutil from lib folder. I deleted libavutil folder from include. So if anybody encounter with this problem only delete "Assets\FFmpegUnityBind2\Plugins\IOS\include\libavutil" folder. DO NOT DELETE libavutil.a from "IOS\lib\libavutil". I only used FFmpeg for turning jpg sequence to mp4 so be aware if you are doing another process that uses libavutil library.