Advanced search

Medias (1)

Tag: - Tags -/pirate bay

Other articles (23)

  • Publier sur MédiaSpip

    13 June 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • MediaSPIP Core : La Configuration

    9 November 2010, by

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes; une page spécifique à la configuration de la page d’accueil du site; une page spécifique à la configuration des secteurs;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques de (...)

  • Configuration spécifique pour PHP5

    4 February 2011, by

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

On other websites (6424)

  • configure: add nvcc to CMDLINE_SET

    16 April 2018, by Timo Rothenpieler
    configure: add nvcc to CMDLINE_SET
    

    This was somehow forgotten and nobody noticed until now.

    • [DH] configure
  • ffmpeg/sox audio processing: Merging files with envelope changes

    2 October 2020, by March Hare

    So I have two audio files. One is a music bed with an intro that segues into a looping music clip (let's call this *1). The second is the voice over audio track (referenced as *2, length n).

    


    Audio *1 is fixed, while the voice over (*2) is downloaded about 3 times a day, and can vary in length. *1 is longer than we ever expect *2 to be.

    


    What I need to do is

    


      

    1. Alter the overall gain of *1 to -7.5 dB
    2. 


    3. Begin merging VO *2 at time m, while reducing the volume envelope of *1 by -11 dB. This is fixed based on the length of the intro.
    4. 


    5. Fade everything out to -∞ dB around the end of *2
    6. 


    7. Trim off the silence at the end.
For reference, the total length of the final track should be m+n.
    8. 


    


    Unfortunately, I'm not versed enough with ffmpeg or sox to know exactly what I'm after here, and a lot of the examples tend to do one thing or another and aren't always clear when combining happens. I didn't get a lot of prior notice about this coming down the pipeline, so I'd like to get something relatively quick. We're able to do all of this stuff nicely in Adobe Audition (and I can do something similar in Audacity), but the idea is to automate it. For our envelope adjustments, we were just using linear ramps rather than smoothsteps, and that sounded fine.

    


    The TLDR: The VO track *2 governs how long the file winds up being, while audio bed *1 needs to be ducked when *2 begins, and the whole thing faded out right when *2 ends.

    


    We also have an automation system (radio station automation, specialized for something different than I need), so in a pinch if we have to just cut off the audio at the end of *2, we can get the fadeout from the radio automation system.

    


    I've been using the information at this link to some effect (specifically the bit about ffmpeg volumes), but it still isn't dynamic enough for the situation.
Envelope pattern in SoX (Sound eXchange) or ffmpeg

    


    Anyone have any advice on this one? I've got Sox and ffmpeg available, and if need be I can probably install other tools as well.

    


  • Capturing network video using opencv

    3 September 2014, by Subhendu Sinha Chaudhuri

    I am using ffserver and ffmpeg combination to capture web camera video and transmit it through my network.

    I want to capture this video using opencv and python from another computer.
    I can see the video (cam1.asf) in the browser of another computer. But my opencv + python code could not capture any frame.

    Code for ffserver

    HTTPPort 8090
    HTTPBindAddress 0.0.0.0
    MaxHTTPConnections 2000
    MaxClients 1000
    MaxBandWidth 2000

    <feed>
      File ./tmp/feed1.ffm
      FileMaxSize 1G
      ACL allow 127.0.0.1
    </feed>

    <stream>
     Feed feed1.ffm
     Format asf
     VideoCodec msmpeg4v2
     VideoFrameRate 30
     VideoSize vga
    </stream>

    FFmpeg

    $ffmpeg -f video4linux2 -i /dev/video0 192.168.1.3 /cam1.ffm

    This stream can be seen in the browser

    But with opencv code

    import sys
    import cv2.cv as cv
    import numpy

    video="http://http://192.168.1.3:8090/cam1.asf"
    capture =cv.CaptureFromFile(video)
    cv.NamedWindow('Video Stream', 1 )
    while True:
     # capture the current frame
     frame = cv.QueryFrame(capture)
     #if frame is None:
      # break
     #else:
       #detect(frame)
     cv.ShowImage('Video Stream', frame)
     if cv.WaitKey(10) == 27:
       print 'ESC pressed. Exiting ...'
       break

    I donot get any output in the stream

    My aim is to work with the web camera video both at the base station (ie where the web camera is connected) and also at the network location