
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (16)
-
HTML5 audio and video support
13 avril 2011, parMediaSPIP 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 (...) -
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 bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...)
Sur d’autres sites (4166)
-
When i build ffmpeg with ubuntu this warning occurs "Function is deprecated [-Wdeprecated-declarations]"
31 mars 2020, par Pradeep SimbaI download the latest version of ffmpeg.
when I build with my ndk toolchain it generate .so and include folder.
But , this warning occurs ;
How can I solve this ?
-
Convert HEVC/H.265 video to a more widely supported format using fluent-ffmpeg in Node.js
21 juin 2021, par Daniel LoitertonMy app allows users to upload videos from their phones. However, the latest iPhone default format (HEVC / H.265) does not seem to be supported by Chrome and other browsers, so some users cannot stream the videos.


I'm already using fluent-ffmpeg on my Node.js backend to read metadata and extract thumbnails from the uploaded videos. How would I go about converting HEVC videos to something else ? What format/options would be appropriate for streaming to browsers ? Ideally I'd like to keep files fairly small, and I'm willing to sacrifice some quality to that end.


-
Converting mp3 and jpg to mp4 with h.264 and aac
18 octobre 2020, par mead650I have over 500 sermons in audio format (.mp3). I want to use FFMPEG because its free and I like the software.


I am trying to combine the .mp3s with a jpg (picture of my church) to create .mp4 for Youtube.


I know that YouTube usually does well with Audio format:aac or mp3 and Video format:AVC with h.264.


here is the code :


FOR %%a IN (audio/*.mp3) DO (
echo Converting: %%a
ffmpeg -i image/img.jpg -i "%%a" -c:v copy -c:a -vcodec libx264 -acodec aac -strict -2 videos/%%~na.mp4
)
echo Finished



I have the FFMPEG with a do loop, but I am getting this error, [NULL @ 000002574bea6b40] Unable to find a suitable output format for 'libx264'
libx264 : Invalid argument


I have the latest version.
Anytakers ?