Recherche avancée

Médias (0)

Mot : - Tags -/optimisation

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

Autres articles (56)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (3258)

  • Play the last minute of an mp3 file in Linux [closed]

    29 mai 2021, par Jörg

    I have got a number of audiobooks with play times beyond 30h. I noticed that a handful are corrupted towards the end. I have been trying to find ways to play only the last couple of minutes. ffplay -ss <seconds></seconds> doesn't seem to be able to do it since the files are too big.

    &#xA;

    I'm able to jump ahead to position 50000 but any higher value, such as 98000, and that ffplay gets stuck.

    &#xA;

    ffplay -ss 50000  bigfoo.mp3

    &#xA;

    Does anyone know a fix or an terminal based alternative ? I also had a look into Python but didn't find any relevant packages that can start playing in the middle of an audio file.

    &#xA;

  • Generate manifest (.mpd) file from ffmpeg for mp4 (H.264) videos

    7 juin 2022, par Harsh Parwal

    ffmpeg -f webm_dash_manifest -i input_video_160x90_250k.webm -f webm_dash_manifest -i input_video_320x180_500k.webm -f webm_dash_manifest -i input_video_640x360_750k.webm -f webm_dash_manifest -i input_video_1280x720_1500k.webm -f webm_dash_manifest -i input_audio_128k.webm -c copy -map 0 -map 1 -map 2 -map 3 -map 4 -f webm_dash_manifest -adaptation_sets "id=0,streams=0,1,2,3 id=1,streams=4" my_video_manifest_webm.mpd

    &#xA;

    This is the command used for generating a manifest file for DASH streaming of various bitrates of the mentioned webm video files. "webm_dash_manifest" is the argument used in this command. Is there some alternative for H.264 too ?

    &#xA;

  • Record specific window using ffmpeg

    5 décembre 2022, par Ahmed A. Mansour

    I have been trying the below code (which I found on other similiar problem on this site here : How to record a specific window using ffmpeg But it gives me black video and the same video is not playable by windows media player (it works on vlc but with black video..)

    &#xA;

    ffmpeg -f gdigrab -framerate 30 -i title="german.avi - VLC media player" -b:v 3M  germ.flv&#xA;

    &#xA;

    Video example :&#xA;Weird thumbnail by WMP which shows it can't play it&#xA;Black screen as described, but it opens with black video in VLC

    &#xA;

    I tried the other suggestions, but this one sometimes (less than 40% of the time) works.&#xA;I also noticed it doesn't show the window main title, which is a bit confusing, as it causes the mouse cursor to appear a little down where it should be.

    &#xA;