Recherche avancée

Médias (1)

Mot : - Tags -/framasoft

Autres articles (62)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (9374)

  • Revision 1521eb8ba9 : ads2armasm_ms : Match the indentation of the previous line Instead of hardcoding

    20 mars 2014, par Martin Storsjo

    Changed Paths :
     Modify /build/make/ads2armasm_ms.pl



    ads2armasm_ms : Match the indentation of the previous line

    Instead of hardcoding a certain indentation, use the regexp to
    provide similar indentation for the new line as well.

    Change-Id : Iacb2621b35ce7e1aa3980c1603b8e3ab02d98a35

  • ffmpeg encoding freezes when executed from a script (php/c#/etc.) but not from the command line

    12 août 2014, par Botch

    I have tried encoding with ffmpeg via a PHP script, but the process freezes at a certain point. When the same command is run via the command line in Windows it encodes just fine.

    I have tried different videos, which aren’t corrupted and don’t use any exotic codecs or anything.

    What could be the reason the process freezes when run from a script (i.e. exec() in PHP) but not when run directly from the command line ? Any tips ?

  • How To Add Line Break In CMD Command In Batch File

    23 août 2022, par Harinder

    I want to add a line break in a batch file here is the code

    


    for %%I in (*.mp4) do (
    set "FullFileName=%%I"
    set "OnlyFileName=%%~nI"
    setlocal EnableDelayedExpansion
    set "FullFileNameTrim=!OnlyFileName:_=!"
    set "FullFileNameTrim=!OnlyFileName:~9!"
    
    set "OnlyFileName=!OnlyFileName:_= !"
    set "OnlyFileName=!OnlyFileName:-= !"
    set "n=!^&echo.!"
    set "OnlyFileName=!OnlyFileName:(=%n%!"
    set "OnlyFileName=!OnlyFileName:~9!"
    ffmpeg.exe -i "!FullFileName!" -vf "drawtext=text=!OnlyFileName!:fontfile='C\:\\Users\\harin\\Desktop\\test\\Fonts\\Glamy Sunrise.ttf':fontcolor=black:fontsize=54:x=20:y=50" -b:v 1M -r 60 -b:a 144k -crf 17 "C:\Users\harin\Desktop\test\in\Working\1\!FullFileNameTrim!.mp4"
    endlocal
)
endlocal


    


    I am not able to put line break by using

    


    set "n=!^&echo.!"
    set "OnlyFileName=!OnlyFileName:(=%n%!"


    


    Is there a way I can add a line break

    


    Thanks