Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (40)

  • 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

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

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

Sur d’autres sites (4351)

  • Anomalie #3135 : Manque un item de langue et est-ce bien nécessaire d’afficher toutes les extensio...

    28 juin 2015, par b b

    Juste une remarque, il faut faire attention quand on ajoute des chaînes de langue, car cela induit du travail pour les personnes qui traduisent SPIP. Dans le cas présent on a deux chaînes ajoutées, et donc à traduire, alors qu’au final la modification va être remaniée et ces chaînes risques d’être modifiées ou supprimées.

  • Upload a photo into an online video [on hold]

    17 juillet 2015, par jennie788

    Id like to allow my online users to upload their photo onto my web server. Then I want their photo to be embedded into an online video.

    The idea is to make it look as if their photo appears in an empty frame on a shelf for example. I want them to be the hero of the video.

    I’d also like them to be able to view the final video with their uploaded photo seconds after the upload.

    I know how to do this in flash but what other tools can i use to achieve this please ?

    I thought about using ffmpeg to add the picture on the fly. Is it the right approach ?

    All I need is somebody to point me in the right direction. What tool should I use to do this.

    Thanks

    Jennie

  • FFMPEG resizes processed video

    15 septembre 2021, par Peter Mark Friedladner

    I have this simple code, whcih compresses videos to mp4. Everythign works well but when looking at the final video, it is upscaled higher. Example would be an original video file of 1920 × 1080 turns out to be 4096 × 2160. I do not want this to happen, instead if FFMPEG finds a video of 720x1080,1920x180 etc.. it should keep the original video size, and not alter. Any help would be appreciated.

    


    #find . \( -name "*.mov" -o -name "*.MOV" \);
#do echo $i; done
for i in $(find . -name '*.mov' -or -name '*.MOV'); do 
ffmpeg -i "$i" "${i%.*}.mp4";
rm "$i"
done