Advanced search

Medias (91)

Other articles (41)

  • Pas question de marché, de cloud etc...

    10 April 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

  • HTML5 audio and video support

    13 April 2011, by

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

  • Support audio et vidéo HTML5

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

On other websites (6492)

  • Uncomplete path recognition (FFmpeg) [duplicate]

    23 September 2022, by Francesco Battisti

    The script should download an entire playlist (only one song for this test) from YT and convert all the downloaded MP4 to MP3:

    


    from distutils import extension
from pytube import Playlist
import os

link = input("Enter YouTube Playlist URL: ")

yt_playlist = Playlist(link)

for video in yt_playlist.videos:
    downloaded_file = video.streams.filter(only_audio=True).first().download(r"C:\Users\Francesco\Desktop\Music\JC's\+++NEW+++")
    file, extension = os.path.splitext(downloaded_file)
    # Convert video into .mp3 file
    os.system('ffmpeg -i {file}{ext} {file}.mp3'.format(file=file, ext=extension))


    


    Now, when I put the playlist's url in input, the script downloads the song but it can't convert it because:

    


    C:\Users\Francesco\Desktop\Music\JC's\+++NEW+++\Ariete: No such file or directory


    


    but the right path is:

    


    C:\Users\Francesco\Desktop\Music\JC's\+++NEW+++\Ariete - LULTIMA NOTTE Testo  Lyrics


    


    so it stops when is there a space in directory name...

    


  • Minimal configure flags to configure png files to mp4 and gif?

    24 April 2012, by Jona

    I'm trying to configure and build ffmpeg only with the most minimum libraries needed to read set of images of png type and convert those images into a movie. The movie output support I need are gif and mp4.

    I was able to get mp4 output but gif output I can't get it to work just crashes or exist without errors.

    Could not find input stream matching output stream #1.0

    There might be some extra configure flags that can be removed too...

    Here is my configure:

    ./configure \
    --target-os=linux \
    --prefix=$PREFIX \
    --enable-cross-compile \
    --extra-libs="-lgcc" \
    --arch=arm \
    --enable-gpl \
    --enable-version3 \
    --enable-nonfree \
    --sysroot=$NDK_SYSROOT \
    --extra-cflags="-I../x264 -Ivideokit -O3 -fpic -DANDROID -DHAVE_SYS_UIO_H=1 -Dipv6mr_interface=ipv6mr_ifindex -fasm -Wno-psabi -fno-short-enums  -fno-strict-aliasing -finline-limit=300 $OPTIMIZE_CFLAGS " \
    --extra-ldflags="-L../x264 -Wl,-rpath-link=/usr/lib -L/usr/lib  -nostdlib -lc -lm -ldl -llog" \
    --disable-shared \
    --enable-static \
    --enable-stripping \
    --enable-asm \
    \
    --disable-ffplay \
    --disable-ffprobe \
    --disable-ffserver \
    --disable-doc \
    --disable-network \
    \
    --disable-protocols \
    --disable-demuxers \
    --disable-decoders \
    --disable-encoders \
    --disable-muxers \
    --enable-libx264 \
    --enable-protocol=file \
    --enable-demuxer=image2 \
    --enable-demuxer=image2pipe \
    --enable-demuxer=mjpeg \
    --enable-demuxer=rawvideo \
    --enable-demuxer=yuv4mpegpipe \
    --enable-decoder=png \
    --enable-encoder=libx264 \
    --enable-encoder=png \
    --enable-encoder=mjpeg \
    --enable-encoder=gif \
    --enable-encoder=mpeg4 \
    --enable-encoder=mpeg2video \
    --enable-muxer=image2 \
    --enable-muxer=image2pipe \
    --enable-muxer=mjpeg \
    --enable-muxer=mp4 \
    --enable-muxer=mpeg2video \
    --enable-muxer=rawvideo \
    --enable-muxer=yuv4mpegpipe \
    --enable-muxer=gif \
  • Anomalie #4772 (Nouveau): "Supprimer" : demande de confirmation invisible

    6 May 2021, by jluc -

    Dans une grande liste de plugins installés (activés ou non activés), lorsque je demande à désinstaller l’un d’eux au moyen de l’option "Supprimer" de son bouton, il semble ne rien se passer.

    En effet, une demande de confirmation de la désinstallation a été insérée en haut de page au dessus de la liste, mais il n’y a pas eu de scroll et donc cette boîte est hors de l’écran. Et il n’y a aucun indice visible de sa présence.

    La demande de confirmation devrait être visible après le clic.
    Soit grâce à un scroll automatique,
    Soit plutôt que s’insérer en haut et requérir un scroll, elle pourrait s’afficher dans un popin sur place.