Recherche avancée

Médias (0)

Mot : - Tags -/masques

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

Autres articles (59)

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

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (3168)

  • lavfi/scale_qsv : change alignment to be 16 bytes

    30 juillet 2019, par Zhong Li
    lavfi/scale_qsv : change alignment to be 16 bytes
    

    32 bytes alignment is not needed and increases the failure possibilty of
    SFC (low power scaling mode)

    Signed-off-by : Zhong Li <zhong.li@intel.com>

    • [DH] libavfilter/vf_scale_qsv.c
  • Should a long Running video processing task to be done client side or server side

    27 avril 2021, par Ritwiz Sinha

    I was creating an application in react for uploading video and using a REST API to send that to the server and store in S3. I also wanted the simple audio version of the video for some other tasks and I am confused as to what might be the better way :

    &#xA;

      &#xA;
    1. Creating audio file on the fly when it is needed using node-ffmpeg package and not store it anywhere
    2. &#xA;

    3. Start converting the video file to audio on the browser client only, and posting that to the server for storage along with the video.
    4. &#xA;

    5. Just post the video to the server and use queue system for creating a new task for video conversion to audio and then save that to the S3 storage.&#xA;The second method seems to be saving some compute power on the server but it might be a problem if the video upload completes, audio conversion is still going on and the client disconnects.&#xA;Would appreciate some help, thanks.
    6. &#xA;

    &#xA;

  • Change bitrate of USB camera

    12 décembre 2018, par Nick Saw

    I use ELP USB camera with h264-codec output.

    Ffmpeg-command to take the video stream :

    ffmpeg -i /dev/video1 -c:v copy output.ts

    As result I have a video with 4Mb bitrate - this value is too high for my task.

    There is the same situation when I use GSTreamer :

    gst-launch-1.0 v4l2src device=/dev/video1 ! video/x-h264,width=1280,height=720,framerate=30/1 ! mpegtsmux ! filesink location=output.ts

    I know that it’s possible to change the bitrate if we decode h264 the stream firstly and then encode it to h264 again. This operation requires too much CPU-power of my NanoPI device.

    The main question is :
    Is it possible to change a USB-camera’s bitrate without decoding ?

    Thanks in advance !