Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (55)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

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

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

Sur d’autres sites (5819)

  • Ffmpeg error : Rotate thumbnail image of video

    9 septembre 2016, par user3418135

    Iam using ffmpeg to generate thumbnail image from a video .mov (uploaded from iPhone)

    This is PHP code on live server to generate :

    public static function generateThumbnail($inputUrl, $outputUrl) {
       $cmd = "ffmpeg -i ".$inputUrl." -ss 00:00:01 -vframes 1 -s 200x200 ".$outputUrl;
       exec($cmd);
    }

    On live server (CentOS 6.5) : If I run this cmd in terminal, it working. But if I run by calling above function php then thumbnail image will be rotated -90 degrees.

    If i run two cases on localhost (LinuxMint 17.2) then all ok.

    Thanks all.

  • How do I access the ipod-library for decoding ffmpeg in the xcode ?

    16 janvier 2014, par M_On

    Thank you to look at my question.

    There is a problem with too slow to access the music file using ffmpeg.

    Get the URL of the music that is in the ipod-library by using the 'valueForProperty:MPMediaItemPropertyAssetURL' method.

    Use the (AVAssetExportSession Class) TSLibraryImport.m, extract the music files from ipod-library.

    However, I took the extraction time is too long. (4 seconds of the 3GS iPhone, iPhone 5 is 1 second)

    It was not possible to be decoded using FFmpeg If you do not the Export.

    In order to use FFmpeg, it's AVPlayer can not be used.

    I will never forget the grace if you can answer if you folded to know how other maybe.

  • How do I access the ipod-library for decoding ffmpeg ?

    16 janvier 2014, par M_On

    Thank you to look at my question.

    There is a problem with too slow to access the music file using ffmpeg.

    Get the URL of the music that is in the ipod-library by using the 'valueForProperty:MPMediaItemPropertyAssetURL' method.

    Use the (AVAssetExportSession Class) TSLibraryImport.m, extract the music files from ipod-library.

    However, I took the extraction time is too long. (4 seconds of the 3GS iPhone, iPhone 5 is 1 second)

    It was not possible to be decoded using FFmpeg If you do not the Export.

    In order to use FFmpeg, it's AVPlayer can not be used.

    I will never forget the grace if you can answer if you folded to know how other maybe.