Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (62)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

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

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

Sur d’autres sites (7232)

  • How to calculate the "Range" header for mp4 file to play/download a part of it ? [youtube-dl]

    5 décembre 2016, par supersan

    I’m using youtube-dl to download videos from YouTube. Unfortunately, sometimes I just need to download a part of the video like 10 seconds of a 3 hour video and here is how I see I can do it.

    Step 1 : Get the URL of the mp4 file from youtube-dl.

    youtube-dl -g -f "[ext=mp4]" https://www.youtube.com/watch?v=qOZ1u9VpoMk

    This returns $url : the full URL of mp4 file on server.

    Step 2 : Download part of the video using curl

    curl -r $startBytes-$endBytes $url

    But how to calculate $startBytes and $endBytes. What is the formula for that ?

    P.S I was thinking could be something as simple but this isn’t it..

    $startBytes = (total_size_of_video / total_length_of_video_secs) * start_seconds

    P.P.S. When I play the mp4 video in Chrome and use the scrub bar to jump around in the video, Chrome too send the Range header to the same URL (as I can see in fiddler)

  • matroskadec : partly revert "demux relevant subtitle packets after a seek"

    26 novembre 2016, par Rainer Hochecker
    matroskadec : partly revert "demux relevant subtitle packets after a seek"
    

    This reverts parts of c16582579b1c6f66a86615c5808cd5b2bf17be73. The hard
    coded 30 seconds are a lot, and finishing the seek can takes several
    seconds when the source is on a network share. Remove this code
    entirely, because it does more bad than good.

    (Commit message provided by committer, based on the original messages
    by the patch author.)

    Signed-off-by : Rainer Hochecker <fernetmenta@online.de>
    Signed-off-by : wm4 <nfxjfg@googlemail.com>

    • [DH] libavformat/matroskadec.c
  • ffmpeg crashing for large "-filter_complex_script" inputs

    5 février 2016, par user1605871

    We’re experiencing an issue where ffmpeg seg faults for very large
    "-filter_complex_script" input files (roughly 3MB). The input file
    consists of a very large number of drawbox filters.
    The same processing pipeline works fine for smaller files, but seems
    to have an issue as the file size increases. Is there a hard limit to
    how large this file can be ? If so, is there a "magic number"
    somewhere that we can increase and re-compile from source ?

    Does anyone have any other thoughts or advice ?

    Thanks in advance !