Recherche avancée

Médias (91)

Autres articles (9)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Other interesting software

    13 avril 2011, par

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

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

Sur d’autres sites (3974)

  • How to get CMSampleBufferRef from AudioQueueBufferRef

    26 novembre 2015, par arturdev

    I am using a private library which was made for live broadcasting from iPhone.
    In every time of recording each frame it call a delegate function

    void MyAQInputCallback(void *inUserData, 
                                  AudioQueueRef inQueue,
                                  AudioQueueBufferRef inBuffer,
                                  const AudioTimeStamp *inStartTime,
                                  UInt32 inNumPackets,
                                  const AudioStreamPacketDescription *inPacketDesc) ;

    Now how I can append this inBuffer to my AVAssetWriterInput as usual :

    [self.audioWriterInput appendSampleBuffer:sampleBuffer];

    I think maybe convert AudioQueueBufferRef to CMSampleBufferRef somehow ?

    Thank you.

  • FFmpeg - Transcode video and keep original EXIF metadata in the transcoded file ?

    10 mai 2015, par Paulo

    I am trying to transcode a video from a .mov (recorded with the iPhone) and add the original metadata to transcoded file, how can I achieve that ?

    Here is what I have tried but it does not add the metadata :

    ffmpeg -i input.mov -map 0 -vcodec libx264 -preset superfast -acodec libfaac output.mp4

    ffmpeg -i input.mov -map_metadata 0  -vcodec libx264 -preset superfast -acodec libfaac output.mp4

    I have also tried to transcode to webm but it also does not have the metadata, what am I doing wrong or how can I achieve that with ffmpeg ?

  • How to write out a MOV video into a raw, uncompressed format ?

    8 juin 2015, par feroze

    I have a video in a MOV file format, shot using an IPhone. I have to convert it into an uncompressed raw format, with multiple frames laid out one after the other. This has to be written to a file for post processing.

    Is there a stock format out there that I can convert this video to, using ffmpeg ? If not, I will have to write a C program to open the MOV file and write out the video. I have never worked in video land before, so I am confused about the options.

    I took a look at ffmpeg documentation, and did a web search, but all of them are talking about using ffmpeg as a command line tool, and not about how to write out a file format that I want.