Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (41)

  • Utilisation et configuration du script

    19 janvier 2011, par

    Informations spécifiques à la distribution Debian
    Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
    Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
    Récupération du script
    Le script d’installation peut être récupéré de deux manières différentes.
    Via svn en utilisant la commande pour récupérer le code source à jour :
    svn co (...)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (6422)

  • FFMPEG Add recording to this command

    4 août 2019, par Jorge Forero

    Raspberry Pi IP camera on my network broadcasting to a web browser. I want to save 10 minutes long video clips. This is the line :

    raspivid  -t -0 -w 1080 -h 720 -awb auto -fps 30 -b 1200000 -o - |ffmpeg -loglevel quiet -i - -vcodec copy -an -f flv -metadata streamName=myStream tcp://0.0.0.0:6666&

    Following a youtube tutorial I managed to watch my rpi ip camera on the browser but I want to record myself sleeping to detect any breath interruption.

    raspivid  -t -0 -w 1080 -h 720 -awb auto -fps 30 -b 1200000 -o - |ffmpeg -loglevel quiet -i - -vcodec copy -an -f flv -metadata streamName=myStream tcp://0.0.0.0:6666&

    Works fine ! I only want to add recording to a file 10 minutes videos (in chronological order if it’s possible)

  • restreaming with ffmpeg and ffserver

    13 mars 2014, par Dnaso

    I have been looking all over stack and the net and cannot find the answer (or one that works for me anyway). I have a cerevo liveshell pro which is a video encoder (pretty damn good too). In its RTSP server mode, I am able to watch audio and video on iphone and android. However, It can only hold 3 connections. I want to restream this stream NO encoding of any type on ffserver. Is this possible ? Everything I have tried so far does not open. If I disable my audio in the config file it works and if i disable video and just push audio it works, but both will not. Also I do not want to use ffmpeg if I do not have to because I am not re encoding the stream, since it is already encoded in the correct format, I just want to restream it !.

    ffmpeg -i rtsp://xxx  -vcodec copy -acodec copy http://lclhst:8090/feed1.ffm


    <stream>
      format rtp
      videoCodec libx264
      AudioCodec aac
       I also have global headers for audio and video.
    </stream>

    has anyone been able to fix or surpass the issue ?

  • webRTC issue converting from webm+wav to mp4

    16 janvier 2015, par DevStarlight

    After I got my .webm video and my .wav audio I decided to join it into an .mp4 file container.

    I followed the library of muaz-khan ffmpeg-asm.js to do this conversion but when It finished, I got the blob which apparently was empty of video but after I downloaded I could reproduce it on my windows media player.

    This is the code I have created for this test : jsfiddle

    Checking some other sources, I found that there is another guy who reported the problem directly to muaz-khan 1 month ago webrtc-experiment.com (Last comment).

    I don’t think it’s a problem related to conversion, I rather think is much more a problem of codecs.

    How could I solve this problem (if it’s possible to solve it) in order to watch my videos ?

    Thanks in advice.