
Recherche avancée
Autres articles (32)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Submit enhancements and plugins
13 avril 2011If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.
Sur d’autres sites (5370)
-
ffserver : check for codec match using AVStream.codecpar
8 novembre 2016, par Reynaldo H. Verdejo Pinochet -
Is ffmpeg a good upscaler from SD to HD ? [closed]
15 août 2014, par user3928079Is ffmpeg a good upscaler to convert SD videos to HD ?
I use the AVANTI GUI. I installed it and put the ffmpeg and ffplay exe into the folder ffmpeg in the program folder. What I know is that you can only preserve the detail when you upscale from SD to HD. You don’t really gain any additional information. TV companies like Samsung, Sony, LG, Panasonic, Sharp, and others refuse to think so and push the boundaries of upscaling so that additional information can be added when the image is upscaled from SD to HD and HD to 4K and so on and so forth. I’ve run a test through the AVANTI ffmpeg GUI.
Codec : XVID to H.264
Bitrate : 1640 kbps to 6000 kbps
Resolution : 640x480 to 1440x1080
Format : AVI to M4V
Audio Codec : AC3 to AAC
Audio Bitrate : 192 kbps
Audio Frequency : 48000 Hz
Upscale method : SplineWill this upscale method work in any way with converting SD video to HD video. There’s a lot of SD content out that haven’t made the transition to, or probably never will be, HD.
-
How can I stream then play YUV format with/without VLC/FFMPEG ?
13 janvier 2023, par orfruitI'm able to play a local YUV file through VLC (as expected)


.\vlc.exe --demux rawvideo --rawvid-fps 25 --rawvid-width 480 --rawvid-height 360 --rawvid-chroma I420 out.yuv



Also FFPLAY is playing well


.\ffplay.exe -f rawvideo -pixel_format yuv420p -video_size 480x360 out.yuv



Conversion to YUV was done with FFMPEG


.\ffmpeg.exe -i "video.mp4" -c:v rawvideo -pixel_format yuv420p out.yuv



However, I'm not able o stream it and play'it over local network.
I know, it sounds crazy :) but I plan to use VLC as a monitor/debugger for some YUV data.


The original MP4 file is streamed/played fine with VLC (test on the same computer)


.\vlc.exe "video.mp4" --sout="#std{access=http, mux=ts, dst=:55555/}"
.\vlc.exe http://192.168.0.174:55555/



So the big question !
How can I stream the YUV format and VLC recognise an play it as well ?


All that I tried with VLC is not playable.


Thanks for any hints !