Recherche avancée

Médias (1)

Mot : - Tags -/intégration

Autres articles (85)

  • 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 (...)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • 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 (...)

Sur d’autres sites (10865)

  • lavfi : pass min explicitly to samples_ready().

    22 décembre 2016, par Nicolas George
    lavfi : pass min explicitly to samples_ready().
    
    • [DH] libavfilter/avfilter.c
  • bash scripting : pass string containing multiple parameters and filenames with spaces to ffmpeg

    2 septembre 2016, par Mia Lon

    I have a script that generates a text file with entries like :

    -ss 5.5 -i "/path/vid 1.mp4" -t 3 "/path/vid out1.mp4"

    But when I call ffmpeg with this string attached it fails.
    If I quote the variable then ffmpeg considers the entire string as a single option, error "Option not found".
    If I don’t quote, then for some reason ffmpeg ignores the double quotes and reports "/path/vid :No such file or directory.

    Even though it prints the input correctly as -i "/path/vid 1.mp4".

    Replacing the double quotes around the filenames with single quotes doesn’t help.
    But when I pass the string to zenity and then manually copy it into the terminal, it works :

    zenity --entry --entry-text "ffmpeg -nostdin $line2"

    So I tried assigning the entire command to a var and then running
    bash $var or exec $var, but no luck. Assigning it to an alias doesn’t work either : "command not found"

    Solution by Joan Estaban :

    echo $stringvar | xargs ffmpeg

    A short full script demonstrating the problem :

    #!/bin/bash


    fffile="/home/vume5/Desktop/dwhelper/bud grafting animation.mp4"

    line="-ss 4.920000 -i \"$fffile\" -t 60.000000 -map 0 -c:v copy -c:a copy \"$fffile.cut.mkv\""

    zenity --entry --entry-text "$line"

    ffmpeg $line

    read dummy
  • avcodec/vp3 : pass correct context to av_log()

    6 février 2015, par Michael Niedermayer
    avcodec/vp3 : pass correct context to av_log()
    

    Fixes null pointer dereference
    Fixes : signal_sigsegv_000_3694_cov_1050071691_theora.mkv

    Found-by : Mateusz "j00ru" Jurczyk and Gynvael Coldwind
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/vp3.c