
Recherche avancée
Médias (39)
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (63)
-
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. -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
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 (6641)
-
How to play a .h264 file in iOS (or) How to convert .h264 file in to .mp4 file programmatically
21 avril 2015, par KrishI have a .h264 file in my project bundle and i have to play it. I searched for long time and everybody suggested FFMPEG but there is no proper guidance. In another way at least suggest me how to convert this .h264 file in to .mp4 file programmatically by that way at least i can depend on MPMoviePlayer. Please suggest me.
Thank you. -
How would I delete a file after a remux has been completed using a batch automation file ? [closed]
10 août 2024, par Voidmaster01Ive already automated the process of remuxing to a new file even with new names and all, but how would i go about deleting the original file after the process is completed. currently if i were to run the batch file it would supposedly delete the original file as it was starting the remux, also the remux can take anywhere from a couple of seconds to a couple of hours due to file sizes.


@Echo off
set /p newname=Enter new file name:
ffmpeg -i "V:\Before Remux\01.mkv" -c copy -map 0 "M:\1 REMUX HUB\%newname%.mp4"
Del "V:\Before Remux\01.mkv"
pause



Ive tried using the Del function to delete the file automatically but it deleted the file prematurely causing the file to not be completely processed.


-
PHPVideoToolkit getFFmpegInfo() returns an array with empty codecs
11 novembre 2012, par user16948I have install ffmpeg and
ffmpeg -codecs
returns a huge list of codecs. But output of the following code :$ffmpeg = $toolkit->getFFmpegInfo(FALSE);
print_r($ffmpeg);is this :
...
[codecs] => Array
(
[video] => Array
(
)
[audio] => Array
(
)
[subtitle] => Array
(
)
)It doesn't find any codec. Any suggestion ? (I have installed ffmpeg from source)