Recherche avancée

Médias (0)

Mot : - Tags -/tags

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (45)

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

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (5473)

  • Android video saves as type "file" instead of video format

    25 novembre 2015, par Marc Rasmussen

    So I have a website where I allow people to upload a video from their phone and send it to their friends.

    Now Iphone works well because it is usually an .mov file. However when I attempt on my android (Samsung galaxy) I get FileType : file

    Howere is an image from my filezilla as to what has been uploaded :

    enter image description here

    The highlighted are the files uploaded from the android device.

    Can anyone tell me why this is happening ? and how I can make sure that it is a video ? and/or convert it into a mp4 format.

  • AudioQueue bytes to ffmpeg understandable WAV format

    24 décembre 2015, par moeseth

    I got the recorded AudioQueueBufferRef buffer using the following code.

    NSData *data = [NSData dataWithBytes:inBuffer->mAudioData length:inBuffer->mAudioDataByteSize];

    And then, I send the data to my server. However, FFMPEG isn’t able to read that because the data is not in any audio standard format.

    It’s just plain data.

    So, how do I do either on iPhone or backend ffmpeg to convert that raw buffer to WAV ?

    Thank so much.

  • ffmpeg iOS and SDL2

    24 décembre 2015, par user3487978

    I created a app for iPhone, the core source is based on the latest ffplay.c, I just changed the rendering part to support iOS, general it can play video, but I found the quality is not as good as enough, see screenshot below, the first image is the what expected, the second is image that my app on iPhone produced, and the last the produced by my app on iPad.
    on the iPhone’s image, you can found there is a dash line, and the colour is not correct, it seems that there is a shadow of the image.
    I am new to ffmpeg, can anyone help me what is the problem