Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (66)

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

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (8501)

  • avfoundation : Fix compilation for OSes other than macOS and iOS

    25 mars, par Martin Storsjö
    avfoundation : Fix compilation for OSes other than macOS and iOS
    

    E.g. tvOS doesn't have devicesWithMediaType.

    In principle, we could probably disable building the whole
    input device on such OSes, but that would either require
    testing explicitly for the OS type in configure (which we don't
    do anywhere so far), or test for individual objective C methods.

    This approach allows the code to compile, but no input devices
    will be found at runtime.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavdevice/avfoundation.m
  • Real time compression/encoding using ffmpeg in objective c

    20 février 2014, par halfwaythru

    I have a small application written in Objective-c that looks for the video devices on the machine and allows the user to record video. I need to be able to compress this video stream in real time. I do not want to save the whole video, I want to compress it as much as possible and only write out the compressed version.

    I also don't want to use the AVFoundation's build in compression methods and need to use a third party library like ffmpeg.

    So far, I have been able to record the video and get individual frames using 'AVCaptureVideoDataOutputSampleBufferDelegate' in this method :

    - (void)captureOutput:(AVCaptureOutput *)captureOutput
      didOutputSampleBuffer:(CMSampleBufferRef)sampleBuffer
      fromConnection:(AVCaptureConnection *)connection

    So I have a stream of images basically, and I want to throw them into ffmpeg (which is all set up on my machine). Do I need to call a terminal command to do this ? And if I do, how do I use the image stack as my input to the ffmpeg command, instead of the video. Also, how do I combine all the little videos in the end ?

    Any help is appreciated. Thanks !

  • FFmpeg : Pipe segments to s3

    24 septembre 2024, par Brendan Kennedy

    I'd like to pipe ffmpeg segments to s3 without writing them to disk.

    &#xA;

    ffmpeg -i t2.mp4 -map 0 -c copy -f segment -segment_time 20 output_%04d.mkv&#xA;

    &#xA;

    Is it possible to modify this command so that ffmpeg writes segments to an s3 bucket ? Something like this perhaps ?

    &#xA;

    ffmpeg -i t2.mp4 -map 0 -c copy -f segment -segment_time 20 pipe:1 \&#xA;  | aws s3 cp - s3://bucket/output_%04d.mkv&#xA;

    &#xA;

    When I run the command above I receive this error

    &#xA;

    Could not write header for output file #0&#xA;(incorrect codec parameters ?): Muxer not found&#xA;

    &#xA;

    This command works except the entire video is uploaded and not the individual segments

    &#xA;

    ffmpeg -i t2.mp4 -map 0 -c copy -f segment -segment_time 20 pipe:output_%04d.mkv \&#xA;| aws s3 cp - s3://bucket/test.mkv&#xA;

    &#xA;