Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (58)

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

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

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

  • avformat/mxfdec : guess constant byte count indexes based on track duration

    24 juin 2018, par Marton Balint
    avformat/mxfdec : guess constant byte count indexes based on track duration
    

    For clip wrapped essences this should work. Also, since index_edit_rate can now
    be different from track edit rate, remove overriding track edit rate.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/mxfdec.c
  • How to count arrays in FOR loops using a variable as index ?

    6 mai 2018, par HASJ

    Okay. I got rid of most of the useless code and have been tinkering with it here and there trying to find what is the problem and I think I finally found it :

    Windows’ Batch can’t edit variables that will be expanded if those are inside a FOR loop.

    Ex :

    set /a x=1
    Powershell Get-Clipboard> %temp%\ffmpeglist.txt
    setlocal enableExtensions enableDelayedExpansion
    for /F "delims=| tokens=*" %%A in (%temp%\ffmpeglist.txt) do (
       set input[!x!]=%%A
       call echo !input[%x%]!
       set /a x += 1
    )
    endlocal

    Expected behavior :

    g:\videos\youtube1.mp4
    g:\videos\youtube2.mp4
    g:\videos\youtube3.mp4
    g:\videos\youtube4.mp4
    g:\videos\youtube5.mp4

    What I get :

    g:\videos\youtube1.mp4
    g:\videos\youtube1.mp4
    g:\videos\youtube1.mp4
    g:\videos\youtube1.mp4
    g:\videos\youtube1.mp4

    No matter what I do, set /a x+= 1 will not change the value of x.

    Are there solutions ? I’m open to anything.

  • avfilter/formats : remove support for deprecated channel count specification

    6 janvier 2018, par Marton Balint
    avfilter/formats : remove support for deprecated channel count specification
    

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavfilter/formats.c
    • [DH] tests/ref/fate/filter-formats