Recherche avancée

Médias (1)

Mot : - Tags -/ogv

Autres articles (32)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • 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

  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

Sur d’autres sites (6966)

  • Issue with downloading read-only recordings on Teams [closed]

    26 août 2023, par Ankit

    I have been following this guidance to download read-only Microsoft Teams recordings until last month (early July'23) successfully. But now when I am trying the same steps and everything, I am getting some error (given below for reference).

    


    The code that I am trying in CMD -

    


    ffmpeg -i "PASTE_YOUR_COPIED_REQUEST_URL_HERE" -codec copy NAME_OF_DOWNLOADFILE.mp4


    


    The error that I am getting now -

    


    [tls @ <some number="number">] Error in the pull function.&#xA;[tls @ <some number="number">] IO error: Error number -10054 occurred&#xA;[in#0 @ <some number="number">] Error opening input: Error number -10054 occurred&#xA;Error opening input file &#xA;Error opening input files: Error number -10054 occurred&#xA;</some></some></some>

    &#xA;

    I am running Windows 10 Enterprise 64-bit version.

    &#xA;


    &#xA;

    I have tried the following things, but they didn't help -

    &#xA;

      &#xA;
    1. Tried downloading inherently downloadable recordings (that are un-protected, non view-only videos)
    2. &#xA;

    3. Removing some parts of the URL as highlighted/suggested by some Reddit users
    4. &#xA;

    5. Tried different browsers (Edge and Chrome)
    6. &#xA;

    7. Tried refreshing my ffmpeg folder with latest version
    8. &#xA;

    9. Tried running the command in cmd with 'Run as Administrator' option
    10. &#xA;

    &#xA;

    Please suggest how shall I download read-only Teams recording using either ffmpeg or some other tool ?

    &#xA;

  • lavu/tx : invert permutation lookups

    27 février 2021, par Lynne
    lavu/tx : invert permutation lookups
    

    out[lut[i]] = in[i] lookups were 4.04 times(!) slower than
    out[i] = in[lut[i]] lookups for an out-of-place FFT of length 4096.

    The permutes remain unchanged for anything but out-of-place monolithic
    FFT, as those benefit quite a lot from the current order (it means
    there's only 1 lookup necessary to add to an offset, rather than
    a full gather).

    The code was based around non-power-of-two FFTs, so this wasn't
    benchmarked early on.

    • [DH] libavutil/tx.c
    • [DH] libavutil/tx_priv.h
    • [DH] libavutil/tx_template.c
  • Cut a video in between key frames without re-encoding the full video using ffpeg ?

    1er septembre 2020, par bguiz

    I would like to cut a video at the beginning at any particular timestamp, and it need to be precise, so the nearest key frame is not good enough.

    &#xA;

    Also, these videos are rather long - an hour or longer - so I would like to avoid re-encoding this altogether if possible, or otherwise only re-encode a minimal fraction of the total duration. Thus, would like to maximise the use of -vcodec copy.

    &#xA;

    How can I accomplish this using ffmpeg ?

    &#xA;

    NOTE : See scenario, and my own rough idea for a possible solution below.

    &#xA;


    &#xA;

    Scenario :

    &#xA;

      &#xA;
    • Original video&#xA;
        &#xA;
      • Length of 1:00:00
      • &#xA;

      • Has a key frame every 10s
      • &#xA;

      &#xA;

    • &#xA;

    • Desired cut :&#xA;
        &#xA;
      • From 0:01:35 through till the end
      • &#xA;

      &#xA;

    • &#xA;

    • Attempt #1 :&#xA;
        &#xA;
      • Using -ss 0:01:35 -i blah.mp4 -vcodec copy, what results is a file where :
      • &#xA;

      • audio starts at 0:01:30
      • &#xA;

      • video also starts at 0:01:30
      • &#xA;

      • this starts both the audio and the video too early
      • &#xA;

      &#xA;

    • &#xA;

    • using -i blah.mp4 -ss 0:01:35 -vcodec copy, what results is a file where :&#xA;
        &#xA;
      • audio starts at 0:01:35,
      • &#xA;

      • but the video is blank/ black for the first 5 seconds,&#xA;
          &#xA;
        • until 0:01:40, when the video starts
        • &#xA;

        &#xA;

      • &#xA;

      • this starts the audio on time,&#xA;but the video starts too late
      • &#xA;

      &#xA;

    • &#xA;

    &#xA;


    &#xA;

    Rough idea

    &#xA;

      &#xA;
    • (1) cut 0:01:30 to 0:01:40&#xA;
        &#xA;
      • re-encode this to have new key frames,&#xA;including one at the target time of 0:01:35
      • &#xA;

      • then cut this to get the 5 seconds from 0:01:35 through 0:01:40
      • &#xA;

      &#xA;

    • &#xA;

    • (2) cut 0:01:40 through till the end&#xA;
        &#xA;
      • without re-encoding, using -vcodec copy
      • &#xA;

      &#xA;

    • &#xA;

    • (3) ffmpeg concat the first short clip (the 5 second one)&#xA;with the second long clip
    • &#xA;

    &#xA;

    I know/ can work out the commands for (2) and (3), but am unsure about what commands are needed for (1).

    &#xA;