Recherche avancée

Médias (1)

Mot : - Tags -/3GS

Autres articles (107)

  • Publier sur MédiaSpip

    13 juin 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

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

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (11925)

  • Console windows displayed during python script execution [closed]

    15 janvier 2020, par vivitare

    i’m trying to create a Youtube converter with python and Tkinter.
    The problem is during the conversion with ffmpeg encoder, a console appear. But I don’t want to display her.

    Windows console displayed during encoding with ffmpeg

    Is there a parameter or something like that to disable this console ?

    I’m using this code to launch dowlnoad and youtube-dl do the rest :

    ydl_opts = {
       'format': 'bestaudio/best',
       'postprocessors': [{
           'key': 'FFmpegExtractAudio',
           'preferredcodec': 'mp3',
           'preferredquality': '192',
       }],
       'logger': MyLogger(),
       'progress_hooks': [my_hook],
    }
    with youtube_dl.YoutubeDL(ydl_opts) as ydl:
       ydl.download(['https://www.youtube.com/watch?v=BaW_jenozKc'])
  • FFmpeg streaming

    24 mars 2023, par hayso

    I am using ffmpeg for streaming. But when i start watch it the stream always stuck for the first 30 40s after that is good.
I am trying to achieve fast and smooth starting

    


    The command i use
ffmpeg -y -nostdin -hide_banner -err_detect ignore_err -loglevel warning -start_at_zero -copyts -vsync 0 -correct_ts_overflow 0 -avoid_negative_ts disabled -max_interleave_delta 0 -probesize 1000000 -analyzeduration 10000000 -progress 903dd5e68006.txt -i "http://example.com" -vcodec copy -acodec copy -sn -f hls -hls_segment_type mpegts -hls_init_time 2 -hls_time 10 -hls_allow_cache 1 -hls_start_number_source epoch -hls_ts_options "mpegts_flags=+initial_discontinuity:mpegts_copyts=1" -hls_delete_threshold 5 -hls_list_size 5 -hls_flags delete_segments+discont_start+omit_endlist -hls_segment_filename /storage/903dd5e6800

    


    i tried to +- analyzeduration, probesize and hls timing, but without success.
The source that i used is stable.

    


  • every 3 seconds will pause 1 second repeat until the end of the video [FFMpeg]

    7 septembre 2020, par Monti

    I have a video I want to watch for 3 seconds, then pause for 1 second and repeat it until the end of the video. Please help me complete it thank you. This is but what I have tried.

    


    I want it to repeat at the end of the video and also the audio to pause every 3 seconds the audio pause 1 second until the video ends

    


     ffmpeg -i 1.mp4 -vf select='not(between(t\3\,4)' -vsync vfr output.mp4