Recherche avancée

Médias (0)

Mot : - Tags -/logo

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (89)

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

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

  • Is there a method to use old versions of ffmpeg and opencv ?

    6 juin 2023, par mika_roll

    I'm trying to build a project through cmake and after some adjustements the terminal display some new errors about some libraries and I don't know how to fix them, an example :

    


    /usr/bin/ld: warning: libopencv_core.so.3.4, needed by /media/myfolder/lib/Linux64_x64/file.so.3.3, not found (try using -rpath or -rpath-link)

    


    and other errors like this one regarding libavcodec.so.57, libavformat.so.57...

    


    I've already tried to install libavcodec-dev etc and also ffmpeg and opencv by command line, and all these packages contain effectively the .so files that I need but all of them have been updated to the new version that doesn't match the one specified in the warning lines.
So is there a way to install these old versions ? Or should I try something different ? I don't really know what to do, I'm kinda new to these things so I hope I can find some help.

    


    Also, the project that I'm trying to build is not mine, someone else wrote it some time ago and my only task is to manipulate and adjust all the links to the different libraries.

    


    English is not my first language so I really hope I wrote an understandable request !

    


  • Fffmpeg mapping audio and video by language

    28 mars 2017, par Terrabyte

    I want to batch convert these mkv files, they contain more than one language. Instances include : Eng/Ger, Eng/JPN. Sometimes there are multiple video sources within the mkv for whatever reason :

    ive tried using :

    FFMPEG_PATH . ' -i ' . $localFile . ' -sn -map 0:v:0 -map 0:a:m:language:jpn -c:v ' . $videoCodec . ' -tune animation -crf 20 -refs 6 -bf 6 -trellis 1 -b_strategy 1 -profile:v high -level 4.0 -pix_fmt yuv420p -ac 2 -flags +aic+mv4 ' . $scale . ' ' . $convertedFilename;

    This one grabs the first video (this doesnt matter, but i need it to grab one video just in case)

    -map 0:v:0 -map

    I don’t thing this one works because when i tried it, it grabbed the english one instead so i dont know the issue.

    0:a:m:language:jpn

    I could do

    0:m:language:jpn

    but then id have to remove : 0:v:0 and sometimes theres a issue where just using the general mapping would encode both video sources so it wold double in file sizes

    so how would i just map the audio file while keeping the video mapping ?
    Fgmpeg is really confusing with this instruction.

  • Can not add string to the video using ffmpeg base on PHP

    1er août 2017, par Thanh Dao

    I’m new in ffmpeg and I’m trying to make a demo using ffmpeg.
    Below is the PHP script

    $cmd = '"C:\Program Files\ffmpeg\bin\ffmpeg.exe" -i C:\wamp\www\vine-project\cron/tmp/t_42953497622724.mp4 --enable-libfreetype -vf "drawtext=fontfile=C:\wamp\www\demo-ffmpeg\cron/arial.ttf:text='Stack Overflow':fontcolor='Black':fontsize=19" -codec:v libx264 -codec:a copy C:\wamp\www\demo-ffmpeg\cron/tmp/text_42953497622724.mp4';
    @exec($cmd, $output);
    echo '<pre>';
    print_r($output);
    echo '</pre>';

    And then below is the result of output :

    Array
    (
    )

    Before, I joined multi videos and add background successfully.
    Input video file is exists.
    What is my wrong ? Are something incorrect ?
    3 cups of beer for each help :D
    Sorry for my bad English

    Thanks for attention !