Recherche avancée

Médias (0)

Mot : - Tags -/diogene

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (42)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • 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

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

Sur d’autres sites (8745)

  • Evolution #4417 : Augmenter la longueur du mot de passe demandé pour créer un nouvel auteur

    24 décembre 2019, par cy_altern -

    complémentairement, pour compliquer le "brut force" des mots de passes, il y aurait l’utilisation d’un algorithme de hashage de type Argon2 (cf https://fr.wikipedia.org/wiki/Argon2) qui est conçu pour imposer un coût mémoire.
    Voir https://github.com/p-h-c/phc-winner-argon2 pour les implémentations disponibles de Argon2 (PHP > 7.2 et JavaScript OK)

  • How do I pass a file path with spaces as an argument in FFmpeg/cmd via python ?

    12 octobre 2022, par At Bay

    Basically the code below is taking wav files saved in a folder location ufolder, and trimming them to one minute clips and saving those clips in a new folder dfolder. I'm using python, cmd, and ffmpeg to do this.

    


    The problem is that the original folder location has spaces in it, so I get an error which reads : W:\ARCHIVESNAS1\INGEST\01: No such file or directory

    


    If I were to use cmd directly, I would circumvent this problem with quotes.

    


    ffmpeg -ss 0 -t 10 -i "W:\ARCHIVESNAS1\INGEST\01 PLEASE REVIEW\Levy\GeorgeBloodShipments\_6-Ready-for-Ingest\SREDReels20210805\26368\data" "C:\Users\myname\Downloads\practice"


    


    How do I include quotes with a command that's using variables. Adding quotes, as I do immediately below, doesn't work.

    


    os.system("ffmpeg -ss 0 -t 10 -i **"{0}" "{1}"**".format(filepathO, filepathN))


    


    import os
ufolder = r'W:\ARCHIVESNAS1\INGEST\01 PLEASE REVIEW\Levy\GeorgeBloodShipments\_6-Ready-for-Ingest\SREDReels20210805\26368\data'
dfolder = r'C:\Users\myname\Downloads\practice'
for filename in os.listdir(ufolder):
    if (filename.endswith(".wav")): #or .avi, .mpeg, whatever.
        filepathO = str(ufolder)+"\\"+str(filename)
        filepathN = str(dfolder)+"\\"+"CLIPPED"+str(filename)
        os.system("ffmpeg -ss 0 -t 10 -i {0} {1}".format(filepathO, filepathN))
    else:
        continue


    


  • Trouble whit ffmpeg dll, when i convert to specific target

    25 juillet 2018, par Denis Logachov

    I use ffmpeg for convert my video, but when i set specific configuration for convertin, audio after converting playing with delay. My command is "ffmpeg.exe -i "inputFile.mp4" -target film-dv "outputFile.mp4"" In documentation review that we just set only some combination whit command "-target" and other paremeter set automaticaly. What am i doing wrong ?