Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (50)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • 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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (10816)

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

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

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