Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (41)

  • Les statuts des instances de mutualisation

    13 mars 2010, par

    Pour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
    Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...)

  • L’espace de configuration de MediaSPIP

    29 novembre 2010, par

    L’espace de configuration de MediaSPIP est réservé aux administrateurs. Un lien de menu "administrer" est généralement affiché en haut de la page [1].
    Il permet de configurer finement votre site.
    La navigation de cet espace de configuration est divisé en trois parties : la configuration générale du site qui permet notamment de modifier : les informations principales concernant le site (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

Sur d’autres sites (6367)

  • Streaming video from nodejs to an open player

    27 août 2013, par Matthew Young

    Odd ball question for somebody just getting started with html5 players and streaming video....

    When using YouTube long videos can be scrolled towards then end then played from there. Assuming YouTube first pulls down metadata like total video start/stop points and a bunch of thumbnails for scrolling.

    Is this possible with an open html5 video player (like projekkter) ? Reason asking is that I have video data inside a mongo database that I would like to stream similar to the YouTube player.

    Inside mongo I have a bunch of smaller h264 files each in a document : actual raw h264 usually 1000kb (max 2 seconds), creation timestamp (long), and potentially a converted format (like mp4) for known clients. Idea is to query off a time range and order by creation time then piping the results into readable stream. There is a nice ffmpeg module to take streams and reformat if needed. Thought about piping the stream to the client with binaryjs and appending it into the player.

    But the source directives in the documentation are usually URLs plus I need to lock down the start/stop point for the total video being played plus thumbnails.

  • ffmpeg mp4 to mp3 conversion error 'no such file'

    11 juin 2016, par Thomas R.

    I’m using ffmpeg to convert mp4’s to mp3’s, about 124 videos total, and I’m using python to iterate through the files they’re in and executing a version of ffmpeg -i pathtovideo/video.mp4 pathtoaudio/audio.mp3 to convert them.

    When I use this command on its own in terminal, it converts just fine, but calling from the python script (using os) it says pathtoaudio/audio.mp3: No such file or directory but of course there isn’t, I’m asking the computer to generate this file. Any ideas for what might be going wrong or how to fix ?

  • ffmpeg mp4->mp3 conversion 'no such file'

    10 juin 2016, par Thomas R.

    I’m using ffmpeg to convert mp4’s to mp3’s, about 124 videos total, and I’m using python to iterate through the files they’re in and executing a version of ffmpeg -i pathtovideo/video.mp4 pathtoaudio/audio.mp3 to convert them.

    When I use this command on its own in terminal, it converts just fine, but calling from the python script (using os) it says pathtoaudio/audio.mp3: No such file or directory but of course there isn’t, I’m asking the computer to generate this file. Any ideas for what might be going wrong or how to fix ?