Recherche avancée

Médias (0)

Mot : - Tags -/publication

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

Autres articles (98)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Que fait exactement ce script ?

    18 janvier 2011, par

    Ce script est écrit en bash. Il est donc facilement utilisable sur n’importe quel serveur.
    Il n’est compatible qu’avec une liste de distributions précises (voir Liste des distributions compatibles).
    Installation de dépendances de MediaSPIP
    Son rôle principal est d’installer l’ensemble des dépendances logicielles nécessaires coté serveur à savoir :
    Les outils de base pour pouvoir installer le reste des dépendances Les outils de développements : build-essential (via APT depuis les dépôts officiels) ; (...)

Sur d’autres sites (14742)

  • libswscale : fix compiler warnings enumerated type mixed with another type

    14 mars 2015, par Himangi Saraogi
    libswscale : fix compiler warnings enumerated type mixed with another type
    

    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DBH] libswscale/swscale_unscaled.c
  • html5 video client side optimization

    3 décembre 2014, par Withfriendship Hiox

    I am using flowplayer and doing video quality selection as in the following page :

    Flowplayer quality selection

    User choose a quality and plays the video like 160p, 260p, 530p etc depending on their Internet speed to load the video quickly. However in the server side I have to encode the original video using Ffmpeg into each of these resolutions and store them.

    So it doing like video_1234_low.mp4, video_1234_mid.mp4, video_1234_high.mp4, etc. and switch the source to that video depending on which the user selects. This consumes a lot of drive space for large videos.

    Is there any possibility to load the video quickly without storing these files. Dynamic conversion on demand is difficult because it takes time. I wonder is there any client side trick to reduce the download size and play low quality video.

  • Cannot invoke initializer for type ’UnsafeMutablePointer’ with an argument list of type ’(Int32 ?)’

    28 mars 2018, par Law Gimenez

    I am trying to implement some methods and pointers of ffmpeg to Swift but converting it to Swift is a little complex. What does this error mean ?

    Cannot invoke initializer for type ’UnsafeMutablePointer’ with an argument list of type ’(Int32 ?)’ ?

    Code is below

    let pictureFrameData = av_malloc(Int(numBytes))
                                   var test = frame?.pointee.linesize.0.
                                   av_image_fill_arrays(UnsafeMutablePointer(frameRGB?.pointee.data.0),
                                                        UnsafeMutablePointer<int32>(frame?.pointee.linesize.0)!,
                                                        pictureFrameData,
                                                        frameRGB?.pointee.format,
                                                        frameRGB?.pointee.width,
                                                        frameRGB?.pointee.height,
                                                        1)
    </int32>

    the error is at this line UnsafeMutablePointer<int32>(frame?.pointee.linesize.0)</int32>