Recherche avancée

Médias (0)

Mot : - Tags -/metadatas

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (76)

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

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (6538)

  • I want to copy files from one folder to another in my dedicated server

    18 mars 2015, par Mr KaMaL

    I placed files in my root folder and copy when user try to download the files
    like

    /root/filelocation/file.mp3

    when user on download page

    copy("/root/filelocation/file.mp3","download/file.mp3");

    i use this command but it takes too much load time

    i have ffmpeg installed in server also

  • Can ffmpeg convert a file that is still downloading ?

    12 mai 2017, par Matt Low

    Is there any way I can begin converting a file (m4a, mkv etc..) to mp3 while it’s still being downloaded ?

    My Problem :

    At the moment when I try to convert a file that is still being downloaded, the output mp3 gets cut off (most likely wherever the download was up to when conversion began)

    e.g only 20 second mp3 output while the real, fully downloaded mp4 is 5 minutes in length

    FFMPEG seems to convert only as much data as it receives in the beginning.

    Why is this a problem :

    Converting always takes longer than downloading (no risk of conversion overtaking the download). I don’t want to waste time waiting for the entire file to download when I see an opportunity for so much time to be saved

  • Using a HLS m3u8 or DASH mpd as ffmpeg input : seeking performance

    21 septembre 2020, par coder_uk

    I wonder if any FFMPEG wizards can help with this :

    


    I've seen examples (like FFmpeg code not working on http url for thumbnail extraction) of using a http URL as the input but so far only with an .mp4.

    


    If I were to instead use an ABR .m3u8/.mpd as the input (which, though a text file, does represent a video) ... is FFMPEG smart enough to work with it ? To parse it ? So ... if I gave it a 5 hour HLS VOD m3u8 as input (-i http...), and asked it for a frame at 4 hours in (-ss), would it only download that one 10s segment at the 4-hours point ? And so only need to download a small 10 second .ts file. Or does it download the whole thing ?

    


    Thanks.