Recherche avancée

Médias (1)

Mot : - Tags -/wave

Autres articles (76)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (2940)

  • avformat/crypto : add seeking support on read

    30 août 2016, par Simon Hailes
    avformat/crypto : add seeking support on read
    

    cyrpto allows reading of data which has been aes-128-cbc encrypted given a key and an iv. But it did not handle filetypes which require seeking... e.g. it failed on an encrypted .mp4 file.

    example :
    take 25.mp4 created with :
    ffmpeg -f lavfi -i sine=frequency=1000:beep_factor=2:r=48000:duration=720.0 -f lavfi -i testsrc=duration=720.0:rate=25 -vcodec libx264 -cmp 22 -timecode 10:00:00:00 -r 25 -y out\25.mp4

    encrypt with :
    openssl enc -aes-128-cbc -K 12345678901234567890123456789012 -iv 12345678901234567890123456789012 -in 25.mp4 -out 25.enc
    then to transcode in ffmpeg :
    ffmpeg -key 12345678901234567890123456789012 -iv 12345678901234567890123456789012 -i crypto:25.enc -vcodec mpeg4 -r 25 -y 25dec.mp4

    prior to this modification, the transcode would fail.

    Note also : crypto previously maked both reads and writes as streamed, which caused the whole file
    to be read before the transcode started. Now, for read only, if the underlying layer is not marked as streamed,
    then crypto is not. This should enable efficient reading of encrypted containers which require seeking.

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/crypto.c
  • mp4 generated by moviepy no sound with tweepy

    2 décembre 2020, par Will Rowe

    I'm using MoviePy to edit a mp4 file and then Tweepy to tweet out the video.

    &#xA;

    Here's what I have currently :

    &#xA;

    clip = VideoFileClip("c:/users/.../UNIQUENAME2.mp4").subclip(8) #cut off the first 8 seconds of the clip&#xA;clip.write_videofile("c:/users/.../UNIQUENAME2-finished.mp4")&#xA;clip.close()&#xA;highlightz = TweetMachine()&#xA;highlightz.makeAVidTweet(&#x27;c:/users/.../UNIQUENAME2-finished.mp4&#x27;,&#x27;audio test&#x27;)&#xA;

    &#xA;

    Here's my TweetMachine :

    &#xA;

    def makeAVidTweet(self,fileLoc,text):&#xA;        upload_result = self.api.media_upload(fileLoc)&#xA;        time.sleep(120) #wait just in case things are still processing&#xA;        media_ids = [upload_result.media_id_string]&#xA;        self.api.update_status(status=text, media_ids=media_ids)&#xA;

    &#xA;

    Currently, the video is cut fine and UNIQUENAME2-finished.mp4 is constructed correctly such that if I open the file on my computer, the video is cut correctly and the sound works. However, the video posted on Twitter has no sound.

    &#xA;

    I'm assuming it's some sort of issue with how MoviePy makes the mp4 file and Twitter not liking something with the sound settings, but I'm pretty unfamiliar with mp4 stuff and I couldn't find anything about it on the MoviePy or Tweepy docs.

    &#xA;

    Any tips or thoughts would be greatly appreciated !

    &#xA;

    Stream info from VLC :&#xA;Codec : MPEG Audio layer 1/2 (mpga),&#xA;Type : Audio,&#xA;Channels : Stereo,&#xA;Sample Rate : 44100 Hz,&#xA;Bits per sample : 32,&#xA;Bitrate : 128 kb/s

    &#xA;

  • arm : Check for the .arch directive in configure

    3 mai 2017, par Martin Storsjö
    arm : Check for the .arch directive in configure
    

    When targeting windows, the .arch directive isn’t available.

    So far, when building for windows, we’ve always used gas-preprocessor,
    both when using msvc’s armasm and when using clang. Lately, clang/llvm
    has implemented the last missing piece (altmacro support) for building
    our assembly without gas-preprocessor. This means that we now build
    for arm/windows with clang without any extra compatibility layer.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] configure
    • [DBH] libavutil/arm/asm.S