Recherche avancée

Médias (1)

Mot : - Tags -/swfupload

Autres articles (111)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • 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

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (8768)

  • Updated requirements to Widget Factory 1.9+.

    24 octobre 2012, par Sebastian Tschan

    m README.md Updated requirements to Widget Factory 1.9+.

  • fate/vcodec : Fix test requirements

    23 avril 2022, par Andreas Rheinhardt
    fate/vcodec : Fix test requirements
    

    This automatically fixes the requirements of the fate-seek-vsynth*
    tests (e.g. 16 of the 49 such tests are now automatically disabled
    if the scale filter is disabled).

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] tests/fate/vcodec.mak
  • Output file names with spaces to file without quotes in bash

    13 mai 2020, par user245115

    So, I wrote a script as a batch file that uses FFmpeg to "concat" several video files on my hard drive.&#xA;The script is as follows.

    &#xA;&#xA;

    @echo off&#xA;title Printing video info...&#xA;(for %%i in (&#xA;"%USERPROFILE%"/Dropbox/Video1.MKV&#xA;"%USERPROFILE%"/Dropbox/Video2.MKV&#xA;S:/Exports/Video3.MKV&#xA;../../video/Video4.mkv&#xA;) do ( if exist "%%i" echo file &#x27;%%i&#x27; )) > "%~n0.txt"&#xA;type "%~n0.txt"&#xA;title Copying to compiled video...&#xA;"C:\Program Files\ffmpeg\bin\ffmpeg.exe" -hide_banner -f concat^&#xA;                  -safe 0 -y -i "%~n0.txt" -c copy "%~n0.mkv"&#xA;

    &#xA;&#xA;

    The problem here is the username on the computer has a space in the name, so the script doesn't work. If I put the quotes with %USERPROFILE%, then the file is detected by the batch script, but the batch script also puts the quotes into the output TXT file, which causes FFmpeg to fail when it hits that file.

    &#xA;&#xA;

    The contents of the text file the script outputs to should be :

    &#xA;&#xA;

    file &#x27;C:\Users\Name/Dropbox/Video1.MKV&#x27;&#xA;file &#x27;C:\Users\Name/Dropbox/Video2.MKV&#x27;&#xA;file &#x27;S:/Exports/Video3.MKV&#x27;&#xA;file &#x27;../../video/Video4.mkv&#x27;&#xA;

    &#xA;