Recherche avancée

Médias (1)

Mot : - Tags -/framasoft

Autres articles (75)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (9953)

  • sidxindex : Don’t adjust the Period start time depending on the track start time

    28 novembre 2014, par Martin Storsjö
    sidxindex : Don’t adjust the Period start time depending on the track start time
    

    This was only necessary to get playback to start with dash.js 1.2.0,
    it has been fixed in the git version.

    The previous behaviour was incorrect - the Period’s start time
    is irrespective of the actual first timestamp of the contents
    within the period. The Period start time only says when, within the
    global timeline, this particular piece should start to be played
    back.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] tools/sidxindex.c
  • How to extract part of audio using youtube-dl ?

    2 janvier 2019, par Vishesh Sharma

    I am using windows 10 and I would like to know how to extract part of the audio from youtube videos using the cmd.

  • I need a way to calculate time differentials between 2 time variables in Batch

    9 juillet 2022, par Youcef

    first of all here's my little batch script project that I wrote really quickly for video processing convenience with ffmpeg

    &#xA;

    set start="00:01:52.000"&#xA;set finish="00:01:52.000"&#xA;set /A duration=24&#xA;set /A resolution=1080&#xA;set /A framerate=60&#xA;set /A filesizeinMB=8&#xA;set /A bitrate=(%filesizeinMB%*8192)/%duration%&#xA;&#xA;"%~dp0ffmpeg.exe" -ss %start% -i "%~1" -c:v libvpx-vp9 -an -pass 1 ^&#xA;-t %duration% -b:v %bitrate%k -crf 12 -vf fps=%framerate%,scale=-1:%resolution% ^&#xA;-auto-alt-ref 1 -lag-in-frames 25 -row-mt 1 -map_metadata -1 ^&#xA;-f null NUL&#xA;&#xA;"%~dp0ffmpeg.exe" -ss %start% -i "%~1" -c:v libvpx-vp9 -an -pass 2 ^&#xA;-t %duration% -b:v %bitrate%k -crf 12 -vf fps=%framerate%,scale=-1:%resolution% ^&#xA;-auto-alt-ref 1 -lag-in-frames 25 -row-mt 1 -map_metadata -1 ^&#xA;-f webm "%~dp0%~n1.webm"&#xA;

    &#xA;

    As of now, I'm manually imputing start, and duration for the script to work. For convenience, I would like a way to only input start and finish variables without bothering with duration, and having it something like

    &#xA;

    set /A duration=%finish%-%start%&#xA;

    &#xA;

    but before doing that I need to convert the time strings into simple integers or fractionals (seconds of course) And i'm kind of in a loss about how I would approach this&#xA;Some help would be greatly appreciated, thank you

    &#xA;