
Recherche avancée
Autres articles (18)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 is the first MediaSPIP stable release.
Its official release date is June 21, 2013 and is announced here.
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)
Sur d’autres sites (5345)
-
FFMPEG via PHP - no thumbnail or log output generated
10 octobre 2018, par UtkanosI’m trying to get my head around command line syntax in the form of FFMPEG via PHP.
I’ve successfully installed it and I can use it fine, until I try to :
- run background tasks
- generate output to a log
This code attempts to create a thumbnail from a video. And it does, if I make it synchrnous, i.e. remove everything from onwards
code>....
shell_exec($i = 'ffmpeg -y -i '.$fp.' -ss '.$secs.' -vframes 1 '.$dirs_path.'/thumb.png null >/dev/null 2>/ffmpeg.txt &');
I’ve derived the background part of this command from this page on the official FFMPEG site.
(
$secs
is an integer denoting a seconds point within the video duration, and$fp
is the save path of the video. Both are valid.)So the thumb doesn’t get generated, and there’s no ffmpeg.txt created, either in the place where the script runs, or in the server root or anything. I may be looking in the wrong place... I’m unsure what all this is relative to.
Any help appreciated.
-
Transcoding ERROR : jellyfin-ffmpeg/lib/dri/iHD_drv_video.so init failed
24 mars 2023, par Souleimen BENTRAIFAHere is my problem, I switched from Jellyfin Win10 to Jellyfin via OMV6 Portainers (official images).
I have I7-2600S (VAAPI)


Except that the transcoding doesn't work anymore, in the Jellyfin logs I have the following error message :


[h264_vaapi @ 0x557ec1743400] No usable encoding entrypoint found for profile VAProfileH264High (7).
Error initializing output stream 0:0 -- Error while opening encoder for output stream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or height



In the attachment you will find information after the "vainfo" we have the following error


screenshot vainfo command here


libva error: /usr/lib/jellyfin-ffmpeg/lib/dri/iHD_drv_video.so init failed



If anyone has a clue, let me know


NOTE : In Windows 10 i have no problem to transcoding in any format


-
writing custom codecs for android using FFmpeg
22 mai 2014, par Aditya Kumar PraharajI am doing a video compression project for Android and I am thinking of implementing it by designing a new video codec (by scratch , I have designed the algorithm) . I have already read the basics of video compression , related relevant algorithms and codec basics . I have also found that FFmpeg may serve as a quite good solution on Android.
Now my questions come :
-
How to write a new video codec as in FFmpeg ? I am still a beginner at writing codecs , but
how do I start ? I have a rough idea that that you have to write at least a demuxer first and then the specific encoder and decoder etc . (Asking for references here please.) -
Since my codec deosn’t simply adjust video properties like fps , resolution , bit-rate etc.
Is reading the MediaCodec API and MediaPlayer API in official Android SDK enough for writing new codecs ? (Because last time I saw it had only support for MPEG-4 SP , H.263 and H.264 . I was unable to find if you could directly write your own classes and functions).
Thanks .
-