Recherche avancée

Médias (0)

Mot : - Tags -/flash

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (29)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (3751)

  • arm : hevc_qpel : Fix the assembly to work with non-multiple of 8 widths

    25 août 2021, par Martin Storsjö
    arm : hevc_qpel : Fix the assembly to work with non-multiple of 8 widths
    

    This unbreaks the fate-checkasm-hevc_pel test on arm targets.

    The assembly assumed that the width passed to the DSP functions is
    a multiple of 8, while the checkasm test used other widths too.

    This wasn't noticed before, because the hevc_pel checkasm tests
    (that were added in 9c513edb7999a35ddcc6e3a8d984a96c8fb492a3 in
    January) weren't run as part of fate until in
    b492cacffd36ad4cb251ba1f13ac398318ee639a in August.

    As this hasn't been an issue in practice with actual full decoding
    tests, it seems like the actual decoder doesn't call these functions
    with such widths. Therefore, we could alternatively fix the test
    to only test things that the real decoder does, and this modification
    could be reverted.

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

    • [DH] libavcodec/arm/hevcdsp_qpel_neon.S
  • FFMpeg Upscaling issue

    12 septembre 2020, par user14266881

    Hello so I created a bat file. CMD opens for a quick second and then closes, and if I open it again with the file it generated, it asks me do I want to overwrite it

    &#xA;

    FFMpeg not working, after opening Bat File

    &#xA;

    This is the bat file I created.

    &#xA;

    cd D:\sexy renders\Upscaling&#xA;ffmpeg  -i CONVERT.mp4 -vf scale=3840:2160:flags=neighbor -c:v h264_nvenc -profile high -preset slow -rc vbr_2pass -qmin 17 -qmax 22 -2pass 1 -c:a:0 copy -b:a 384k VIDEO.mp4&#xA;

    &#xA;

    Also to add, I've went to Advanced System Settings -> Advanced -> Environment Variables -> Path -> New -> D :\sexy renders\ffmpeg\bin

    &#xA;

  • What am I doing wrong ? Tweepy with ffmpeg

    27 août 2020, par pigeonburger

    I'm trying to get this code to pull the media from any tweet that mentions my twitter handle, convert it using ffmpeg via the subprocess module, then send the converted media back to the person as a reply ? Is this all correct ?&#xA;

    I am also getting an error at tweet_media = clean_data[&#x27;entities&#x27;][&#x27;media&#x27;][&#x27;media_url&#x27;] and I don't understand what I'm doing wrong there (Exception has occurred : TypeError&#xA;list indices must be integers or slices, not str&#xA;line 32, in on_data&#xA;tweet_media = clean_data['entities']['media']['media_url'])

    &#xA;

    Also is there a better way to use ffmpeg with python that I am not aware of ?

    &#xA;

    Here is the code I wrote that I'm trying to use :

    &#xA;

    import tweepy&#xA;from tweepy import Stream&#xA;from tweepy.streaming import StreamListener&#xA;from datetime import datetime&#xA;import time&#xA;import subprocess&#xA;&#xA;stdout = subprocess.PIPE&#xA;def runcmd(cmd):&#xA;    x = subprocess.Popen(cmd, stdout=subprocess.PIPE)&#xA;    return x.communicate(stdout)&#xA;&#xA;print(" TWITTER BOT")&#xA;time.sleep(1.5)&#xA;print(" By PigeonBurger, updated 26 August 2020 \n")&#xA;&#xA;import json&#xA;import random&#xA;&#xA;class StdOutListener(StreamListener):&#xA;    def on_data(self, data):&#xA;        clean_data = json.loads(data)&#xA;        tweetId = clean_data[&#x27;id&#x27;]&#xA;        tweet_name = clean_data[&#x27;user&#x27;][&#x27;screen_name&#x27;]&#xA;        tweet_media = clean_data[&#x27;entities&#x27;][&#x27;media&#x27;][&#x27;media_url&#x27;]&#xA;        tweet_photo = runcmd(&#x27;ffmpeg -i tweet_media output.jpg&#x27;)&#xA;        print(clean_data)&#xA;        tweet = &#x27;Here ya go&#x27;&#xA;        now = datetime.now()&#xA;        dt_string = now.strftime("%d/%m/%Y %H:%M:%S")&#xA;        print(&#x27; Reply sent to @&#x27;&#x2B;tweet_name, &#x27;on&#x27;, dt_string, &#x27;\n&#x27; &#x27; Message:&#x27;, tweet, &#x27;\n&#x27;)&#xA;        respondToTweet(tweet_photo, tweet, tweetId)&#xA;&#xA;def setUpAuth():&#xA;    auth = tweepy.OAuthHandler("consumer_key", "consumer_secret")&#xA;    auth.set_access_token("access_token", "access_token_secret")&#xA;    api = tweepy.API(auth)&#xA;    return api, auth&#xA;&#xA;def followStream():&#xA;    api, auth = setUpAuth()&#xA;    listener = StdOutListener()&#xA;    stream = Stream(auth, listener)&#xA;    stream.filter(track=["@YOUR_TWITTER_HANDLE"], is_async=True)&#xA;&#xA;def respondToTweet(tweet_photo, tweet, tweetId):&#xA;    api, auth = setUpAuth()&#xA;    api.update_with_media(tweet_photo, tweet, in_reply_to_status_id=tweetId, auto_populate_reply_metadata=True, stall_warnings=True)&#xA;&#xA;if __name__ == "__main__":&#xA;    followStream()&#xA;

    &#xA;