Recherche avancée

Médias (0)

Mot : - Tags -/signalement

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

Autres articles (49)

  • Qu’est ce qu’un masque de formulaire

    13 juin 2013, par

    Un masque de formulaire consiste en la personnalisation du formulaire de mise en ligne des médias, rubriques, actualités, éditoriaux et liens vers des sites.
    Chaque formulaire de publication d’objet peut donc être personnalisé.
    Pour accéder à la personnalisation des champs de formulaires, il est nécessaire d’aller dans l’administration de votre MediaSPIP puis de sélectionner "Configuration des masques de formulaires".
    Sélectionnez ensuite le formulaire à modifier en cliquant sur sont type d’objet. (...)

  • 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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (9286)

  • How to use python-ffmpeg to stream to platforms like youtube, twtich ? [closed]

    16 mars 2023, par wraient

    I have been using ffmpeg from terminal to stream to twitch for a project. But I have to move it to python I found this python-ffmpeg module but could not find any good documentation. How do I convert this terminal ffmpeg command into python-ffmpeg command ?

    


    "ffmpeg -re -i ./anime/aots8e1.mkv  -c:v libx264 -preset veryfast -b:v 6000k -maxrate 6000k -bufsize 6000k -pix_fmt yuv420p -g 50 -c:a aac -b:a 160k -ac 2 -ar 44100 -f flv rtmp://live-ber.twitch.tv/app/"+streamkey


    


    If there are other better alternative to use ffmpeg and python together, please recommend.

    


  • FFMPEG map 7.1 surround to 5.1 during transcode

    12 décembre 2022, par dongle

    I have a ProRes MOV whose audio contains 8 channels of audio in a 7.1 surround layout (L R C LFE Ls Rs Lt RT).

    


    I am preparing an H.264 MP4 for a media player that only supports AAC, and does not support 7.1, so I would like to map to 5.1, dropping ther 7th and 8th channels (Lt and Rt). Under normal circumstances I would just use the below for my transcode :

    


    ffmpeg -i input_file -c:v libx264 -pix_fmt yuv420p -preset veryslow -crf 18 -c:a aac output_file

    


    I've been looking at the documentation for audio layout manipulation, but am having trouble wrapping my head around it and they don't have a specific example of what I'm trying to do.

    


    Do I need to export my audio to a WAV file first, or is there a way to manage the mapping in my transcode command ? How can I map the existing first 6 channels to the new file ?

    


  • How to encode multiple files with a batch file

    11 juillet 2021, par Black Butterfly

    I am Encoding my own anime videos to save some space on my HDD using this script

    


    https://gist.github.com/ScarletDevil25/9d71e4a7f5c215e558ecad158aa52600

    


    However I can only encode one video at a time by dragging said video to the batch file and allowing it to run.

    


    What I would like to be able to do is have the batch file encode multiple videos at once.

    


    also as another question if someone could tell me how I would run this as admin