Recherche avancée

Médias (1)

Mot : - Tags -/getid3

Autres articles (67)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • 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 ;

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (6122)

  • How can I fix a audio delay caused by a batch trim of the start and end of a video file

    15 mai 2019, par trozz

    When using this ffmpeg batch trimmer I found on here - will be posted down below in "show code" Tried to format it correctly, but I’m new here so.

    It causes the audio to be delayed by 100 milliseconds. Is there a way to fix this in the same bat file, or maybe after with another edit ?

    Thanks

    @Echo Off
    SetLocal

    Set "ext=mp4"

    Set "opts=-v quiet"

    Set "opts=%opts% -print_format "compact=print_section=0:nokey=1:escape=csv"

    Set "opts=%opts% -show_entries "format=duration""

    If Exist *.%ext% (If Not Exist "Trimmed\" MD Trimmed)

    For %%a In (*.%ext%) Do Call :Sub "%%~a"

    Exit/B

    :Sub

    For /f "Tokens=1* Delims=." %%a In (
       'FFProbe %opts% %1') Do (Set/A "ws=%%a-7.85" & Set "ps=%%b")

    rem If %ws% Lss 20 GoTo :EOF

    Set/A hh=ws/(60*60), lo=ws%%(60*60), mm=lo/60, ss=lo%%60

    If %hh% Lss 10 Set hh=0%hh%

    If %mm% Lss 10 Set mm=0%mm%

    If %ss% Lss 10 Set ss=0%ss%

    FFMpeg -i %1 -ss 00:00:04.5000 -to %hh%:%mm%:%ss%.%ps:~,3% -c:v copy -c:a copy "Trimmed\%~1"
  • Trimming video with filter complex [closed]

    9 février 2024, par David González

    I'm developing a video editor application. I'm using ffmpeg to trim a video with -filter_complex, as I need later to keep adding filters to the audio and the video. These commands are made dynamically. I cannot use -ss -to option.

    


    Yet, I'm finding an issue when I try to trim, as it's only trimming the end of the video and not the start.

    


    This is one example of the command I'm using :

    


    ffmpeg -i input.mp4 -filter_complex "[0:v]trim=start=00\:00\:02.000:end=00\:00\:10.092,setpts=PTS-STARTPTS[v0];[0:a]atrim=start=00\:00\:02.000:end=00\:00\:10.092,asetpts=PTS-STARTPTS[a0]" -map "[v0]" -map "[a0]" -c:v mpeg4 output.mp4


    


    Any help would be much appreciated !
Thanks !

    


    UPDATE

    


    The problem was with the escape characters. Using \\\: instead of \: worked for me !

    


  • ansi : process ESC[3m italics attribute

    18 février 2020, par Peter Ross
    ansi : process ESC[3m italics attribute
    

    squelch unknown escape code warnings

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Peter Ross <pross@xvid.org>

    • [DH] libavcodec/ansi.c