Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (26)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (4978)

  • avcodec/dvdsubdec, dvbsubdec : remove bitmap dumping in DEBUG builds

    28 mai 2022, par softworkz
    avcodec/dvdsubdec, dvbsubdec : remove bitmap dumping in DEBUG builds
    

    It's been a regular annoyance and often undesired.
    There will be a subtitle filter which allows to dump individual
    subtitle bitmaps.

    Signed-off-by : softworkz <softworkz@hotmail.com>
    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavcodec/dvbsubdec.c
    • [DH] libavcodec/dvdsubdec.c
  • Merging input Streams with nodejs/ffmpeg

    14 septembre 2020, par jAndy

    I'm creating a very basic and rudimentary Video-Web-Chat. On the client side, I'm going to use a simple getUserMedia API call to capture the webcam data and send video-data as data-blob to my server.

    &#xA;

    From There, I'm planning to either use the fluent-ffmpeg library or just spawn ffmpeg myself and pipe that raw data to ffmpeg, which in turn, does some magic and pushes that out as HLS stream to an Amazon AWS Service (for instance), which then gets actually displayed on a Web Browser for all participating people in the video chat.

    &#xA;

    So far, I think all of this should be fairly easy to implement, but I keep my head spinning around the question, how I can create a "combined" or "merged" frame and stream, so the output HLS data from my server to the distributing cloud service has only to be one combined data stream to receive.

    &#xA;

    If there are 3 people in that video chat, my server receives 3 data streams from those clients and combines these data streams (from the individual web-cam data sources) into one output stream.

    &#xA;

    How could that be accomplished ?&#xA;Can I "create" a new frame with ffmpeg, so to speak ? I would be very thankful if anybody could give me a heads up here, maybe I'm thinking in a complete wrong direction.

    &#xA;

    Another question which arises to me is, if I really can just "dump" any data, which I'm receiving from a binary blob created from getUserMedia or MultiStreamRecorder to ffmpeg or if I have to specify somewhere and somehow the exact codecs being used etc.?

    &#xA;

  • output of ffmpeg comes out like yamborghini high music video

    19 janvier, par chip

    I do this procedure when I edit a long video

    &#xA;

      &#xA;
    • segment to 3 second videos, so I come up with a lot of short videos
    • &#xA;

    • I randomly pick videos and put them in a list
    • &#xA;

    • then I join these short videos together using concat
    • &#xA;

    • now I get a long video again. next thing I do is segment the video 4 minute videos
    • &#xA;

    &#xA;

    After processing, the videos look messed up. I don't know how to describe it but it looks like the music video yamborghini high

    &#xA;

    For some reason, this only happens to videos I capture at night. I do the same process for day time footage, no problem.

    &#xA;

    is there a problem with slicing, merging and then slicing again ?

    &#xA;

    or is it an issue that I run multiple ffmpeg scripts at the same time ?

    &#xA;

    here's the script

    &#xA;

    for FILE in *.mp4; do ffmpeg -i ${FILE} -vcodec copy -f segment -segment_time 00:10 -reset_timestamps 1 "part_$( date &#x27;&#x2B;%F%H%M%S&#x27; )_%02d.mp4"; rm -rf $FILE; done; echo &#x27;slicing completed.&#x27; &amp;&amp; \ &#xA;for f in part_*[13579].mp4; do echo "file &#x27;$f&#x27;" >> mylist.txt; done&#xA;ffmpeg -f concat -safe 0 -i mylist.txt -c copy output.mp4 &amp;&amp; echo &#x27;done merging.&#x27; &amp;&amp; \ &#xA;ffmpeg -i output.mp4 -threads 7 -vcodec copy -f segment -segment_time 04:00 -reset_timestamps 1 "Video_Title_$( date &#x27;&#x2B;%F%H%M%S&#x27; ).mp4" &amp;&amp; echo &#x27;individual videos created&#x27;&#xA;&#xA;&#xA;

    &#xA;