Recherche avancée

Médias (91)

Autres articles (78)

  • 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

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

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

Sur d’autres sites (9612)

  • Split single video input files into 30 second blocks

    6 juin 2016, par Ycon

    I am trying to split several video files (.mov) into 30 second blocks.

    I do not need to specify where the 30 seconds start or finish.

    EXAMPLE- A single 45 second video (VID1.mov) will be split into VID1_part1.mov (30 seconds), VID1_part2.mov (15 seconds). Ideally, I can remove audio too.

    I made an attempt, using bash (osx), but was unsuccessful. It did not split the video into multiple parts- instead it just seemed to modify the original file (and made it into a length of 1-2 seconds) :

    find . -name '*.mov' -exec ffmpeg -t 30 -i \{\} -c copy \{\} \;
  • How to split multiple videos 2.24 seconds before the end

    15 décembre 2019, par Leendert

    I have a folder with 100 videos, I need to split all videos into 2, the split needs to happen 2 seconds before the end of every video.

    I want to keep both parts of the video after the split.

    So far I have the code below, this will trim 2 seconds from the end of every video that is in de same folder as the .bat file.
    It will put the new videos inside of a folder called ’new files’.
    The problem is that the length of the video is not trimmed. Only audio and video. So the last 2 seconds will just be the last frame and no audio.

    for %%a in ("*.mp4") do ffmpeg -i "%%a" -filter_complex "[0]trim=2,setpts=PTS-STARTPTS[b];[b][0]overlay=shortest=1" -shortest -c:a copy "newfiles\%%~na.mp4" pause
  • Best way to split multi channel audio file in Swift [on hold]

    8 mars 2016, par amkaufman

    I’m currently working on an iOS project in which I need to be able to split a multi-channel .AAC file. I’m still fairly new to iOS development and Swift and am not sure if the frameworks that I have seen will be able to do this.

    So far I have looked into AVFoundation and FFmpeg, but I’m still not sure if they would be able to do this.

    After looking into AudioKit’s documentation I am still a bit lost on how to actually split the file into its separate channels. Where exactly should I be looking ?