Recherche avancée

Médias (1)

Mot : - Tags -/sintel

Autres articles (112)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (13384)

  • how to pass arguments to existing process instance in c#

    28 octobre 2013, par Akash Langhani

    I am using ffmpeg and I have start a process and I want to pass an argument to same instance after its start, so how to do this in c sharp any resource. Basically I am using ffmpeg to recored desktop screen and ffmpeg recording can be stop with "q" word.

  • [Turmux][ffmpeg] encounter "can't open stat file" when use "-pass"

    15 février 2020, par Jackal Zhao

    I installed ffmpeg in turmux, in my home directory, ran :

    ffmpeg -y -i /sdcard/FFMPEG/in.mp4 -c:v libx264 -b:v 2600k -pass 2 -c:a copy /sdcard/FFMPEG/out3.mp4

    the error bumps :

    ratecontrol_init: can't open stats file

    if I enter /sdcard/FFMEPG folder first, then run
    ffmpeg -y -i /sdcard/FFMPEG/in.mp4 -c:v libx264 -b:v 2600k -pass 2 -c:a copy /sdcard/FFMPEG/out3.mp4
    the task will run successfully.

    then I went back to turmux home directory, ran
    ffmpeg -y -i /sdcard/FFMPEG/in.mp4 -c:v libx264 -b:v 2600k -pass 2 -c:a copy /sdcard/FFMPEG/out3.mp4
    , error still happens.

    so I then added -strict -2 -passlogfile /tmp/mydummy and ran ran
    ffmpeg -y -i /sdcard/FFMPEG/in.mp4 -c:v libx264 -strict -2 -passlogfile /sdcard/FFMPEG/ -b:v 2600k -pass 2 -c:a copy /sdcard/FFMPEG/out3.mp4
    , and same error still happens.

    My question is, how to use ffmpeg "-pass" in termux successfully without especially entering the target folder ?

  • ffmpeg - Two pass encoding for multiple output with one input

    9 août 2015, par Robin

    I tried two pass multiple output with one input like this :

    ffmpeg -i mi6.mp4 \
       -codec:v libx264 -tune zerolatency -profile:v main -preset medium -b:v 1000k -maxrate 1000k -bufsize 10000k -s hd720 -threads 0 -pix_fmt yuv420p -pass 1 -passlogfile unique_id-hd720 -an -f mp4 /dev/null \
       -codec:v libx264 -tune zerolatency -profile:v baseline -level 3.0 -preset medium -b:v 250k -maxrate 250k -bufsize 2500k -vf scale="trunc(oh*a/2)*2:360" -threads 0 -pix_fmt yuv420p -movflags +faststart -pass 1 -passlogfile unique_id-360 -an -f mp4 /dev/null && \
       -codec:v libx264 -tune zerolatency -profile:v main -preset medium -b:v 1000k -maxrate 1000k -bufsize 10000k -s hd720 -threads 0 -pix_fmt yuv420p -pass 2 -passlogfile unique_id-hd720 -codec:a libfdk_aac -movflags +faststart output/mi6-poty-720.mp4 \
       -codec:v libx264 -tune zerolatency -profile:v baseline -level 3.0 -preset medium -b:v 250k -maxrate 250k -bufsize 2500k -vf scale="trunc(oh*a/2)*2:360" -threads 0 -pass 2 -passlogfile unique_id-360 -codec:a libfdk_aac -pix_fmt yuv420p -movflags +faststart output/mi6-poty-360.mp4

    Afterward there’s two file with the specified name, which I can’t play because the file size is 0. What’s going on ? How do I encode two pass encoding for multiple outputs ? Thank you.