Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (49)

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

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

Sur d’autres sites (8466)

  • avcodec/dvbsubdec : check region dimensions

    8 mai 2017, par Michael Niedermayer
    avcodec/dvbsubdec : check region dimensions
    

    Fixes : 1408/clusterfuzz-testcase-minimized-6529985844084736
    Fixes : integer overflow

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/dvbsubdec.c
  • xcbgrab : Use the correct geometry for the region highlight

    4 février 2015, par Daniel Moran
    xcbgrab : Use the correct geometry for the region highlight
    

    The feature is implemented using a transparent window and drawing
    inside it a rectangle filling the whole window to highlight it.

    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DBH] libavdevice/xcbgrab.c
  • Subtract a specific string from a variable in a for loop

    14 octobre 2020, par Filip

    I am making a file converter with batch using FFMPEG.

    &#xA;

    I have encountered a problem when trying to subtract the name of a file from the complete link to the file to get the directory of the folder it is in so after the file is converted it can be put into that directory.

    &#xA;

    Can someone advise me on how I could subtract the string from the filename variable from the string in the directory

    &#xA;

    My code :

    &#xA;

    @echo off&#xA;SETLOCAL ENABLEDELAYEDEXPANSION&#xA;set filetype=.flac&#xA;for /R %%a in ("*%filetype%*") do (&#xA;    set directory=%%a&#xA;    set filename=%%~na%filetype%&#xA;    set convdir=!directory:%filename%=!&#xA;    echo !convdir!&#xA;    pause&#xA;    ffmpeg -i "%%a" "convdir%%~na.wav"&#xA;    echo Converted %%a&#xA;)&#xA;echo Convertion Done!&#xA;pause&#xA;

    &#xA;