Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (66)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

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

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (9095)

  • Change resolution of a video using FFmpeg

    10 septembre 2013, par Gonzalo Solera

    I need to decrease the resolution of a file programatically in Android, but there isn´t any class to do that. So I found that I could do it using FFmpeg with this code :

    ffmpeg -y -i /sdcard/in.mp4 -vf transpose=3 -s 320x240 -r 15 -aspect 3:4 -ab 12288 -vcodec mpeg4 -b 2097152 -sample_fmt s16 /sdcard/out.mp4

    How could I execute this code in my app ?? I know there are a version of FFmpeg adapted to Android but I don´t know anything about native code in Android.

    Thanks for help !!

  • Decrease video resolution

    9 septembre 2013, par Gonzalo Solera

    I need to change programmatically the resolution of diferent video files. I want to decrease them so I suppose it wouldn´t be a problem.
    I need to decrease the video resolutions from higher resolutions to 480.

    I think I could use FFmpeg to do that (using the android version ffmpeg4android) but I´m not sure it will work so I´m waiting for alternatives or a confirmation.

    Thanks for help !!

  • How to decrease video resolution

    9 septembre 2013, par Gonzalo Solera

    I need to decrease the resolution of a video. My app reads videos recorded by the phone and by other devices too, so changing the camera recording options won´t help me. I need to decrease the video resolutions from higher resolutions to 480.

    I have just read that I could use FFmpeg, but I don´t know how to implement it in my project and next use it.

    Thanks for the help !!