Recherche avancée

Médias (0)

Mot : - Tags -/organisation

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

Autres articles (104)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (14333)

  • 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


    


  • Using FFMPEG : How to do a Scene Change Detection ? with timecode ?

    24 novembre 2016, par Mozart

    Based on this article it seems that it is possible to use FFMPEG to detect scene change in videos :
    http://www.luckydinosaur.com/u/ffmpeg-scene-change-detector

    Now I have a video that displays a book text and when the text (word or sentence) is spoken it gets highlighted.
    Something like this audio book : https://youtu.be/lA7L6ZNVKjc

    I need to know the timestamp when the text gets highlighted (hence scene change), this will allow me to add timestamp tags on my youtube video, so it becomes easier for listeners to navigate through the audiobook.

    What is the magic command line that would do this ?

    Thank you very much !

  • Merge commit ’5a69ded12aaf2bd3baed5d1d644ef23cfecef87f’

    16 juin 2014, par Michael Niedermayer
    Merge commit ’5a69ded12aaf2bd3baed5d1d644ef23cfecef87f’
    

    * commit ’5a69ded12aaf2bd3baed5d1d644ef23cfecef87f’ :
    vf_showinfo : print display transformation values

    Merged-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavfilter/vf_showinfo.c