Recherche avancée

Médias (1)

Mot : - Tags -/publicité

Autres articles (23)

  • 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

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

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (5956)

  • Merge commit ’0f3a0b24dd6f595feaa4526e52ffa7d05c3d7840’

    28 mai 2013, par Michael Niedermayer
    Merge commit ’0f3a0b24dd6f595feaa4526e52ffa7d05c3d7840’
    

    * commit ’0f3a0b24dd6f595feaa4526e52ffa7d05c3d7840’ :
    wavpack : add an error message to a failure.
    wavpack : return 0 instead of samples count from decoding functions

    Conflicts :
    libavcodec/wavpack.c

    Merged-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/wavpack.c
  • use ffmpeg in vba to change video format

    12 juin 2013, par Iban Arriola

    I want to change the video format of the embedded videos that appears in a presentation. I achieve to export the video file to another folder using the following code :

           Dim Finame As Variant
           Dim oApp As Object
           Dim StoreFolder As Variant
           Dim Videoname As Variant
           Dim FileNameFolder As Variant

           MkDir "C:\template\videoZip"

           Set oApp = CreateObject("Shell.Application")
           FileNameFolder = "C:\template\videoZip\"
           Finame = ActivePresentation.Path &amp; "\" &amp; ActivePresentation.Name
           StoreFolder = "C:\template\created_files\"
           oApp.Namespace("C:\template\videoZip\").CopyHere Finame
           Name "C:\template\videoZip\" &amp; ActivePresentation.Name As "C:\template\videoZip\" &amp; ActivePresentation.Name &amp; ".zip"


           oApp.Namespace(FileNameFolder).CopyHere oApp.Namespace("C:\template\videoZip\" &amp; ActivePresentation.Name &amp; ".zip").items

           Dim firstCount As Integer
           Dim lastCount As Integer

           For j = 1 To videoNum
               firstCount = oApp.Namespace(StoreFolder).items.count
               Videoname = "C:\template\videoZip\ppt\media\media" &amp; j &amp; ".mp4"
               oApp.Namespace(StoreFolder).CopyHere Videoname
               lastCount = oApp.Namespace(StoreFolder).items.count
               If firstCount = lastCount Then
                   MsgBox "The video has problems loading and it will not be shown (Only mp4 supported)"
               End If
           Next j

           Set objFSO = CreateObject("Scripting.FileSystemObject")
           objFSO.deletefolder "C:\template\videoZip"
       End If

    As I said, with this peace of code I can get all the videos that are in the presentation. Now I want to change the format of them. I heard that it is possible using ffmpeg. Other solutions to change format are welcome too.

  • how to use ffmpeg to do video compression in android [duplicate]

    26 février 2014, par user963241

    This question already has an answer here :

    I tried to compile the ffmpeg to shared library to android

    where can i find the jni ffmpeg sample code to reduce the video size ?
    thanks.