Recherche avancée

Médias (1)

Mot : - Tags -/blender

Autres articles (40)

  • Changer son thème graphique

    22 février 2011, par

    Le thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
    Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
    Modifier le thème graphique utilisé
    Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
    Il suffit ensuite de se rendre dans l’espace de configuration du (...)

  • Initialisation de MediaSPIP (préconfiguration)

    20 février 2010, par

    Lors de l’installation de MediaSPIP, celui-ci est préconfiguré pour les usages les plus fréquents.
    Cette préconfiguration est réalisée par un plugin activé par défaut et non désactivable appelé MediaSPIP Init.
    Ce plugin sert à préconfigurer de manière correcte chaque instance de MediaSPIP. Il doit donc être placé dans le dossier plugins-dist/ du site ou de la ferme pour être installé par défaut avant de pouvoir utiliser le site.
    Dans un premier temps il active ou désactive des options de SPIP qui ne le (...)

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

Sur d’autres sites (6062)

  • batch ffmpeg conversion (aspect, crop, and concatenate) and naming based on subfolder

    3 avril 2015, par hordor

    TYIA for any help !

    Seems I have a somewhat complicated, multi-step process. If you can help any part of it that would be appreciated.

    What I hope to accomplish

    1. Example of folder/file is here : https://mega.co.nz/#F !RJRWRLTJ !c6b-z3Vl-Tlh0uGbCflx7Q
    2. I have many subfolders that each contain 7 files from a DVD (originally PAL-encoded I think). I only care about the VTS_01_1.VOB AND VTS_01_2.VOB files. The two files together are one match
    3. The videos are stretched (from 4:3 to 16:9) and letterboxed. I want to undo that
    4. The future title of the final MP4 video should be the name of the folder
    5. BONUS : title of the video should also include the folder before it (e.g. "Friday H2 G1 CAN - BEL.mp4")

    I’d like to do this via batch file because there are a lot of folders.

    What I have done :

    dir/b/s *.vob | findstr /v VIDEO | findstr /v 01_ >list.txt

    @echo off
    for %%i in list.txt
    do  
     ffmpeg -i VTS_01_1.VOB -aspect 4:3 "%%~pi\v1step1.mp4"
     ffmpeg -i vob1.mp4 -vf "crop=704:432:10:72" "%%~pi\v1step2.mp4"
     ffmpeg -i vob11.mp4 -c copy "%%~pi\v1step3.ts"
     ffmpeg -i VTS_01_2.VOB -aspect 4:3 "%%~pi\v2step1.mp4"
     ffmpeg -i vob2.mp4 -vf "crop=704:432:10:72" "%%~pi\v2step2.mp4"
     ffmpeg -i vob22.mp4 -bsf h264_mp4toannexb -c copy "%%~pi\v2step3.ts"
     ffmpeg -i "concat:v1step3.ts|v2step3.ts" -c copy file.mp4 "%%~pi\Match.mp4"

    @echo on
    pause

    Problem with current code

    1. Doesn’t start converting (can’t see error message either)
    2. Doesn’t have the file naming that I want
    3. A lot of steps in conversation - can that be simplified ?
    4. Not sure why it wanted the -bsf command for the second conversion but not the first

    Apologies if I’d made basic mistakes. I’m a big newbie and just to get this far has taken me hours of research. Thanks again !

  • How can I extract the characteristics of multimedia video stream while the video is streaming ?

    10 mai 2021, par Kai

    I have built adaptive video streaming ,DASH, over SDN network and was wondering if I can get some video characteristics while the video is streaming. I have used youtube_dl and was able to get the received video after the completion of the stream however, I want to get the video characteristics such as (stream size, bitrate, frame rate, resolution and etc.) while streaming. I hope that you can provide me with a script to extract and generate a file that contains such information.

    


  • Secure Reliable Transport (SRT) passphrase & latency parameter setting

    5 mai 2021, par Shankar

    Hope you all are doing well.
I am trying to set parameters like passphrase and latency in srt url. But, i need to know whether while setting passphrase parameter, is it necessary to set pbkeylen value also ? If yes, then what is purpose of pbkeylen parameter in passphrase ? or what is role in that srt url of pbkeylen ?
Thank you.