Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (25)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • 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

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

Sur d’autres sites (5588)

  • Better solution for working with FFPlay in VB.net

    7 mars 2014, par Don Cullen

    I wanted to develop a simple visual tool that'd interface with FFPlay/FFMPEG to measure the loudness of any given audio. I'm doing this by having CMD invoke FFPlay/FFMPEG and logging the output the file and processing that file. I wanted to grab the data as FFPlay/FFMPEG output it directly, but it appears that I have to do it via CMD invocation, since invoking FFPlay directly in VB.net results in my not being able to grab the output.

    The function I'm using to achieve this works for the most part (other than crashing at the end due to the file that's being logged to being in use).

    The function can be seen here :
    http://pastebin.com/CtUngvNq

    I'm sure I can eventually figure out why it isn't correctly killing the process so the file can be opened, but I thought I'd check with StackOverflow. I'm not quite familiar with VB.net, so any and all constructive criticisms are welcome. Any suggestions/ideas for improvements would also be welcome. If there's a better solution to grabbing the output as opposed to invoking CMD to output the data to a file, I'm open to it.

    Thanks in advance for your assistance. If no assistance is possible, then don't sweat it, thanks anyway for reading and considering the matter !

  • How to get equal segment times using ffmpeg ?

    13 décembre 2015, par Abhay Cn

    I used the following command to split a video into segments :

    ffmpeg -i inputfile -c copy -map 0 -segment_time 5 -f segment outputfile

    But I got varying segment times ie. some segments were 5s, some were 2s and others were 8s. How do I correct this ?

  • What is solution for ffmpeg rtsp output stuck

    1er février 2016, par Long Bai

    I’m using ffmpeg in qt-mingw.
    I developed the sample program to write to the rtsp stream.
    It is working well when the rtsp url is regular.
    But it is stuck when the rtsp url doesn’t exit. For example, when i try to write to "rtsp ://noserver", my program is stuck on avformat_write_header().
    Is there any solution for this problem ?
    Thanks for your reply.