Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (37)

  • 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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (3202)

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