Recherche avancée

Médias (0)

Mot : - Tags -/organisation

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

Autres articles (80)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

Sur d’autres sites (6046)

  • Pass UTF8 parameter in powershell

    13 juin 2018, par Dev_MC

    I have to use ffmpeg-normalize (https://github.com/slhck/ffmpeg-normalize) in my project.

    Everything works well except that encoding have trouble on Windows :

    $OutputEncoding = [System.Text.Encoding]::Unicode
    $OutputEncoding
    Get-WinSystemLocale
    pause
    Get-ChildItem -path "./" -recurse | foreach ($_) {
       if ($_.Extension -eq ".wav") {
       write $_.FullName
        ffmpeg-normalize $_.FullName -nt peak -t -20 -o $_.FullName -f
        pause
       }
       if ($_.Extension -eq ".mp4") {
        ffmpeg-normalize $_.FullName -c:a aac -nt peak -t -20 -o $_.FullName -f
       }
           if ($_.Extension -eq ".mp3") {
        ffmpeg-normalize $_.FullName -c:a libmp3lame -nt peak -t -20 -o $_.FullName -f
       }
    }

    and here is the display

    BodyName          : utf-16
    EncodingName      : Unicode
    HeaderName        : utf-16
    WebName           : utf-16
    WindowsCodePage   : 1200
    IsBrowserDisplay  : False
    IsBrowserSave     : True
    IsMailNewsDisplay : False
    IsMailNewsSave    : False
    IsSingleByte      : False
    EncoderFallback   : System.Text.EncoderReplacementFallback
    DecoderFallback   : System.Text.DecoderReplacementFallback
    IsReadOnly        : True
    CodePage          : 1200

    Parent                         : en
    LCID                           : 1033
    KeyboardLayoutId               : 1033
    Name                           : en-US
    IetfLanguageTag                : en-US
    DisplayName                    : English (United States)
    NativeName                     : English (United States)
    EnglishName                    : English (United States)
    TwoLetterISOLanguageName       : en
    ThreeLetterISOLanguageName     : eng
    ThreeLetterWindowsLanguageName : ENU
    CompareInfo                    : CompareInfo - en-US
    TextInfo                       : TextInfo - en-US
    IsNeutralCulture               : False
    CultureTypes                   : SpecificCultures, InstalledWin32Cultures, FrameworkCultures
    NumberFormat                   : System.Globalization.NumberFormatInfo
    DateTimeFormat                 : System.Globalization.DateTimeFormatInfo
    Calendar                       : System.Globalization.GregorianCalendar
    OptionalCalendars              : {System.Globalization.GregorianCalendar, System.Globalization.GregorianCalendar}
    UseUserOverride                : True
    IsReadOnly                     : False

    Press Enter to continue...:
    C:\Users\user\Desktop\a\b\d\e\audio - Copy.wav
    WARNING: Output file only supports one stream. Keeping only first audio stream.
    Press Enter to continue...:
    C:\Users\user\Desktop\a\b\d\不\audio - Copy.wav
    ERROR: file C:\Users\user\Desktop\a\b\d\?\audio - Copy.wav does not exist
    Press Enter to continue...:
    C:\Users\user\Desktop\a\c\audio - Copy.wav
    WARNING: Output file only supports one stream. Keeping only first audio stream.
    Press Enter to continue...:

    The program works well on MacOS, so I don’t think it’s a software issue. It looks like PowerShell does not send the parameter to the program correctly.

    Do you have any ideas ?

    Thanks

  • How to stop ffmpeg user screen recording in c#

    20 juillet 2017, par Akash Langhani

    I am using ffmpeg in application and It start and record video perfectly but when I want to stop it ask for press "q", so how can I pass "q" to process which is in runing state from application.

  • How to stop ffmpeg user screen recording in c#

    14 juin 2016, par Akash Langhani

    I am using ffmpeg in application and It start and record video perfectly but when I want to stop it ask for press "q", so how can I pass "q" to process which is in runing state from application.