Recherche avancée

Médias (0)

Mot : - Tags -/images

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

Autres articles (73)

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

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • 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

Sur d’autres sites (5213)

  • Play video with FFmpeg in Mac OS

    8 mai 2018, par Maks Ovcharuk

    Need to play video with FFmpeg programmatically in Xcode. We have command line utility, but don’t have controls and components to play (like AVPlayer in AVFoundation).

    Here code in swift 4 :

       let process = Process()
       process.launchPath = Bundle.main.path(forResource: "ffmpeg", ofType: "")
       process.arguments = ["-i", Bundle.main.path(forResource: "mov", ofType: "mov")!, "-f", "opengl"]

       let pipe = Pipe()
       process.standardOutput = pipe

       process.launch()
       process.waitUntilExit()

       let data = pipe.fileHandleForReading.readDataToEndOfFile()
       let output = NSString(data: data, encoding: String.Encoding.utf8.rawValue)
  • MP4 Videos on website embed with html5 does not play on iOS

    31 août 2012, par Sidner

    So I have a couple of videos on my website that I shot using the iPhone 4 and then converted to mp4, webm and ogg, so that I can use them with html5. Thing is, the video does not play at all on the 4 iOS devices that I tested and neither on Chrome for Android.

    The Chrome issue could be because some of the mp4 are actually m4v files, but still after encoding with handbrake a video to the iphone 4 presset and in mp4 format, it still does not play.

    What happens, you ask ? Well, it shows the play button crossed out with a diagonal bar, the debug console on Safari does not show any message untill I try to access the video directly. Then it says : QuickTime Movie could not be played.

    What can I do ? I have been trying to encode with ffmpeg, have tried a handful of different solutions, some even found here on stackoverlow, but to no avail. The videos do get shorter, both in display size and MBs, but nothing works to fix the issue at hand.

    I've been trying to get this corrected for a couple of weeks now. Any help and/or suggestions are welcome.

    Thank you.

    By the way, all the videos are on a registred users section of the website, but I have one for debugin on the main page, so feel free to test.

    https://sidnerwebsite.sytes.net

  • Looking for a multimedia SDK (open source or paid) which can play audio (.mp3, .aac) and video (.mp4 etc.)

    8 avril 2022, par AhmadH

    I would like to embed audio (and video) files in my cross platform application.
Searching for an SDK with below functionality :

    


      

    1. Play audio - .mp3,.aac (are must) & other common formats
    2. 


    3. Play video - .mp4 & other common formats
    4. 


    5. Audio recording would be an added advantage.
    6. 


    7. Open source or affordable price
    8. 


    


    [ Note : FFmpeg is not an option due to some License restriction]

    


    **Anything that has all FFmpeg properties would be ideal.

    


    Looking online but haven't found any suitable option.
Please help.