Recherche avancée

Médias (91)

Autres articles (54)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (6473)

  • Which video processing technology is used by TikTok [closed]

    14 juin 2020, par NizNsm

    I am on developing one video editing application for Android. I am well aware of FFMPEG and already implemented for trimming, merging and some text/image overlay effects. It takes a lot time for processing/encoding. I am a big fan of TikTok video editor. I want to implement something very similar to TikTok(Face detection, Magic effects,..etc), So kingly help me to figure out this.

    


  • hevc : Improve stream constraint values in common header

    23 juin 2017, par Mark Thompson
    hevc : Improve stream constraint values in common header
    

    Add comments to describe the sources of the constraint values expressed here,
    and add some more related values which will be used in following patches.

    Fix the incorrect values for SPS and PPS count (they are not the same as those
    used for H.264), and remove HEVC_MAX_CU_SIZE because it is not used anywhere.

    • [DBH] libavcodec/hevc.h
    • [DBH] libavcodec/hevc_ps.c
    • [DBH] libavcodec/hevc_ps.h
    • [DBH] libavformat/hevc.c
  • Need Help PRO ffmpeg Python input multi video type in folder for overlay logo and output to only mp4 with same or random name please

    29 août 2021, par noobherepleasehelpme

    I need help please
I'm new to python and ffmpeg.

    


    Now I use this basic command To use ffmpeg add a logo overlay to the video file.

    


    import ffmpeg
main = ffmpeg.input('1.mkv')
logo = ffmpeg.input('logo.png')
(
    ffmpeg
    .filter([main, logo], 'overlay', 10, 10)
    .output('2.mp4')
    .run(overwrite_output=True)
)



    


    It works very well, I found it on here.
But is it possible to have ffmpeg to input all mp4 or mkv files in a folder ?

    


    or command ffmpeg Find all types of video files in the folder. (if possible)

    


    and insert the logo with filter overlay as usual

    


    and output to the original file name or random name

    


    thanks please help me