Recherche avancée

Médias (1)

Mot : - Tags -/wave

Autres articles (36)

  • 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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (4044)

  • ffmpeg timelapse resets PTS on frame size change

    19 avril 2024, par Ral

    I have 601 sequential images, they change size and aspect ratio on frame 36 and 485, creating 3 distinct sizes of images in the set.

    


    I want to create a timelapse and shave off the first 200 frames and only show the remaining 401, but if I do a trim filter on the input, the filter treats each of the 3 sections of different sized frames as separate 'streams' with their own reset PTS, all of which start at the exact same time. This means the final output of the below commmand is only 249 frames long instead of 401.

    


    How can I fix this so I just get the final 401 frames ?

    


    ffmpeg \
-framerate 60 \
-i "./%07d.jpg" \
-filter_complex "
 [0]scale=1000:1000[in1];
 [in1]trim=start_frame=200[in2];
 [in2]setpts=PTS-STARTPTS
 " \
-r 60 -y trimmed.webm


    


    Filters like setpts=N/(60*TB) or setpts=PTS-SETPTS after the scale to try and fix the frame times also seem to change nothing.

    


    If I remove the trim and pts reset, the timelapse exports all 601 perfectly.
If I remove the pts reset and leave the trim, it exports 449 frames starting on frame 0.

    


    There's no errors or warning associated with the problem, other than the debug states the input reaches EOF on frame 449. (which is 485-36, the two section lengths, for some reason)

    


    I understand pre-processing the image sizes is a way to fix this, but I'd like to understand why this isn't possible in one command.

    


    version 6.0-6ubuntu1, but also happens on 6.1 and 5.1.

    


    Even if I whittle it down to the bare minimum, it still incorrectly exports 450 frames :

    


    ffmpeg -i "./%07d.jpg" -filter setpts=PTS-STARTPTS -y tpad.webm

    


  • Anomalie #2388 : formulaires CVT multi-etapes et formulaires_editer_objet_charger

    1er novembre 2011, par Severo Lipari

    bon, au final, une solution qui semble marcher if (is_numeric($id_entidad) && intval($id_entidad)==$id_entidad) $valeurs = formulaires_editer_objet_charger(’chat’,$id_chat,$id_rubrique,$lier_trad,$retour,$config_fonc,$row,$hidden) ; else $valeurs = array() ; $valeurs[’nom’] = ’’ ; (...)

  • Anomalie #2717 (Nouveau) : Ne pas proposer de sauvegarde si on n’a pas sqlite

    20 mai 2012, par Gilles VINCENT

    sqlite est facultatif lors de l’installation de SPIP3.0 - On s’attend logiquement à ce que ce soit pareil pour la sauvegarde mais ce n’est pas le cas. le bug #2135 a été fermé en disant qu’il existe un plugin qui permet de rétablir les anciens dump au format xml, mais l’utilisateur final, lui, (...)