Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (74)

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

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    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 (4520)

  • How to batch process entire folder with ffmpeg ? a batch script that will scan currently run folder

    8 mars 2018, par MonsterMMORPG

    I have this code but it is not working

    I want batch script to scan currently run directory and batch process the MP4 files in that directory

    But first i want it to create a new directory called as newfiles and put the processed files in that folder with the same name

    Please help me to fix this batch script ty

    md "%~dp0\newfiles"
    for %%a in (%~dp0\"*.mp4") do ffmpeg -i "%%a" -c:v libx264 -preset veryslow -crf 18 -c:a aac -b:a 192k -pix_fmt yuv420p "newfiles\%~dp0%%a.mp4"
    pause

    The code is not creating a new directory not batch process the mp4 files in that directory (the directory that is batch script executed)

    ok i have solved the question as below

    md "%~dp0\newfiles"
    for %%a in (%~dp0\"*.mp4") do ffmpeg -i "%%a" -c:v libx264 -preset veryslow -crf 18 -c:a aac -b:a 192k -pix_fmt yuv420p "newfiles\%%~na.mp4"
    pause
  • cbs_h264 : Add support for pan-scan rectangle SEI messages

    8 mai 2018, par Mark Thompson
    cbs_h264 : Add support for pan-scan rectangle SEI messages
    
    • [DH] libavcodec/cbs_h264.h
    • [DH] libavcodec/cbs_h2645.c
    • [DH] libavcodec/cbs_h264_syntax_template.c
    • [DH] libavcodec/h264_sei.h
  • How to add html elements to a video online

    27 septembre 2018, par Gabriele

    I need to be able to edit a video with online technologies (Javascript or with some Backend code) and overlay on the original video whatever html elements (maybe even animated elements with css) and download the new video edited.

    What is the best way to do it ?

    I’ve read about CCapture.js that captures videos from a canvas, but I can’t get it to work and I’m not sure it’s what I’m looking for. I’ve read about some FFMPEG plugins to make it work on the server and use it with some backend languages but I don’t know if it would get the work done as I need it.

    For clarity, you know how Instagram can edit your video after you take it adding text or images ? I need to be able to edit a video like that, adding html elements on it.

    Thanks in advance for helping.