Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (82)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    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 (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

Sur d’autres sites (11237)

  • How to merge audio with the processed video for real time streaming ?

    23 septembre 2019, par Padfoot

    I am detecting objects on a RTMP video+audio stream. The output, object detected video stream doesn’t contain audio in it. How to merge the audio back to the output for real-time video+object streaming output ?

    I am using YOLO in darknet C framework. The FPS is 40. Also the output stream needs to be in 25-30 FPS.

  • nginx video mp4 streaming - jwplayer seeking

    18 juin 2012, par abrahab

    As you can see nginx streaming solution works and return different content-length when flv requested with start parameter :
    http://www.hotgirlscompany.com/1.flv?start=0
    http://www.hotgirlscompany.com/1.flv?start=300000

    But the problem that jwplayer v5 can not seek this video to any position. Seems (from http sniffer) player request ?start=0 and then ignore any mouse clicks at loading line, and can not go to position I want).

    Of course, I added provider=http to flashVars.
    You can download the video and see that its converted as H.264/AAC. Then maked mp4box -inter 500 1.flv. But still can not steam it :(

    Any suggestions ?
    Maybe example how to property reconvert this video with ffmpeg to make it playable ?

  • transcode segment files without stutter for http live streaming

    28 juillet 2015, par zerocap

    I segmented a multicast video stream into small ts files for my HTTP live streaming service and it worked quite well. Then I found the bitrate of the source was too high (1.5mbps) so I set up a background job to transcode the ts files to a smaller bitrate (500kbps) using FFmpeg. The problem is that the 500k .m3u8 playback stutters(on every new file’s loading) and is not as smooth as the 1.5mbps one.

    My transcoding command line is like following :

    ffmpeg -i /home/rca/tst.ts -f mpegts -acodec libmp3lame -ar 48000 -ab 64k -vcodec libx264 -b 500k /home/rca/tst.ts

    Any ideas for this ? Thank you !