Recherche avancée

Médias (1)

Mot : - Tags -/swfupload

Autres articles (101)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • ffmpeg parameters to cut video files with Full Re-Encoding

    24 septembre 2019, par How to

    The following code will be used to trim multiple video files (with different audio or video codecs, or containers etc...).
    The purpose of this code is to cut a video file with ffmpeg as the resulting output (cut) file to contain the same video, audio codecs as the original as using method FULL-RENCODING.
    My question is whether there is any error in the current parameters ?

    Example of used ffmpeg code :

    ffmpeg -i Sample.vob -ss 00:00:10.000 -strict -2 -t 00:00:10.000 -map 0:v:0 -map 0:a? -acodec copy -map 0:s? -scodec copy SSSS.vob

    or

    ffmpeg -i Sample.mp4 -ss 00:00:10.000 -strict -2 -t 00:00:10.000 -map 0:v:0 -map 0:a? -acodec copy -map 0:s? -scodec copy SSSS.mp4

    or

    ffmpeg -i Sample.mkv -ss 00:00:10.000 -strict -2 -t 00:00:10.000 -map 0:v:0 -map 0:a? -acodec copy -map 0:s? -scodec copy SSSS.mkv

    and others...

  • call ffmepg from apache php without full path

    14 février 2015, par ffmpeg fan

    I need a apache /php to recognize ffmpeg command without specifing the full bath of /usr/local/bin/ffmpeg

    calling ffmpeg from command line executes the program
    calling ffmpeg from php via web does not execute the program
    calling /usr/local/bin/ffmpeg from php via web does execute the program

    why :
    a php script calls youtube-dl (a compiled program) and executes ffmpeg internally

    thank you in advance -
    tried ffmpeg path :
    which ffmpeg
    /usr/local/bin/ffmpeg

    echo $PATH
    /usr/lib64/qt-3.3/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin


    #php code for testing:
    $output = shell_exec('/usr/local/bin/ffmpeg 2>&1');
    echo "shell exec /usr/local/bin/ffmpeg <pre>$output</pre>";
    #Response:
    ffmpeg version 2.5.3 Copyright #(good)

    #Second php code for testing:
    $output = shell_exec('ffmpeg 2>&amp;1');
    echo "shell exec <pre>$output</pre>";
    #Response:
    sh: ffmpeg: command not found #(bad)
  • avcodec/qpeg : Optimize full width runs in qpeg_decode_intra()

    5 novembre 2018, par Michael Niedermayer
    avcodec/qpeg : Optimize full width runs in qpeg_decode_intra()
    

    This improves the speed of decoding large patches of constant color

    Fixes : Timeout
    Fixes : 10967/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_QPEG_fuzzer-5630803793936384

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/qpeg.c