Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (81)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • 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 ;

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (3542)

  • Video conversion flow for HLS (m3u8) with Django and CloudFront

    29 mars 2020, par marcos silva de souza

    I was trying to find out how to do something like HLS to prevent BEGINNERS from hacking my content, and I think I got it a little after researching all night.

    Currently, I know I have to do the following :

    • install ffmpeg

    • convert the video after upload (I think it will be this way)

    • send the files, and offer the link to the .m3u8 file (which will be together with the .ts files)

    The question now is :

    • I don’t know yet how to set the cloudfront

    • I don’t know if I will need to use signed urls / cookies

    • I don’t know how to create the video conversion stream (I must use
      ffmpeg to convert and create the files, and then use the aws Python
      SDK to upload to AWS, and then change the video field, or even even
      delete the original video after upload, maybe in the save method ?)

  • Use FFmpeg to calculate Optical Flow magnitude

    2 mai 2020, par Tina J

    I'm trying to use FFmpeg to calculate the total optical flow value (or a motion value) in a short video. Is there a command to do that ? Would be open to any alternative approach as well, if it is faster.

    



    I'm currently using Python and openCV to do that :

    



    def getOpticalMag(prev_image, curr_image):

    prev_image_gray = cv2.cvtColor(prev_image, cv2.COLOR_BGR2GRAY)
    curr_image_gray = cv2.cvtColor(curr_image, cv2.COLOR_BGR2GRAY)

    flow = cv2.calcOpticalFlowFarneback(prev_image_gray, curr_image_gray, flow=None,
                                        pyr_scale=0.5, levels=1, winsize=15,
                                        iterations=2,
                                        poly_n=5, poly_sigma=1.1, flags=0)
    mag, ang = cv2.cartToPolar(flow[...,0], flow[...,1])

    return np.mean(mag)


    


  • avutil/tx : remove deadcode of the control flow

    28 janvier 2022, par Steven Liu
    avutil/tx : remove deadcode of the control flow
    

    Fix CID : 1497864
    The control flow should return ENOSYS if nb_cd_matches is 0 at before
    and the ret equal AVERROR(ENOMEM) or goto end label, so remove the last
    control flow if (ret >= 0) before end label.

    Signed-off-by : Steven Liu <liuqi05@kuaishou.com>

    • [DH] libavutil/tx.c