Recherche avancée

Médias (1)

Mot : - Tags -/framasoft

Autres articles (80)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

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

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

  • snow : Fix off by 1 error in reference picture management

    4 mai 2013, par Michael Niedermayer
    snow : Fix off by 1 error in reference picture management
    

    Fixes out of array accesses
    No release is affected by this bug

    Found-by : Mateusz "j00ru" Jurczyk and Gynvael Coldwind
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/snow.c
  • yt-dlp how to download a specific video using timestamps, and limiting the download resolution ?

    30 septembre 2023, par ignacM

    I am running a python program to download a video, this is the command I use :

    &#xA;

    command = [&#x27;powershell.exe ffmpeg&#x27;,&#xA;                   &#x27;-ss&#x27;, str(start),&#xA;                   &#x27;-i&#x27;, &#x27;$(yt-dlp&#x27;,&#xA;                   &#x27;-f&#x27;, &#x27;bestvideo[ext=webm]&#x27;,&#xA;&#xA;                   &#x27;-g&#x27;, &#x27;"%s")&#x27; % (url_base &#x2B; video_identifier),&#xA;                   &#x27;-t&#x27;, str(end - start),&#xA;                   &#x27;-c:v&#x27;, &#x27;libx264&#x27;, &#x27;-c:a&#x27;, &#x27;copy&#x27;, &#x27;%s&#x27; % output_filename]&#xA;&#xA;command = &#x27; &#x27;.join(command)&#xA;output = subprocess.check_output(command, shell=True, stderr=subprocess.STDOUT)&#xA;

    &#xA;

    This prints something like&#xA;powershell.exe ffmpeg -ss 10 -i $(yt-dlp -f bestvideo[ext=webm] -g "https://www.youtube.com/watch?v=Z15erfLqNKo") -t 10 -c:v libx264 -c:a copy C :\Users...\video.mp4

    &#xA;

    This works perfectly fine. However, I tried to download a video that had very high resolution (4K) and I want to limit the resolution when downloading. I have found that placing [height<=1080] as so should work :

    &#xA;

    powershell.exe ffmpeg -ss 10 -i $(yt-dlp -f bestvideo[ext=webm][height<=1080] -g "https://www.youtube.com/watch?v=Z15erfLqNKo") -t 10 -c:v libx264 -c:a copy C :\Users...\video.mp4

    &#xA;

    However this does not work for me and gives me the error :&#xA;Error command "" returned non-zero exit status 1.&#xA;Output : b'The system cannot find the file specified.\r\n'

    &#xA;

    I also have noticed that only limiting the resolution does not work for me either :

    &#xA;

    powershell.exe ffmpeg -ss 10 -i $(yt-dlp -f bestvideo[height<=1080] -g "https://www.youtube.com/watch?v=Z15erfLqNKo") -t 10 -c:v libx264 -c:a copy C :\Users...\video.mp4

    &#xA;

    Actually, placing [height<=1080] after bestvideo never works, no matter what I do.

    &#xA;

    What could be the problem ? Or what command can I run to achieve both tasks (limit resolution and download specific timeframe (not whole video and cutting it)) ?

    &#xA;

  • lavfi/curves : add plot option

    22 juillet 2016, par Clément Bœsch
    lavfi/curves : add plot option
    
    • [DH] doc/filters.texi
    • [DH] libavfilter/vf_curves.c