Recherche avancée

Médias (1)

Mot : - Tags -/wave

Autres articles (80)

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

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

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (7057)

  • Record Seemeless HD Video with ffmpeg libxh264

    3 octobre 2016, par Hannan

    I want to Record HD Video from HD Cam through ffmpeg. I want to encode the video as it is recorded. I am using the following script but the problem is after about 18 minutes it starts loosing frames with an error " non monotonous DTS in output stream"

    this is the script i am using :

    ffmpeg -f dshow -rtbufsize 1000000k -s 1280x720 -i video="HuddleCamHD":audio="Microphone (3- USB PnP Audio Device)" -map 0:v -b:v 8000k -map 0:a -s 1280x720 -vcodec libx264 -preset ultrafast -r 30 -rtbufsize 1000000k -acodec aac -b:a 320k "D:\VideoPutput.avi"

    A help would be nice thank you.

  • Record creation time of video on GoPro

    7 septembre 2016, par Dzung Nguyen

    How do I record the creation time of the video exactly to ms level ?

    I am able to the start time, but only to minutes :

    ffprobe -v quiet input.mp4 -print_format json -show_entries stream=index,codec_type:stream_tags=creation_time:format_tags=creation_time
  • Android square video record with post proccessing

    27 avril 2014, par bakua

    I to allow users in my app to record video and then post process it. Basically all I need is to video to be square (low res, something about 400x400) and when recording is done then allow user to modify brightness/contrast.

    I did some research on that and found ffmpeg library which can do that. But I’m not sure if I am ok with its licensing. When I use ffmpeg do I have to release my app sources as well ? My app will be free to download and use but I am not comfortable with its releasing sources.

    Also about that square recording - as I am supporting API 14, android doesn’t let me adjust resolution directly. There are 2 ways I think of :

    1. Record video file in 640x480, then resize/crop and after that allow user to do post processing. - totally need ffmpeg for that
    2. Capture CameraPreviewFrames - crop them as they go and render them into mp4 video, and after video is rendered then allow user to post process it further - need ffmpeg for that as well.

    My question is then - may I use ffmpeg without any worries about licensing etc ?
    Or is there any other library which allows me to do above and is open to use ?

    Thanks very much