Recherche avancée

Médias (91)

Autres articles (94)

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

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configuration spécifique pour PHP5

    4 février 2011, par

    PHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
    Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
    Modules spécifiques
    Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)

Sur d’autres sites (6348)

  • doc/faq : remove "-profile option fails when encoding H.264 video with AAC audio"...

    3 janvier 2014, par Stefano Sabatini
    doc/faq : remove "-profile option fails when encoding H.264 video with AAC audio" entry
    

    The error was fixed in commit ce9bd303794fcc94aa232c116bece13c5994b55b
    more than one year ago, and does not affect all the currently supported
    versions.

    In particular, fix trac issue #1535.

    • [DH] doc/faq.texi
  • RTSP/RTMP Video Streaming Client iOS [closed]

    28 mai 2015, par nathansizemore

    I’m in need of a open source solution/library to stream RTSP/RTMP to an iOS Application. I need to build an app that connects to a media server, and opens the provided video stream. I believe there has to be libraries out there, but I have yet to find one that is open source, compiles, actually works, and runs on iOS 5+, iPhone 4+. I do not have a preference, RTMP or RTSP will suffice. Preferably the one with the least amount of work. I have RTSP working on the Android side, but nothing for iOS yet.

    This is what I already know from research today -

    RTSP

    • Seems possible using Live555/FFMPEG
    • MooncatVenture Group - Old FFMPEG, not compatible with ARMv7s (No updates/blogs/commits in over a year)
    • DFURTSPPlayer - This is a working example.

    RTMP

    • Seems possible using Live555/FFMPEG
    • A few libraries are out there for data messaging, but that is all
    • MidnightCoders Project - Does not seem video support is build yet, as Audio is not.

    I’ve never messed with anything video related before, so encoding, frame rate, key frame, chunks, etc... is pretty foreign to me. Right now, it seems building a static binary from Live555/FFMPEG is the only solution to my problem. If so, can anyone give me a simple quickstart guide or links to a blog/example someone has out there ? I’m not looking for anything crazy, just a simple

    1. Download This - LINK
    2. Compile it like this - LINK
    3. Place it into X Folder in Xcode
    4. Create X Object
    5. Read Stream API here - LINK

    If not, anyone want to point me to a working open source library ?

    Oh yeah, this happens to be my first iPhone app and first time in Objective-C. Awesome first project, yeah ?

  • Using FFMPEG with Powershell

    19 mai 2017, par Caulen

    I am using Windows Server Edition 2012 and am very new to using Powershell. Basically, I am trying to convert a bunch of video files that are in a directory to .flv. The code I am using is this :

    $inProcessPath = "E:\Random Videos\In Process\$env:username\"

    $oldVideos = Get-ChildItem -Include @("*.mp4", "*.avi", "*.divx", "*.mov", "*.mpg", "*.wmv", "*.mkv") -Path $inProcessPath -Recurse #gets all of the videos

    cd "E:\FFMPEG\bin\"

    foreach ($oldVideo in $oldVideos) {
       $newVideo = [io.path]::ChangeExtension($oldSong.FullName, '.flv')
       .\ffmpeg.exe -i $oldVideo -y -async 1 -b 2000k -ar 44100 -ac 2 -v 0 -f flv -vcodec libx264 -preset superfast $newVideo
    }

    Whenever I run this I don’t get any error messages but ffmpeg doesn’t run either. I’m sure I’m overlooking something but have no idea what that could be. I’ve searched the website and compared code to others and still have no idea.

    Any help would be very much appreciated.