Recherche avancée

Médias (0)

Mot : - Tags -/upload

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

Autres articles (57)

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

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

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

Sur d’autres sites (4131)

  • Mac App (Cocoa) for producing HTTP Live Streaming

    11 mars 2013, par Michael

    I am building a Mac OS X application (Cocoa) with XCode that captures a video source and outputs the video through HTTP Live Streaming (HLS). After doing a fair amount of research I am thinking that I should be able to use the following stack of elements in my app to make this happen...

    • AVCaptureDevice
    • AVCaptureSession
    • AVCaptureVideoDataOutput
    • FFMPEG
    • mediastreamsegmenter
    • CocoaHTTPServer

    I would really appreciate some feedback as to whether I'm on the right track, or correction if I am mistaken. Obviously any advice, pointers, perhaps some sample code snippets would be so very helpful.

    Many thanks in advance !

  • aacenc_tns : rework TNS descision logic

    17 octobre 2015, par Rostislav Pehlivanov
    aacenc_tns : rework TNS descision logic
    

    Changes :
    - strongly prefer dual filters to a single filter
    - less strict about using 2 filters w.r.t. energy
    - scrap the usage of threshold and spread, useless
    - use odd-shaped windows to set the filter direction
    - use 4 bits instead of 3 bits for short windows
    - simplify and reduce the main loop to a single level
    - add stricter regulations for short windows

    All of this now makes the TNS implementation operate
    as good as it can and it definitely shows. The frequency
    thresholds are now even better defined by looking at
    the spectrals and the overall sound has been improved at
    the price of just a few bits that are well worth it.

    • [DH] libavcodec/aacenc_tns.c
    • [DH] libavcodec/aacenc_tns.h
  • FFmpeg get a crop without tying it to a specific time period

    30 avril 2021, par Дмитрий Варзанов
    crop = sub.check_output("ffmpeg -i "+file+" -ss 5 -t 30  -vf cropdetect -f null - 2>&1 | awk '/crop/ { print  $NF }' | tail -1", shell=True).decode().strip()


    


    In order not to bind to a time interval, it is possible to analyze the frames for the entire time period of the video file.

    


    It would be a solution if this process was performed quickly, instantly. But unfortunately, it can take hours, depending on the duration of the video

    


    Execute the command to get the duration of the video, and then calculate and set the time to get the crop. We'll have to build forests...

    


    I am looking for a solution in which there will be no need to set the time and at the same time the task will take the least amount of time.

    


    Perhaps someone has a solution ?