
Recherche avancée
Autres articles (43)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)
Sur d’autres sites (6729)
-
Recording Video and Voice at the same time to .mp4 on raspbarry pi
18 juin 2014, par SunBae YimI tried for 3 months, But can’t resolved it.
on Raspberry Pi.I want to recording video and voice to mp4, And Realtime streaming(Mjpeg) no delay.
Of course, It has Pi Camera Module.
And I installed a soundcard as below.pi@raspberrypi ~ $ aplay -l
**** List of PLAYBACK Hardware Devices ****
card 0: sndrpiproto [snd_rpi_proto], device 0: WM8731 HiFi wm8731-hifi-0 []
Subdevices: 1/1
Subdevice #0: subdevice #0First Goal is :
Recording voice(aac or mp3) and video(h264) at the same time to .mp4.
h264 and aac are combined into mp4 container.
I failed make it using ffmpeg. too difficult.Sencond Goal is :
Realtime Streaming for MJPEG.
I receive stream using Safari, Chrome, FireFox, Explorer on Windows & Android.
And using IP CAM VIEWER of Android App.I tried various solution,
But most solutions are only video no voice.Third Goal is :
Above Functions are run at the same time on Raspberry Pi.
Maybe I will make Python and Shell Scripts files for run above solution at the same time.Please Help me !
Thanks,
SB YIM -
MP4 container parsing : What is 'Alias Data Handler' for ?
8 février 2023, par Michael IVI have an mp4 file which I am parsing with this demuxer lib. I stumbled upon a bug when trying to identify a track type. MP4 container keeps this info in
hdlr
box. In the docs and in the lib there are only two options 'vide
' or 'soun
',but in this case I am getting 'alis
'.
While debugging the lib to see how I get this value I noticed that the parser hits 'hdlr
' twice : first time setting 'vide
' for the only video track in the file, and second time overwriting with 'alis
'.
I have loaded the video into MP4 Explorer GUI app and here is what I see :



Indeed,there is second hdlr box there,which doesn't exist in other mp4 files I tried to parse. My questions are :


- 

- What is this token for ?
- When is it inserted into mp4 ?
- Can I just discard 'alis' when encountering one during the parsing ?








-
executing batch file when called from java project
28 décembre 2013, par Mostafa WasatSo I'm working on a java project, that at some point I have to execute a batch file (from within the code).
The batch file runs fine if I run it by double clicking in windows explorer,
and/or even if I write the command in the command prompt it runs ok.However, when i call the file from the java code, the command prompt launches and says that its not a recognized command, program, or batch file.
the patch file looks something like this :
ffmpeg -re -i C:/001.mp3 -c:a mp3 -ar 12000 -f mulaw -f rtp rtp://127.0.0.1:1234
and here's how I call it within the java code :
Runtime.getRuntime().exec("cmd /c start c:\\encode.bat");
I might add that the command prompt when run by java it runs as administrator and I have included the ffmpeg path to be run by any user anyway.
Excuse me if I have missed any important details and would be happy to provide them if anyone needs further details to answer my dilemma.
why might this be ?
Edit :
i have tried the same code on another pc and it works fine, can someone please explain to me why the command doesnt get recognized when the command prompt gets run through java