Recherche avancée

Médias (0)

Mot : - Tags -/optimisation

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

Autres articles (98)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (15562)

  • Add hyperlinks within videos

    25 avril 2020, par Monkeybus

    Is it possible to add clickable menus to videos ? Like with DVD's ?

    



    Plus, is it possible to have areas of a video image clickable ? For example a scene where each actor in a movie could be clicked ? I am thinking of something like HTML image maps, but with video ?

    



    I use Linux and ffmpeg for all of my transcoding.

    



    Any pointers, much appreciated. Thanks, as always.

    



    Talk to you all soon.

    


  • Make video with ffmpeg from 2 layers with zoom in [closed]

    15 décembre 2023, par Александр Киреев

    I need to create a video from two layers. The bottom layer (0) is a picture with a zoom in effect. The top layer (1) is assembled from png files with transparency as a video effect. I can't combine zoom in with overlay.

    


    This code doesn't work, but if remove the overlay I get the zoom in for layer 0

    


    ffmpeg.exe -i "test.webp" -i "frame%d.webp" -filter_complex "[0]scale=8000:-1,zoompan=z='zoom+0.001':x=iw/2-(iw/zoom/2):y=ih/2-(ih/zoom/2):d=250:s=1080x1080:fps=25;[0][1]overlay" test.mp4


    


    How to perform overlay correctly ?

    


  • OpenCV - Generate adaptive background for video

    17 avril 2019, par bozzmob

    I want to achieve something like this-

    Reference Video

    Say I have a video which is a vertical video(Dimension- 720x1280). I want to create a horizontal video with adaptive background like the video I’ve shown.
    I have written some code for reading and writing to a file.

    video_index = 0
    cap = cv2.VideoCapture(videofiles[0])

    # video resolution: 1920x1080 px
    out = cv2.VideoWriter("video.mp4v",
                         cv2.VideoWriter_fourcc(*'MP4V'),
                         30, (1920, 1080), 1)

    What is the effect of having background to the video which smudges on the sides called in opencv/ffmpeg or otherwise ?
    How do I achieve this effect using code or tools(I am open to using OSS desktop tools) ?