Recherche avancée

Médias (21)

Mot : - Tags -/Nine Inch Nails

Autres articles (65)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (8430)

  • curl (7) error when trying to install Homebrew on mac

    16 janvier 2017, par Peleadora

    Wanted to install Homebrew on my mac (on version 10.11.6) and put this into terminal :

    /usr/bin/ruby -e "$(/usr/bin/curl -fsSL https://raw.github.com/mxcl/homebrew/master/Library/Contributions/install_homebrew.rb)"

    The thing i get is the following :

    curl: (7) Couldn't connect to server

    Now, I don’t have any knowledge about terminal and curl and proxy and all this stuff, but I really need Homebrew (actually I need ffmpeg but apparently homebrew is necessary for ffmpeg)... I remember having ffmpeg already installed half a year ago, but somehow I got it deleted. Now, I have a backup of that time, so can I just recover it - just homebrew and ffmpeg without recovering the whole backup ? Or is there a way just to install homebrew again ?

    Thanks for helping !

    -Peleadora

  • Trim and merge audio and video file using ffmpeg

    30 août 2017, par falary

    I’m trying to trim an audio file and then merge it with my video file on android.

    I can merge them together with the command below

    String command[] = {"-i", mOutputFile.getAbsolutePath(), " -i", mOutputAudioFile.getAbsolutePath(), "-c:v", "copy", "-c:a", "aac","-shortest", dest.getAbsolutePath()};

    But i need to trim the beginning (half-second for example) of my audio file before (for synchronization issue). So if you can help me with a single command it would be perfect but maybe i can just run two ffmpeg commands successively but i don’t know how to do that as well. Thanks !

  • ffmpeg lossless mp4 to image sequence conversion (and back to mp4 again) [closed]

    2 juin 2021, par Cinderella Costallas

    I've browsed google for hours now and cant find anything about this.
I'm really struggling to extract the frames of an mp4 to an image sequence without any quality loss.
I need to be able to convert the image sequence back to an mp4 again also with no quality loss.
My purpose for this is to essentially drop half of all frames, making a 60fps mp4 into 30fps.
Previously the only other way I've found of doing this was to create a rawbitstream which takes up an absurd amount of disk space, and I don't want that. You can find that post here. Anything that can help me achieve this, I would greatly appreciate if you could share it.