Recherche avancée

Médias (1)

Mot : - Tags -/illustrator

Autres articles (74)

  • 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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (8384)

  • Translating a multiple line terminal command into a single line terminal command

    5 décembre 2019, par andy stumpf

    Does anyone have any direction or suggestion on how to translate this command into a single line command ? I need to keep this in a terminal command and no use a shell. Thank you so much for any help and direction.

       for event in */; do
       (
       echo "$event"
       cd "$event"
       for segment in */; do          
           (                      
               cd "$segment"
               echo "$segment"          
               for f in *-0.ts; do
                   (
                       echo $f
                   )
               done
               (printf "file '$PWD/%s'\n" *.ts | sort -n -k1.$(($(printf "file '$PWD/$f'" | wc -c) - 4))) > fraglist.txt
               ../../ffmpeg -f concat -i fraglist.txt -c copy ../../"${segment[@]%.hls/}.ts"
           )
       done
       )
    done

    I’ve tried something like the following but the outcome is not the same

    for s in *.*; do ffmpeg -f concat -i <(for f in $s/*.ts; do echo 'file '$PWD/$f''; done) -c copy ${s[@]%.hls/}.ts; done
  • Anomalie #2542 : forum interne

    8 mars 2012, par Ben .

    confirmé : forum.log ::::::::::::: : Mar 08 16:50:23 127.0.0.1 (pid 5299) :Pri:ERREUR : /home/ben/www/spip-3.0/extensions/forum/inc/forum_insert.php_59Erreur insertion forum sur objet=’’, id_objet=

  • ffmpeg + Raspberry Pi 4b + stream_loop CPU optimization

    14 avril 2020, par beamercola

    I'm making a Pi livestreaming covid tracker, but watching my CPU/RAM get decimated

    



    VBR="2500k"
FPS="30"
QUAL="medium"
YOUTUBE_URL="rtmp://a.rtmp.youtube.com/live2"
KEY="..."
TEXTFILE="message.txt"

ffmpeg \
    -re -stream_loop -1 \
    -i a.mp4 \
    -vf "drawtext=fontfile=font.ttf:fontsize=30: \
    fontcolor=white:x=(w-text_w)/2:y=(h-text_h)/2:textfile=$TEXTFILE:reload=1" \
    -vcodec libx264 -preset $QUAL -r $FPS \
    -f flv "$YOUTUBE_URL/$KEY"


    



    When I run that, top gives me %CPU 282 %MEM 4.0

    



    I installed ffmpeg with sudo apt-get ffmpeg

    



    I'm not sure if I'm using hardware acceleration. It was brought up in a number of posts that were a year old or so.