Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (34)

  • 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

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • Prérequis à l’installation

    31 janvier 2010, par

    Préambule
    Cet article n’a pas pour but de détailler les installations de ces logiciels mais plutôt de donner des informations sur leur configuration spécifique.
    Avant toute chose SPIPMotion tout comme MediaSPIP est fait pour tourner sur des distributions Linux de type Debian ou dérivées (Ubuntu...). Les documentations de ce site se réfèrent donc à ces distributions. Il est également possible de l’utiliser sur d’autres distributions Linux mais aucune garantie de bon fonctionnement n’est possible.
    Il (...)

Sur d’autres sites (5093)

  • Revision 8e2c03fbfd : Simplify Zero bin and zero bin run code. Simplification to eliminate a number o

    24 janvier 2013, par Paul Wilkins

    Changed Paths : Modify /vp9/encoder/vp9_onyx_int.h Modify /vp9/encoder/vp9_quantize.c Simplify Zero bin and zero bin run code. Simplification to eliminate a number of very large data data structures. All zero run, zbin boosts for different transform sizes are now limited to a maximum run length of (...)

  • FFMPEG / MinIO - How to assemble images from MinIO to mp4 [closed]

    9 juin 2022, par Jacques Wolmarans

    I'm writing a Python application where one part is capturing and storing .jpg images on a Minio server running locally. The other part is used to create a video from the batch of images.

    


    I'm limited with storage and processing on the server its running on, so I've been trying to assemble the images directly from Minio (without downloading them first), but no luck at all.

    


    Any advice or alternatives would be greatly appreciated.

    


  • Copy metadata from one mp4 file to another in python

    8 juin 2020, par hampani

    I have a simple script for copying the exif (metadata) from one .jpg to another.

    



    import piexif
import os

for filename in os.listdir(directory):
    if filename.endswith(".jpg"):
        piexif.transplant(exifSrc, filename)
    else:
        continue


    



    I now want to create a script that copies the metadata from one .mp4 to another. However, my programming skills are very limited and I can't even find a library (with documentation that I understand) to even start the project. I think ffmpeg can do the trick, altough I'm not sure.