Recherche avancée

Médias (91)

Autres articles (104)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

Sur d’autres sites (13269)

  • Evolution #4393 (Rejeté) : Impossible d’up un plugin stable vers une branche dev

    18 octobre 2019, par jluc -

    creer_sprite est installé et actif en version 1.3.1 stable.

    Je voudrais installer la version 1.4 dev

    Je vérifie : il n’y a pas d’autres versions dans l’onglet "inactifs"

    Sur l’onglet "ajout plugin" je cherche sprite.
    SVP trouve le plugin et indique "1 plugin(s) correspondent aux critères choisis (nom). Sélectionnez ci-dessous les plugins que vous souhaitez télécharger et activer sur votre serveur."
    La liste présente un résultat : "Créer sprites CSS 1.4.0 - dev - déjà installé"

    Le problème c’est que :
    - la version "1.4.0 dev" n’est pas déjà installée, c’est la version "1.3.1 stable" qui l’est
    - aucun bouton ou checkbox ne permet pour l’installer

    Si je désactive "1.3.1 stable" alors il devient possible d’installer et activer "1.4.0 dev".

    Ce serait très aidant si SPIP proposait de le faire, ou au moins si le message était complété par la précision : "En raison du changement d’état (stable -> dev), vous devez désactiver la version actuelle de ce plugin avant d’installer cette version plus récente" ... ou par le message adéquat.

  • How to trim a video file at a precise position without re-encoding using FFMPEG [closed]

    2 août 2024, par Wassim Erriha

    I am having trouble trimming video files without causing the Video/Audio to go out of sync.
From what I understand, using the seek argument -ss before or after the input file results in two different behaviors. 
For Example :

    



    ffmpeg  -ss 00:00:00.600 -i in.mp4 -c copy out.mp4 


    



    This produces a trim with accurate A/V sync but a rough audio trim (trim happens at a video key frame and not the precise seek value)

    



    ffmpeg  -i in.mp4 -ss 00:00:00.600 -c copy out.mp4


    



    This produces a more accurate audio trim but causes A/V to go out of sync. Frames after the trim position are dependent on frames before the trim position.These frames are assigned negative timestamps and copied to output file, which results in video being out of sync with audio during playback.

    



    On the other hand,

    



    ffmpeg  -i "in.mp4" -ss 00:00:00.600 -strict -2 out.mp4


    



    This produces a more precise trimming and A/V sync.
The trim task takes a long time to run and results in quality loss.

    



    My Question is :
Is there a way to get an accurate trim without re-encoding the video ?
maybe by discarding the extra frames at the beginning that cause the A/V to get out of sync.
In my case, I can live with a few black frames in the beginning, as long as the audio is trimmed at the precise position and A/V sync is preserved.
Is it possible to accomplish this using FFMPEG ?
if not, can MediaCodec on Android handle such precision when trimming ?

    



    Thanks for your time.

    


  • avcodec/ra144enc : Fix invalid left shift of negative number

    22 janvier 2020, par Andreas Rheinhardt
    avcodec/ra144enc : Fix invalid left shift of negative number
    

    by replacing it with a multiplication. Said multiplication can't
    overflow an int32_t because lpc_coefs is limited to 16 bit precision.

    Fixes the FACE-test acodec-ra144 as well as part of #8217.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/ra144enc.c