Recherche avancée

Médias (91)

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.

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (10308)

  • Declaring Variables in ffmpeg in a batch file

    8 juillet 2020, par John Smith

    So I wanted to declare a variable and then use that variable throughout my ffmpeg commands in a batch file. I've seen another question about using the duration of the video, but I want to be able to change the timecode I want to cut at myself.

    


    However, the problem is I don't think I'm declaring the variable properly because it says it 00:52:00 is unrecognised, this is what I've tried so far.

    


    $timecodeToCut = 00:52:00

rem The following command can be used to trim an mp4 file at a specified position. In this example it copies the first 42 minutes of the input.mp4 file and copies it to the output.mp4 file.
ffmpeg -i input.mp4 -c copy -to $timecodeToCut tmpOutput1.mp4


    


    EDIT :
I found this from another answer, but couldn't find much information on how variables work with ffmpeg. Sorry about that, I'm a beginner when it comes to coding, do you happen to know how I could correct it to use it in a batch file ? I've tried using set timecodeToCut = 00:52:00 and then in place of $timecodeToCut used %timecodeToCut%, but it still gives me an error ?

    


  • vulkan_decode : ensure there's at least one context per decode thread

    27 novembre 2024, par Lynne
    vulkan_decode : ensure there's at least one context per decode thread
    

    Otherwise, what may happen is that 2 threads will both write
    into the same context.

    • [DH] libavcodec/vulkan_decode.c
  • Java Android Library relocates/realignes all centered texts

    9 août 2019, par Manuel Maurer

    Recently I noticed a very weird situation : Whenever I try to run a FFMpeg-Command with either https://github.com/tanersener/mobile-ffmpeg or https://github.com/bravobit/FFmpeg-Android, it changes the texts on all my other activities.

    I’m starting a thread, which saves an overlay to a video. Yes, I need to use FFMPEG, because I need it in some other places too. The strange thing is, that whenever I start the FFMPEG-Command, all the Texts in my app, that were centered before (textAlign->Center) are now aligned left.

    How can that even happen ?