Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (100)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (9777)

  • How to specify size of output image in FFmpeg command ?

    30 juillet 2023, par saladguy

    I'm extracting frame images from an MP4 video using ffmpeg in terminal.

    



    I used the command :

    



    ffmpeg -i Video.MP4 Pictures%d.bmp


    



    Problem is that the extracted images have a size of 4.5-5MB ! I want smaller images, say around 1-2 MB. How do I limit the size of output images ?

    


  • How to Convert MP4 to HLS with Multiple Audio and Multiple Video Quality in Python/Django ?

    8 août 2021, par Sanjay Sikdar

    I have tried with ffmpeg library and I can convert videos mp4 to hls with multiple quality but multiple audio is not working. > [Commands Excuting from Terminal]

    


    And with subprocess library calling subprocess.call. > [ Want to know is this the right way ? to do with Django ? ]

    


  • How to send ctrl-c to stop ffmpeg

    30 juillet 2014, par Anna SAELEE

    I have written a small function like this :

    def test():
       command = "ffmpeg -f mpegts -i udp://224.6.207.111:1234?multicast=1 -acodec copy -vcodec copy -sameq ff-output.ts"
       os.system(command)
       self.myTimer = Timer(10, "myTimer")
       self.myTimer.start()
       os.system(signal.SIGINT)
       self.myTimer.stop()

    When i run test() in python in my terminal, ffmpeg always continues without closing.
    Does someone know how to stop it ?

    Thank you for all comment ;D
    I have find that we can use -t option for ffmpeg :)