
Recherche avancée
Médias (1)
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (65)
-
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 (...) -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...) -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users.
Sur d’autres sites (4033)
-
Use ffprobe on Sagemaker Jupyter Notebook : /bin/sh : 1 : ffprobe : not found
2 juillet 2020, par GuuI need to use
FFprobe
to get the metadata(the orientation of the video) of videos on SageMaker Studio. Even I installedFFmpeg
andFFprobe
viapip install
, the notebook doesn't recognize the packages.

/bin/sh: 1: ffprobe: not found


It is tricky since I've already tried to install them on System terminal and it worked, but it still doesn't work on the Image terminal or Jupyter Notebook.


Is that because of the dependencies ? I've checked other ways to get the metadata but couldn't find one working. I could get simple metadata via
hachoir-metadata
but it didn't give the orientation. Any advice is welcomed. Thanks.

-
Video call between eyebeam and baresip SIP clients
7 décembre 2012, par user1490337I am trying to achieve video call on 2 SIP clients
- Baresip
- Eyebeam
Till now I have succeeded in getting audio stream both ways but the video stream is one way i.e iam getting the stream at the baresip terminal but I cannot see video at the EYEBEAM terminal. I can't understand where I am going wrong.
The eyebeam is sending STAP-a and Fu-a packets to eyebeam as I checked it through wireshark. But baresip is not sending any STAP-a and Fu-a packets to eyebeam hence no video.. Both the clients support H.264.
Pointers in the right direction are welcome.
-
How to queue ffmpeg FIFO
29 avril 2013, par Francoiswe build a service similar to youtube. Also converting runs fine with ffmpeg using this script from another post here :
#!/bin/bash
pipe=/tmp/ffmpeg
trap "rm -f $pipe" EXIT
# creating the FIFO
[[ -p $pipe ]] || mkfifo $pipe
while true; do
# can't just use "while read line" if we
# want this script to continue running.
read line < $pipe
# now implementing a bit of security,
# feel free to improve it.
# we ensure that the command is a ffmpeg one.
[[ $line =~ ^ffmpeg ]] && bash <<< "$line"
doneThis works pretty good when i send one by one to the named pipe. When i send more than one at same time the second one queues the terminal to the point the first one finished. if a try more than 2 the third one will not be transcoded.
So i tried to workaround with background sending to get the terminal free (just drop the echo command and close the ssh connection) but this doesn't work, then i played around with screen -X but also no luck. Maybe someone has a good idea to deal this.
What i wanna do is : Every uploaded video which is needed to transcode will send a echo to the named pipe. FIFO should match but not blocking the terminal. So i think i need something to really queue ffmpeg input.
kindest regards
Francois