Recherche avancée

Médias (91)

Autres articles (44)

  • Les notifications de la ferme

    1er décembre 2010, par

    Afin d’assurer une gestion correcte de la ferme, il est nécessaire de notifier plusieurs choses lors d’actions spécifiques à la fois à l’utilisateur mais également à l’ensemble des administrateurs de la ferme.
    Les notifications de changement de statut
    Lors d’un changement de statut d’une instance, l’ensemble des administrateurs de la ferme doivent être notifiés de cette modification ainsi que l’utilisateur administrateur de l’instance.
    À la demande d’un canal
    Passage au statut "publie"
    Passage au (...)

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

Sur d’autres sites (5173)

  • Select subtitle stream in ffmpeg in order to take screenshot

    7 octobre 2020, par Snake Eyes

    I want to capture screen from mkv which has embedded subtitles which media info looks like :

    


    General
Complete name                            : MyVideo.mkv
Format                                   : Matroska
Format version                           : Version 4
File size                                : 2.25 GiB
Duration                                 : 1 h 47 min
Overall bit rate                         : 2 993 kb/s
Writing application                      : mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit
Writing library                          : libebml v1.3.5 + libmatroska v1.4.8

Video
ID                                       : 1
Format                                   : AVC
Format/Info                              : Advanced Video Codec
Format profile                           : High@L4
Format settings                          : CABAC / 4 Ref Frames
Format settings, CABAC                   : Yes
Format settings, Reference frames        : 4 frames
Codec ID                                 : V_MPEG4/ISO/AVC
Duration                                 : 1 h 47 min
Bit rate                                 : 2 735 kb/s
Width                                    : 1 920 pixels
Height                                   : 1 080 pixels
Display aspect ratio                     : 16:9
Frame rate mode                          : Constant
Frame rate                               : 23.976 (24000/1001) FPS
Color space                              : YUV
Chroma subsampling                       : 4:2:0
Bit depth                                : 8 bits
Scan type                                : Progressive
Bits/(Pixel*Frame)                       : 0.055
Stream size                              : 2.05 GiB (91%)
Default                                  : Yes
Forced                                   : No

Audio
ID                                       : 2
Format                                   : E-AC-3
Format/Info                              : Enhanced AC-3
Commercial name                          : Dolby Digital Plus
Codec ID                                 : A_EAC3
Duration                                 : 1 h 47 min
Bit rate mode                            : Constant
Bit rate                                 : 256 kb/s
Channel(s)                               : 6 channels
Channel layout                           : L R C LFE Ls Rs
Sampling rate                            : 48.0 kHz
Frame rate                               : 31.250 FPS (1536 SPF)
Compression mode                         : Lossy
Stream size                              : 197 MiB (9%)
Language                                 : English
Service kind                             : Complete Main
Default                                  : Yes
Forced                                   : No

Text #1
ID                                       : 3
Format                                   : UTF-8
Codec ID                                 : S_TEXT/UTF8
Codec ID/Info                            : UTF-8 Plain Text
Duration                                 : 1 h 46 min
Bit rate                                 : 53 b/s
Count of elements                        : 1626
Stream size                              : 42.1 KiB (0%)
Title                                    : SDH
Language                                 : English
Default                                  : No
Forced                                   : No

Text #2
ID                                       : 4
Format                                   : UTF-8
Codec ID                                 : S_TEXT/UTF8
Codec ID/Info                            : UTF-8 Plain Text
Duration                                 : 1 h 46 min
Bit rate                                 : 53 b/s
Count of elements                        : 1595
Stream size                              : 41.8 KiB (0%)
Language                                 : Spanish
Default                                  : No
Forced                                   : No

Menu
01:44:57.011                             : en:Credits


    


    I'm trying to capture with Spanish subtitle stream in the screen

    


    I tried :

    


    ffmpeg -ss 14 -copyts -i C:\MyVideo.mkv -map 0:0 -map 0:3 -codec copy -codec:3 mov_text -vframes 1 C:\test.png


    


    but is not working, means the PNG is not PNG actually. I don't know the format is output.

    


    How to capture screen with spanish subtitle (position 4 in mediainfo) ?

    


  • FLV Streaming on iPhone with ffmpeg

    11 février 2014, par Sylter

    Good Morning,
    I am an iOS/Mac Developer.

    I am developing an application that grab flv link from a website : now I want to play this flv file in streaming.

    I find in AppStore BUZZPlayer, an application that can play flv video streaming : http://itunes.apple.com/it/app/buzz-player/id389744738?mt=8

    Searching on Google I find out that exists ffmpeg for iPhone, so, my question is how can I stream a FLV Video with ffmpeg on iPhone ?

    A sample code is very appreciated !

    Thank You.

    P.S. Sorry for my poor English...

  • Only trim video without encoding laravel ffmpeg

    1er mai 2021, par gyd128

    I would like to ask if the possibility of using ffmpeg laravel in such a way that when cutting a movie it does not convert it to mp4 a second time ? I'm sending the code as it looks at the moment. There is an option on github to use CopyFormat, use ProtoneMedia \ LaravelFFMpeg \ FFMpeg \ CopyFormat; unfortunately it doesn't work on my example. Maybe someone will be that good and guide me to the answer. Sorry for my English

    


      $ffmpeg = \FFMpeg\FFMpeg::create();
        $video = $ffmpeg->open('../../filmy/'.$path);
        $video->filters()->clip(\FFMpeg\Coordinate\TimeCode::fromSeconds($start), \FFMpeg\Coordinate\TimeCode::fromSeconds($end));
        $video->save(new \FFMpeg\Format\Video\X264('libmp3lame'), '../../filmy/conversion/s.mp4');