
Recherche avancée
Autres articles (50)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Publier sur MédiaSpip
13 juin 2013Puis-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 -
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 (...)
Sur d’autres sites (9969)
-
(PHP5) shell_exec("wine ffmpeg.exe") in ubuntu version 14
29 juillet 2017, par user235423423424How to start wine in php shell_exec("wine ffmpeg.exe") ; ?
(ubuntu version 14 server)
install
sudo apt-get install wine -y
php5 code :
$cmd = "wine ffmpeg.exe upload/image.jpg"
shell_exec($cmd);ffmpeg.exe location :
/var/www/html/wine is not starting ?
Linux version of FFmpeg ?, how to run PHP shell_exec() ?
Server domain is not on shared hosting
permissions on
www-data
could be problem ?command ffmpeg successfull in terminal !
there is a permission issue, just tested and command is correct.
either ffmpeg.exe or wine have incorrect permissions.Command (ffmpeg.exe)
chmod 755 ffmpeg.exe
chown www-data ffmpeg.exeCommand (/usr/bin/wine)
chmod 755 wine
chown www-data winesudo service apache2 restart
still not working, could be more ’wine’ files to apply permissions to.
I’m not able to output any error, and command to ffmpeg is correct from terminal the problem must be permissions -
smacker : Check that the data size is a multiple of a sample vector
15 novembre 2015, par Michael Niedermayersmacker : Check that the data size is a multiple of a sample vector
Fixes out of array access
Fixes : ce19e41f0ef1e52a23edc488faecdb58/asan_heap-oob_2504e97_4202_ffa0df1baed14022b9bfd4f8ac23d0cb.smkBug-Id : CVE-2015-8365
CC : libav-stable@libav.orgFound-by : Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit 4a9af07a49295e014b059c1ab624c40345af5892)
Signed-off-by : Diego Biurrun <diego@biurrun.de> -
ffmpeg - "Could not find the codec parameters" (Live Stream)
8 mai 2017, par Gagandeep SinghI am trying to record a live HTTP stream using the following command :
ffmpeg -analyzeduration 2147483647 -probesize 2147483647 -i "http://mumsite.cdnsrv.jio.com/jioplay.catchup.cdn.jio.com/recordings/H8_S480_H264_MP/2556/1493919000.mp4/init/LIVEPROGRAM_CHANNEL_2556_START_1493919000_END_1493922600?uid=guest_uid&recid=SCHEDULED-A00B00C00D00E00F-_-_-2556_48168092&shard=shard_a&sid=77179867662431494241905&i=2&nwk=WIFI&pk=1&CurrentNetworkType=WIFI&CurrentNetworkType=WIFI" -c copy -absf aac_adtstoasc testing.ts
Below is a screenshot of the ff-prompt console :
http://i64.tinypic.com/331d55w.jpg
It looks like the URL is correct but no data is being saved in the file and these warning messages are shown :
multiple fourcc not supported
Could not find codec parameters for stream 1 (Video : none (encv /
0x76636E65), none, 576x432) : unknown codecHow do I determine which codec would handle that stream or is the reason something else ?