Recherche avancée

Médias (91)

Autres articles (86)

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

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

Sur d’autres sites (11712)

  • Loop/Batch file for extracting all .aac from .m4a files in folder

    29 décembre 2015, par MrDesperate

    I’m desperate. I need to extract the .aac stream from 1749 .m4a files with ffmpeg, but I can’t get a batch file working for me and it would take years to do it manually. This is what I use for single files : "ffmpeg -i example.m4a -vn -c:a copy example.aac"

    I don’t want to convert the files. I only want to extract the .aac audio stream (don’t wanna lose more quality).

    "ffmpeg -i *.m4a -vn -c:a copy *.aac" isn’t working and I don’t know how to use for in loops since I’m not a programmer. All loops I found on the internet aren’t working for me.

    OS : Windows 7 Professional.

    I appreciate every help.

  • Is there built in audio preprocessing within Android OS

    28 août 2022, par Larry lu

    I am running a dev team to build an Android application which the major feature is to record user voice and merge it into a long movie. It's a dub film application.

    


    One struggle thing to my dev team is whether the Android OS pre-process the recorded auido file. because we want the very original audio data from the built in Microphone.
If there is a built-in pre-processing inside of Android OS keep updating some data of the recorded aduio file, we want to know what is changed. We can't find any official post from Android speaking about it but would like to confirm from professional.

    


    Many thanks

    


  • How to replace timestamps in MP4 video with FFmpeg ?

    12 février 2021, par user15180344

    I have a fragmented MP4 video which has incorrect timestamps. I was told that I can calculate the correct timestamps using the MPD manifest of that video (taking data from <segmenttimeline></segmenttimeline> tag).

    &#xA;

    Could you please give me hints on how to actually calculate these timestamps, and, what's more important, how to replace the timestamps in video segments with the correct values ?

    &#xA;