Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (97)

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

  • 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" ;

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

Sur d’autres sites (7184)

  • Merge two or more video files of any format using FFmpeg in iPhone

    20 juillet 2012, par Subhash

    Is there any direct command in FFmpeg to merge videos in iPhone. I need to do this programmatically by setting the command line argument to the FFmpeg containing the input movie files to merge and the output file name.


    I just wanted to merge two .mov movie files using FFmpeg. I was trying to do this in iPhone where I was creating a command line argument containing two video fies to merge as an input parameter and the destination video file as output parameter and then calling main method of FFmpeg. But for merging videos using FFmpeg first we need to convert it to mpg format and then pass the movie files in mpg format in the command line format. This is the only way found to merge the video using FFmpeg as far as I know. Is there anybody out there done this in a different way ?

  • YUV to RGB by Shader on iPhone

    27 octobre 2012, par user1333656

    Currently I am developing a video player using FFMPEG.
    I'm trying to convert YUV420P to RGB by Shader to reduce performance hit and I could see it works fine. The problem is caused when I try to change image size.

    Case 1. YUV to RGB is perfect. but the image is not exactly fit to Texture Bounds.
    For example, if i play 640x360 video, right (640-512) part is cropped and bottom (512-360) is filled with green colored rectangle.

    FRAME_X=512; //This is texture size
    FRAME_Y=512;

       avpicture_fill((AVPicture *) f, [currentVideoBuffer.data mutableBytes],
                  enc->pix_fmt,
                  FRAME_X, FRAME_Y);

       av_picture_copy((AVPicture *) f, (AVPicture *) avFrame,
                   enc->pix_fmt,
                   enc->width, enc->height);

    ....

    int yuvWidth= FRAME_X ;
    int  yuvHeight= FRAME_Y;
    glBindTexture ( GL_TEXTURE_2D, textureIdY );
    glTexImage2D(GL_TEXTURE_2D, 0, GL_LUMINANCE,
    yuvWidth, yuvHeight, 0, GL_LUMINANCE, GL_UNSIGNED_BYTE, y_channel);


    glBindTexture ( GL_TEXTURE_2D, textureIdU );
    glTexImage2D(GL_TEXTURE_2D, 0, GL_LUMINANCE,
    yuvWidth/2, yuvHeight/2, 0, GL_LUMINANCE, GL_UNSIGNED_BYTE, u_channel);

    glBindTexture ( GL_TEXTURE_2D, textureIdV );
    glTexImage2D(GL_TEXTURE_2D, 0, GL_LUMINANCE,
    yuvWidth/2, yuvHeight/2, 0, GL_LUMINANCE, GL_UNSIGNED_BYTE, v_channel);

    Case 2. If i set actual image size to texture size, then image is exactly fit to texture but the color of image is a little bit strange. It has too much green color.

    Does anybody give me some clues for this ??
    Thanks in advance.

  • How to convert iphone's caf to ogg on ubuntu

    24 novembre 2012, par Amure Pinho - Syncmobile

    i really need your support to solve that problem :

    We developed an iOS application that sends a sound file to our server and then, we share this audio.

    The problem is we didnt find any solution to convert the audio inside the iOS.

    We tought : Ok, thats a problem, but we can still convert the audio in the server right ?

    We are trying to make this using afconvert, ffmpeg but with no sucess.

    Do you have any basic guide or hint so we can write this in our server application and convert all the .CAF files to another format like OGG or MP3 ?

    Thanks a lot !