Recherche avancée

Médias (91)

Autres articles (105)

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

Sur d’autres sites (11433)

  • FFMPEG pull only english audio unless no english then copy all audio

    21 mars 2021, par Lee

    This is doing my nut in !! lol

    


    I am trying to pull only english audio unless there is no english in which case i just want to leave it as it is - I am converting to ac audio as well and copying subs. Put yeah i just want to say pull only english unless there is no english in which case copy all audio.

    


    So I am using this -copy_unknown -map v -map m:language:eng ? -c:v copy -c:s srt -ac 2

    


    So it works and pulls english if there is one, but if there isn't it looses all audio.

    


    Help lol

    


    The copy unknown doens't work either - unknown language audio gets left out too

    


    Thanks
Chezzy

    


  • drawtext japanese language by ffmpeg !!! plz help me

    26 juillet 2021, par Callum McGrath

    I use drawtext command to write text on video, I succeeded in English but when I use Japanese, the video output shows a square.... I can't edit it here is my code

    


    ffmpeg -y -i "{input}.*" -vf "drawtext="textfile=1.txt:fontfile=/path/to/HGRSMP.ttf:y=20:x=w-t*150:fontcolor=red:fontsize=50"" -codec:a copy "{output}123.*"


    


    File 1.txt :

    


    


    どのように私に約束をしましたか
Plz help me !

    


    


  • How to move texts horizontally and vertically using ffmpeg

    1er mai 2015, par Kiran Kumar Dash

    I am using php as the scripting language and ffmpeg framework for video processing.

    I am a beginner and at current stage I am successfully able to process videos, creating video from images,processing audio and add text overlay using drawtext.

    But now my doubt is how can I move text on my video horizontally and vertically using ffmpeg commands.

    And is it possible to do much more than that like applying effects to text with ffmpeg and if not what other framework can be used to do such animation ?

    <?php $ffmpeg= "/home/irank/bin/ffmpeg";
    echo shell_exec(" $ffmpeg -i \"/var/www/html/fftest/getthumbnail/video/imageaudio6.avi\"
    -vf drawtext=\"fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf:
    text='Test Text':\ x=100: y=50: fontsize=24: fontcolor=yellow@0.2: box=1:
    boxcolor=red@0.2\" -acodec copy \"/var/www/html/fftest/getthumbnail/output/textoverlay2.wmv\"");
    ?>