Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (42)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Les images

    15 mai 2013
  • Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur

    8 février 2011, par

    La visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
    Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
    Configuration de la boite multimédia
    Dès (...)

Sur d’autres sites (7243)

  • Revision 36eeb1799d : Merge "Revert "Revert 3 patches from Hangyu to get Chrome to build :""

    25 juin 2014, par hkuang

    Merge "Revert "Revert 3 patches from Hangyu to get Chrome to build :""

  • cmdutils : replace usages of "#ifdef __MINGW32__" with "#ifdef _WIN32" because MSVC...

    17 mai 2014, par John Peebles
    cmdutils : replace usages of "#ifdef __MINGW32__" with "#ifdef _WIN32" because MSVC only defines _WIN32
    

    With the previous patch, this should fix ticket #3580 as well.

    Signed-off-by : John Peebles <johnpeeb@gmail.com>

    • [DH] cmdutils.h
    • [DH] ffplay.c
  • [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 ?