Recherche avancée

Médias (0)

Mot : - Tags -/publication

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

Autres articles (75)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (4412)

  • Can't Install FFMPEG with homebrew

    6 mai 2021, par dcnaber

    I tried installing FFmpeg with homebrew today. When I enter "brew install FFmpeg" I get this :

    


    (my terminal)

    


    I tried running commands like brew doctor and git -C $(--repo homebrew/core)

    


    I'm using macOS Big Sur btw.

    


    EDIT : I installed FFmpeg as a final solution it seems to be working now. Thanks for helping, guys. I don't know what's wrong with my homebrew though.

    


  • ffmpeg convert video file with 8 audio channels to multichannel wav

    6 avril 2017, par imgoingtoshabooms

    on run input, parameters
    tell application "Terminal"
    activate
    set filesString to ""
    repeat with file_ in input
    set filesString to filesString & " " & quoted form of (POSIX path >of file_)
    end repeat
    do script "for f in" & filesString & " ; do
     /Documents/ffmpeg/ffmpeg -i \"$f\" -acodec pcm_s16le \"$f%.*.wav\"
    done"
    end tell
    return input
    end run

    I wrote an applescript to add a right-click service in OS X, but this only takes the first channel and creates a mono wav file. How can i create a multichannel wav to accommodate 8 mono tracks ?

  • ffmpeg convert video file with 8 audio channels to multichannel wav

    10 juin 2020, par imgoingtoshabooms
    


    on run input, parameters
 tell application "Terminal"
 activate
 set filesString to ""
 repeat with file_ in input
 set filesString to filesString & " " & quoted form of (POSIX path >of file_)
 end repeat
 do script "for f in" & filesString & " ; do
 /Documents/ffmpeg/ffmpeg -i \"$f\" -acodec pcm_s16le \"$f%.*.wav\"
 done"
 end tell
 return input
 end run

    


    



    I wrote an applescript to add a right-click service in OS X, but this only takes the first channel and creates a mono wav file. How can i create a multichannel wav to accommodate 8 mono tracks ?