Recherche avancée

Médias (0)

Mot : - Tags -/page unique

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

Autres articles (4)

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

  • Monitoring de fermes de MediaSPIP (et de SPIP tant qu’à faire)

    31 mai 2013, par

    Lorsque l’on gère plusieurs (voir plusieurs dizaines) de MediaSPIP sur la même installation, il peut être très pratique d’obtenir d’un coup d’oeil certaines informations.
    Cet article a pour but de documenter les scripts de monitoring Munin développés avec l’aide d’Infini.
    Ces scripts sont installés automatiquement par le script d’installation automatique si une installation de munin est détectée.
    Description des scripts
    Trois scripts Munin ont été développés :
    1. mediaspip_medias
    Un script de (...)

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

Sur d’autres sites (2690)

  • add image to mov using ffmpeg

    23 juin 2012, par knishua

    i have seen this code on this link

    http://www.catswhocode.com/blog/19-ffmpeg-commands-for-all-needs

    " Mix a video with a sound file

    ffmpeg -i son.wav -i video_origine.avi video_finale.mpg "

    is it possible to add a seperate image ( created using ffmpeg and ) to a mov , say

    ffmpeg -threads 8 -i D:\imagesequence\dpx\brn_055.%04d.dpx  D:\imagesequence\dpx\test2.mov

    makes a movie, then is it possible to add an image (D:/imagesequence/dpx/final_with_text_mod_04.jpg) to the beginning of this mov using one ffmpeg command

    ffmpeg -i D:/imagesequence/background.jpg -vf "movie='D\:/imagesequence/dpx/thumbnail.jpg' [watermark]; [in][watermark] overlay=(main_w-overlay_w)/2:(main_h-overlay_h)/3 [out]" D:/imagesequence/dpx/final_with_text_mod_04.jpg

  • How to take a video of what's happening in selenium

    5 février 2019, par fabio

    I’m using Selenium 3 webdriver and Python 3 in Windows 7.

    I want to record a video of what’s happening in my selenium tests.

    To do so I’m using FFmpeg and screen-capture-recorder but I can change programs.

    Here’s my code :

    import unittest
    from selenium import webdriver
    from subprocess import Popen
    #from subprocess import call


    cmd = 'ffmpeg -y -rtbufsize 2000M -f dshow -i video="screen-capture-recorder" -r 10 -t 20 screen-capture.mp4'

    class SearchProductTest(unittest.TestCase):
       def setUp(self):

           # start the recording of movie
           self.videoRecording = Popen(cmd)

           # create a new Firefox session
           self.driver = webdriver.Firefox()
           self.driver.implicitly_wait(30)
           self.driver.maximize_window()

           # navigate to the application home page
           self.driver.get("http://demo-store.seleniumacademy.com/")

       def test_search_by_category(self):
           # get the search textbox
           search_field = self.driver.find_element_by_name("q")
           search_field.clear()

           # enter search keyword and submit
           search_field.send_keys("phones")
           search_field.submit()

           # get all the anchor elements which have product names displayed
           # currently on result page using find_elements_by_xpath method
           products = self.driver.find_elements_by_xpath(
               "//h2[@class='product-name']/a")

           # check count of products shown in results
           self.assertEqual(3, len(products))
           #self.videoRecording.terminate()

       def test_something_else(self):
           pass

       def tearDown(self):
           # close the browser window
           self.driver.quit()

           # Stop the recording
           self.videoRecording.terminate()

       #def terminate(process):
           #if process.poll() is None:
           #    call('taskkill /F /T /PID ' + str(process.pid))

    if __name__ == '__main__':
       unittest.main(verbosity=2)

    The problems are :

    1) the cmd gives a max time per the movie (20" in the example). If the test last more the movie is created and it works (but is incomplete, only 20").

    2) if the test last less the file is created but it doesn’t work (the reader can’t read it and it’s just some bytes). This is the main error ! I’m not sure about where to start the movie and where (and how) to stop it.

    3) If I have more than one test I would like to have only one movie for all of them (so I want to record all the tests in the same movie).

    4) if possible I would prefer to record the webdriver window (the one where my tests are running) and not my screen so meanwhile the tests go I can do something else (they are slow).

    Thanks you for the help.

  • ffmpeg - extract subtitles from piped input ?

    12 avril 2017, par Alastair

    I have found two separate commands that I want to combine. One for taking piped input :

    ffmpeg -i pipe:0

    And another for extracting subtitles from a .ts file :

    ffmpeg -i "movie=file.ts[out0+subcc]" -map s output.srt

    But I can’t work out how to combine them.

    ffmpeg -i "movie=pipe:0[out0+subcc]" -map s output.srt

    doesn’t work. I’m kind of an ffmpeg newbie, so any ideas ?