
Recherche avancée
Autres articles (29)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...) -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...)
Sur d’autres sites (5470)
-
Touch device (iphone|ipod|ipad|android) event improvements. YUI 3.8 upgrade.
26 décembre 2012, par scottschillerm demo/christmas-lights/christmaslights.js m demo/christmas-lights/index.html Touch device (iphone|ipod|ipad|android) event improvements. YUI 3.8 upgrade.
-
cakephp FFMPEG Library to convert mov file into mp4 for iphone to android video issue
9 février 2016, par TarunnI am on
cakephp 2.3
and with my API, the video recorded from iPhone is not playing well in some android devices. So after wasting 2 week and with the help of community the solution was to convert thismov
intomp4
on server, ffmpeg lib was suggested.I had installed
ffmpeg
lib, I am looking for any cakephp 2.3.* version package which works/converts withffmpeg
?The other way I have is to use
php exec
and convert the video without php library.Any suggestion/feedback welcomed.
-
Cannot play DAV to MP4 converted H.265 video file with hvc1 tag in iPhone
21 août 2023, par Venkata SubbaraoI have converted H.265 video file in dav format from Dahua camera using following commands. Both of the generated mp4 video files are NOT playable in iPhone default player. However, the generated video files are playable in VLC player.


ffmpeg -y -i hevc.dav -c:v copy -tag:v hvc1 hevc.mp4
ffmpeg -y -i hevc.dav -tag:v hvc1 -c:v copy -f mp4 -movflags frag_keyframe+empty_moov hevc.mp4



Generated video file plays only if I re-encode the video using following command.


ffmpeg -y -i hevc.dav -c:v libx265 -tag:v hvc1 hevc.mp4



Re-encoding is time consuming. So, please let me know, if I am missing any flags in the above commands.