Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (72)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (8447)

  • Revision 3810bca9a9 : Fix Android ndk-build Add the config directory to the rtcd generation script. l

    17 avril 2013, par Johann

    Changed Paths : Modify /build/make/Android.mk Modify /libs.mk Fix Android ndk-build Add the config directory to the rtcd generation script. libvpx is configured in the jni directory but ndk-build is intended to be run from the next directory up. Currently it needs to be run from the jni directory (...)

  • ffmpeg shell script to squeeze videos for twitter

    12 juin 2018, par André Levy

    Here’s a pretty rookie attempt at creating a shell script to squeeze videos into twitter’s 140s limitation :

    for f in "$@"
    do
       /Applications/ffmpeg -i $f -filter_complex "[0:v]setpts=140 / \
     $(/Applications/ffprobe -i $f -show_entries format=duration -v quiet -of csv="p=0") \
     * PTS[v];[0:a]atempo= \
     $(/Applications/ffprobe -i $f -show_entries format=duration -v quiet -of csv="p=0") \
     / 140[a]" -map "[v]" -map "[a]"  "${f%.*}_twitter.mp4"
    done

    It works, but it’s pretty badly written. Can you help me improve it ?

    1. How can I run ffprobe only once ?
    2. Do I need ffprobe at all, or does ffmpeg have the duration of the input amongst its arguments ?
    3. Will it encode faster with other settings (e.g. HW acceleration) ?
    4. Any twitter upload scripts out there to pipe this into ?

    Needless to say, I looked for this answers all around, to no avail.

    Cheers.

  • fate/filter : move concat filtergraph to a dedicated script.

    28 mars 2013, par Clément Bœsch

    fate/filter : move concat filtergraph to a dedicated script.