Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (45)

  • 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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (10119)

  • Revision 7e515c4637 : fix AVX & AVX2 detection fixes issue #790 which resulted in a SIGILL on OpenBSD

    15 janvier 2015, par James Zern

    Changed Paths :
     Modify /vpx_ports/x86.h



    fix AVX & AVX2 detection

    fixes issue #790 which resulted in a SIGILL on OpenBSD

    code is mostly from libwebp, based on the following :

    https://software.intel.com/en-us/articles/how-to-detect-new-instruction-support-
    in-the-4th-generation-intel-core-processor-family

    Change-Id : Ida7c1a18261e98c05ed9c662068140be407ec107

  • Can this be done in Handbrake or FFMPEG

    2 décembre 2022, par Takin

    Just wonder this could be done in Handbrake or FFMPEG.
Any other transcoding software in Windows or MacOS would also be acceptable.

    



    I have many family videos, shooted with DSLR/action cam/phone.
And the files are really huge without transcoding them.
There are something I would like to have,

    



      

    1. Metadata should be all captured. Using Handbrake would not be able to capture the information of the used device. Also, the capture date will become the transcoding date which is definitely unacceptable.

    2. 


    3. I would like to transcode them into HEVC (H.265)

    4. 


    5. I need to batch transcode them since there're a lot of videos.

    6. 


    



    If it's possible (not neccessary), I would also like to have the filename as "YYYYMMDD_HHMMSS".

    



    I think both 1 and 3 are quite frequently asked questions.
This thread will be quite useful to all people who are looking for the same answer as well.
Thanks a lot !

    


  • Error with os.system in python script

    25 mai 2015, par Avery Ripoll Crocker

    I am creating a python script that will convert files using ffmpeg and unoconv. However when I run the program, rather than getting a converted file the program simply displays the text :

    sh: 1: unoconv -f: not found

    Here is the script for my program :

       path = raw_input("Please drag and drop the directory in which the file is stored into the terminal:")
       os.chdir(path[1:-2])
       filename = raw_input("Please enter the name of the file you would like to convert, including the file-type. e.g. test.txt, however please do make sure that the file-name does not have any spaces:")
       Fileextension = raw_input("What filetype would you like the program to convert your file to. E.g. .mp3: ")
       body, ext = os.path.splitext("filename")
       os.system("'ffmpeg -i ' + filename + body + Fileextension ")

    Any ideas as to why this happens ?