Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (102)

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

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (11898)

  • split a video with overlap between segments

    6 mai 2017, par John Pankowicz

    I need to split a video into a sequence of segments like the following : (numbers are mm:ss) 00:00 to 03:05, 03:00 to 06:05, 06:00 to 09:05, etc. In other words, each segment will have 5 seconds of overlap with the following segment. The purpose of this is for a transcription program. Each 3 minute segment will be transcribed separately. The 5 seconds of overlap will help in stitching the transcribed text segments back together.

    Do I need to extract each 3 minute and 5 second segment separately ? For example, by doing the following :

    ffmpeg -ss 00:03:00 -i in.mp4 -t 00:06:05 -vcodec copy -acodec copy -y out.mp4

    Or is there a way to do all the segments in one pass ?

    [ Project is : Govmeeting ]

  • avfilter/vf_chromanr : split inner loops

    6 décembre 2022, par Paul B Mahol
    avfilter/vf_chromanr : split inner loops
    

    Makes overall faster processing in default case.

    • [DH] libavfilter/vf_chromanr.c
  • Is it possible to split frame accurate an AAC file using FFmpeg ?

    12 mai 2019, par CAHbKA

    What I did :

    # create source material
    ffmpeg -y -i some.file -c:a libfdk_aac -profile:a aac_he -b:a 128k -ar 44100 source.m4a

    # split into two parts
    ffmpeg -y -ss 00:00:00 -i source.m4a -to 6 -c copy part1.m4a
    ffmpeg -y -ss 00:00:06 -i source.m4a -c copy part2.m4a

    # re-encode only the first part with the same setting as source file
    fmpeg -y -i part1.m4a -c:a libfdk_aac -profile:a aac_he -b:a 128k -ar 44100 part1reencoded.m4a

    # create file list to be concatenated
    echo 'ffconcat version 1.0
    file part1reencoded.m4a
    file part2.m4a' > my.list

    # finally concatenate both parts
    ffmpeg -y -f concat -safe 0 -i my.list -c copy parts.m4a

    # play the result
    ffplay parts.m4a

    Unfortunately, the result file has noises at 00:00:06.

    Is it possible to split frame accurate an AAC file using FFmpeg ?