Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (52)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (8117)

  • Anomalie #3169 (Rejeté) : Bug du compresseur avec font-family : inherit ;

    20 février 2014, par Debondt Didier

    Lorsque l’on minifie un CSS qui contient plusieurs directives font-* le compresseur essaie de tout mettre dans une propriété font : [...] ;

    Cela fonctionne dans la majorité des cas, mais il existe une exception :

    font-family : inherit ; fonctionne comme attendu.

    font:400 1rem/1.6 inherit ; est invalide, probablement pour des raisons d’ambiguïté entre les différentes valeurs possible de font.

    Il faudra que le compresseur ne touche pas aux font-family : inherit.

  • ffmpeg masks more than one overlay, how can I mask only one ?

    6 juin 2020, par Jonathan Winger-Lang

    I am trying to use an alpha mask to mask the corners of a video, it works. But then I try to add another image on top of them and it is also masked.

    



    How can I mask only the one video, not subsequent layers ?

    



    alpha

    



    Here you can see that the phone frame is also masked, since it does not goo beyond the (x-axis) edges of the phone.

    



    My script :

    



    ffmpeg -i input.mp4 \
   -loop 1 -i mask.png \
   -i background.png \
   -loop 1 -i frame2.png \
-filter_complex \
   "[0][1]             alphamerge                                         [masked_video];    \
    [masked_video][3]  overlay=(main_w-overlay_w)/2:(main_h-overlay_h)/2  [phone];           \
    [phone]            scale=(iw*0.5):(ih*0.5)                            [scaled_phone];    \
    [2][scaled_phone]  overlay=100:100" \
-shortest out.mp4


    



    Thank you

    


  • Amazon Elastic Transcoder vs FFMPEG [on hold]

    17 janvier 2015, par KiranD

    I’m developing a website (php based) and there is a provision to upload videos in different formats. I’m using HTML5 player for the front end presentation. So, as the ideal format that is supported by most of the browsers is mp4, I tried using ffmpeg and it works fine.

    I would like to know which transcoder (Amazon Elastic Transcoder or FFMPEG) would be best for handling conversions parallely when there is a huge traffic.

    There could me approximately thousands of users watching the videos and may be hundreds uploading the videos at the same time. I’m using Amazon EC2 for deployment and the traffic is mostly spiky (not flat).

    I’m not sure about the acceptable speed. But, I need the one which can transcode the videos much faster.