Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (51)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

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

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

Sur d’autres sites (6722)

  • How do I batch cut videos ? [closed]

    12 février 2024, par EngineerJack

    I've searched for a while on Google, but haven't found a good solution.

    


    I have multiple videos that I want to cut parts from, so I would like to figure out how to batch cut them so I can figure out each video, then cut them all at once.

    


    I assume I'll use the terminal or powershell, and use commands, write down the info for each video in a file (like a script) then call on that file so they process one after another from that script.

    


    I know that I can do this one-by-one with the code below, but I would like to know how to use the following code for multiple videos as I described above.

    


    ffmpeg -i "video.mp4" -ss 00:00:00 -to 00:00:00 -async 1 -strict -2 "cut.mp4"

    


    BUT, a program (preferrably freeware) that isn't a video editor, but one that I can put the "start" and "end" times, then add multiple videos, WOULD be preferred.

    


    Anyone who can help me with this, I'd appreciate it.

    


    I've tried searching for ways to do this using .bat and .ps1 files on Google, but without finding a good solution.

    


  • How can I close all the threads and multiprocesses in a Tkinter app when the app closes ?

    3 septembre 2021, par kup

    I am creating a Tkinter application which starts a multiprocess.process (daeman = True) and then that process further starts a couple of threads and that thread further starts an FFmpeg process.

    


    for i, val in enumerate(group):
    threads.append(Thread(target = self.ffmpeg, args=(val, )))
    threads[i].start()


    


    But when I close the application the process does not stop. I can still see the log in the terminal after I close the application.

    


    I just want them to close when application shuts down.

    


    I also tried :

    


    sys.exit()


    


  • RuntimeError : No MovieWriters available in Matplotlib animation

    24 mai 2020, par user8715977

    The problem I am getting is in code similar to this example : 
https://matplotlib.org/examples/animation/basic_example_writer.html

    



    The error :

    



    RuntimeError : No MovieWriters available occurs at Writer = animation.writers['ffmpeg'] in the example above.

    



    I am using mac, I have installed ffmpeg using brew, and even installed it with conda even though I am not using anaconda for this particular code.

    



    I am positive that it is installed - I have used it in terminal to change files but it is not working within the program.

    



    Thanks !