
Recherche avancée
Médias (91)
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Echoplex
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Discipline
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Letting You
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (41)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...)
Sur d’autres sites (7613)
-
Only trim video without encoding laravel ffmpeg
1er mai 2021, par gyd128I 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');



-
FLV Streaming on iPhone with ffmpeg
11 février 2014, par SylterGood 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...
-
Select subtitle stream in ffmpeg in order to take screenshot
7 octobre 2020, par Snake EyesI 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) ?